/* Base Reset */
.main-nav ul, .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Navigation (Sticky) */
.main-nav {
    background: #913831; /* Primary Maroon */
    border-bottom: 3px solid #D4AF37; /* Soft Gold Accent */

    position: sticky;   
    top: 0;
    z-index: 9999;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

/* Shadow when stuck */
.main-nav.is-sticky {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Wrapper for centering */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;  
    padding: 0 15px;
}

/* Menu Items */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.menu li {
    position: relative;
}

.menu li a {
    display: block;
    padding: 15px 12px;
    color: #ffffff; /* White Text */
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

/* Hover State - Soft Gold */
.menu li a:hover {
    background: #D4AF37; /* Soft Gold Background */
    color: #800000;      /* Maroon Text on hover */
    border-radius: 5px;
}

/* Desktop Submenu */
.menu li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
    flex-direction: column;
    background: #600000; /* Slightly Darker Maroon for contrast */
    border-top: 2px solid #D4AF37; /* Gold Top Border */
    border-radius: 0 0 5px 5px;
    padding: 8px 0;
    z-index: 999;
}

.menu li:hover > ul.sub-menu {
    display: block;
}

.menu li ul.sub-menu li a {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Sub-submenus */
.menu li ul.sub-menu li ul.sub-menu {
    left: 100%;
    top: 0;
}

/* Hamburger Icon */
.nav-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 22px;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    height: 4px;
    width: 100%;
    background: #D4AF37; /* Gold Hamburger bars */
    border-radius: 4px;
}

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

    .nav-container {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #800000;
        border-top: 2px solid #D4AF37;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
    }

    .menu.active {
        display: flex;
    }

    .menu li a {
        padding: 14px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Faded Gold Border */
    }

    /* Mobile submenu */
    .menu li ul.sub-menu {
        display: none;
        position: static;
        margin-left: 0;
        background: #600000;
        border-top: none;
    }

    .menu li.open > ul.sub-menu {
        display: flex;
    }

    /* Arrow */
    .menu li.menu-item-has-children > a::after {
        content: " ▼";
        font-size: 10px;
        float: right;
        color: #D4AF37;
    }

    .nav-toggle {
        display: flex;
    }
}
