/* Navigation Styles for Salt + Lime */

/* ===== HEADER & NAVIGATION CONTAINER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

header.shrinkable-header {
    transition: all 0.3s ease;
}

header.dropdown-active {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-container {
    transition: all 0.3s ease;
    min-height: 180px;
    max-height: 180px;
    height: 180px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

header.shrunk .nav-container {
    min-height: 100px;
    max-height: 100px;
    height: 100px;
}

/* ===== LOGO SECTION ===== */
.logo-section {
    position: absolute;
    left: auto;
    transform: none;
}

.logo-section img {
    transition: all 0.3s ease;
    height: 100px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

header.shrunk .logo-section img {
    height: 70px;
}

/* ===== NAVIGATION LINKS ===== */
.neon-link {
    color: white !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
    font-size: 1.0rem !important;
    font-weight: 500 !important;
    transition: font-size 0.3s ease;
}

.neon-link:hover {
    color: #87dc0b;
    text-shadow: 0 0 15px rgba(135, 220, 11, 0.8);
}

header.shrunk .neon-link {
    font-size: 0.85rem !important;
}

.neon-nav {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-buttons {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .hero-btn {
    background: #331A3D;
    color: white;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    border: 2px solid #FF00FF;
    border-radius: 5px;
    font-family: 'Vast Shadow', serif;
    font-weight: 500;
    font-size: 0.8rem;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-buttons .hero-btn:hover {
    background: #4A2B5A;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

header.shrunk .nav-buttons .hero-btn {
    padding: 0.15rem 0.6rem;
    font-size: 0.7rem;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 40rem;
    background-color: #101010;
    color: #000000;
    border: solid 2px #87dc0b;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    z-index: 1001;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: bold;
    text-transform: unset;
    letter-spacing: .025em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: unset;
    letter-spacing: .025em;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dropdown-item:hover {
    color: #ffffff;
    background-color: #87dc0b;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 5px 10px;
}



/* ===== HAMBURGER MENU ===== */
.hamburger-menu {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    width: 30px;
    height: 30px;
    padding: 0;
}

.hamburger-icon {
    position: relative;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-icon::before,
.hamburger-icon::after,
.hamburger-icon {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

.hamburger-menu.active .hamburger-icon {
    background: transparent;
}

.hamburger-menu.active .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger-menu.active .hamburger-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== HAMBURGER DROPDOWN PANEL ===== */
.nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: transparent;
    padding: 2rem;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    box-shadow: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    will-change: backdrop-filter, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    isolation: isolate;
    pointer-events: none;
}

.nav-dropdown-panel.active {
    display: flex;
    pointer-events: auto;
}

header.shrunk .nav-dropdown-panel {
    top: 100px;
}

.nav-dropdown-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-dropdown-panel ul li {
    margin: 1rem 0;
}

.nav-dropdown-panel ul li a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-family: 'Vast Shadow', serif;
    transition: color 0.3s ease;
}

.nav-dropdown-panel ul li a:hover {
    color: #87dc0b;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    /* Hide navigation elements on smaller screens */
    .nav-left, .nav-right {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    /* Show sticky bottom buttons */
    .hero-buttons {
        display: flex !important;
        position: fixed;
        bottom: 20px;
        left: 20px;
        flex-direction: column;
        gap: 1rem;
        z-index: 1000;
    }
    
    .hero-buttons .hero-btn {
        background: #331A3D;
        color: white;
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        border: 2px solid #FF00FF;
        border-radius: 5px;
        font-family: 'Vast Shadow', serif;
        font-weight: 500;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        font-size: 1rem;
        white-space: nowrap;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
        width: 200px;
        text-align: center;
    }
    
    .hero-buttons .hero-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    /* Sticky dropdown menu */
    .hero-buttons .sticky-dropdown {
        position: relative;
    }
    
    .hero-buttons .sticky-dropdown-menu {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        margin-bottom: 10px;
        background-color: #101010;
        border: solid 2px #87dc0b;
        border-radius: 1rem;
        padding: 15px;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 200px;
    }
    
    .hero-buttons .sticky-dropdown:hover .sticky-dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    
    .hero-buttons .sticky-dropdown-item {
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
        text-transform: unset;
        letter-spacing: .025em;
        transition: all 0.3s ease;
        font-size: 1rem;
        padding: 8px 12px;
        border-radius: 5px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    .hero-buttons .sticky-dropdown-item:hover {
        color: #ffffff;
        background-color: #87dc0b;
        transform: translateY(-2px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    
    .hero-buttons .sticky-dropdown-item img {
        height: 30px;
        width: auto;
        object-fit: contain;
    }
}

@media (min-width: 1201px) {
    .nav-buttons {
        display: flex;
    }
    
    .hero-buttons {
        display: none;
    }
} 