/* Sticky Navigation Styles */
.sticky-nav {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 155, 70, 0.3);
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-nav.visible {
    top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cinzel Decorative', serif;
    color: #f0d696;
    font-size: 1.5em;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f0d696;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #f0d696;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    padding: 20px;
    background: rgba(17, 17, 17, 0.98);
}

/* Desktop Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 280px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 155, 70, 0.3);
    border-radius: 5px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    color: #f5f5f5;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(192, 155, 70, 0.2);
    color: #f0d696;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Mobile Styles */
@media (max-width: 768px) {

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #f0d696;
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .mobile-nav {
        display: none;
        padding: 20px;
        background: rgba(17, 17, 17, 0.98);
    }
    

    .mobile-dropdown {
        width: 100%;
    }
    
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        cursor: pointer;
    }
    
    .mobile-dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .mobile-dropdown-toggle.active i {
        transform: rotate(180deg);
    }
    
    .mobile-dropdown-content {
        display: none;
        padding-left: 20px;
    }
    
    .mobile-dropdown-content.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-dropdown-content a {
        color: #f5f5f5;
        padding: 10px 0;
        display: block;
        text-decoration: none;
        border-bottom: 1px solid rgba(192, 155, 70, 0.1);
    }
    
    .mobile-dropdown-content a:hover {
        color: #f0d696;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
} 