/* === SHARED NAVIGATION === */
.nav-sticky {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Logo Separator - Mobile */
.logo-separator {
    display: inline-block;
    height: 24px;
    width: 1px;
    background-color: #cbd5e1;
    margin: 0 8px;
}

/* Logo Separator - Desktop */
@media (min-width: 640px) {
    .logo-separator {
        margin: 0 16px;
        height: 28px;
    }
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 500px;
    opacity: 1;
}

/* Base Hero Overlay */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 27, 56, 0.9), #051b38);
}
