Spaces:
Sleeping
Sleeping
| .navbar { | |
| background: rgba(255, 255, 255, 0.9); | |
| backdrop-filter: blur(10px); | |
| padding: 1.2rem; | |
| color: var(--text-primary); | |
| box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); | |
| position: relative; | |
| z-index: 10; | |
| border-bottom: 1px solid rgba(0, 0, 0, 0.05); | |
| } | |
| .navbar-brand { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: flex; | |
| align-items: center; | |
| } | |
| .navbar-brand a { | |
| color: var(--text-primary); | |
| text-decoration: none; | |
| font-size: 1.8rem; | |
| font-weight: bold; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| transition: all 0.3s ease; | |
| background: linear-gradient(to right, var(--accent-primary), var(--accent-hover)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .navbar-brand a:hover { | |
| transform: translateY(-1px); | |
| } |