/* GLASS SOLID - Header Container */
.glass-solid {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(50px);
    border: 2px solid #ffffff;
    box-shadow: 0 60px 120px -20px rgba(15, 36, 34, 0.15);
}

/* ACCENT NUDGE */
.accent-nudge { 
    font-family: 'Petrona', serif; 
    font-style: italic; 
    display: inline-block; 
    transform: translateY(0.7px);
}

/* VERTICAL ANCHOR */
.vertical-anchor { 
    writing-mode: vertical-rl; 
    transform: rotate(180deg);
    letter-spacing: 0.2em;
    opacity: 0.3;
    color: #CBD5D2;
}

/* MEGA MENU - HIDE BY DEFAULT */
.mega-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) translateX(-50%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(50px);
    border: 2px solid #ffffff;
    box-shadow: 0 60px 120px -20px rgba(15, 36, 34, 0.15);
}

/* REVEAL ON HOVER */
.nav-pill:hover .mega-menu {
    position: absolute;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
    pointer-events: auto;
}

/* Navigation Indicator */
#nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    background: rgba(15, 36, 34, 0.04);
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 0;
}

.nav-pill {
    position: relative;
    z-index: 1;
}

/* Menu Items */
.menu-item {
    display: block;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-item:hover {
    background: rgba(205, 213, 210, 0.12);
    border-color: rgba(205, 213, 210, 0.3);
    transform: translateX(4px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Accordion */
.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-accordion.active .mobile-accordion-content {
    max-height: 500px;
    padding-top: 1rem;
}

.mobile-accordion-arrow {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-accordion.active .mobile-accordion-arrow {
    transform: rotate(180deg);
}

#search-results-dropdown {
    display: none;
}

#search-results-dropdown.active {
    display: block;
}

.animate-pulse-subtle {
    animation: pulse-subtle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
