/* =======================
NAVIGATION
======================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:65px;
width:auto;
display:block;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
gap:20px;
position:relative;
}

.nav-actions{
display:flex;
align-items:center;
gap:14px;
margin-left:auto;
}

.menu-wrapper{
position:relative;
}

.menu-toggle{
width:46px;
height:46px;
border:none;
border-radius:10px;
background:#0f172a;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:5px;
cursor:pointer;
transition:.3s;
}

.menu-toggle:hover{
opacity:.9;
}

.menu-toggle span{
width:22px;
height:2px;
background:white;
border-radius:999px;
display:block;
transition:.3s;
}

.menu-toggle.open span:nth-child(1){
transform:translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2){
opacity:0;
}

.menu-toggle.open span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}

.dropdown-menu{
position:absolute;
top:calc(100% + 12px);
right:0;
background:white;
border:1px solid #e5e7eb;
box-shadow:0 15px 35px rgba(15,23,42,.15);
border-radius:14px;
min-width:240px;
padding:10px;
opacity:0;
visibility:hidden;
pointer-events:none;
transform:translateY(-8px);
transition:.3s;
z-index:1200;
}

.dropdown-menu.open{
opacity:1;
visibility:visible;
pointer-events:auto;
transform:translateY(0);
}

.dropdown-menu a{
display:block;
padding:12px 14px;
border-radius:10px;
color:#0f172a;
text-decoration:none;
font-weight:600;
}

.dropdown-menu a:hover{
background:#f8fafc;
color:#806515;
}


.dropdown-menu{
min-width:300px;
width:320px;
max-width:calc(100vw - 32px);
}

.dropdown-section{
width:100%;
}

.dropdown-parent{
width:100%;
background:transparent;
border:none;
padding:12px 14px;
border-radius:10px;
color:#0f172a;
font-family:inherit;
font-size:1rem;
font-weight:700;
line-height:1.4;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

.dropdown-parent:hover{
background:#f8fafc;
color:#806515;
}

.dropdown-parent-icon{
font-size:.9rem;
transition:.3s;
}

.dropdown-section.open .dropdown-parent-icon{
transform:rotate(180deg);
}

.dropdown-submenu{
display:none;
margin:4px 0 8px 10px;
padding:6px 0 6px 12px;
border-left:2px solid #c9a227;
}

.dropdown-section.open .dropdown-submenu{
display:block;
}

.dropdown-submenu a{
font-size:.92rem;
font-weight:600;
padding:9px 12px;
color:#475569;
}

.dropdown-submenu a:hover{
background:#f8fafc;
color:#806515;
}

.nav-btn{
background:#c9a227;
color:#0f172a;
padding:12px 22px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.nav-btn:hover{
opacity:.9;
transform:translateY(-2px);
}


.dropdown-menu{
max-height:calc(100vh - 120px);
overflow-y:auto;
}

.schedule-btn{
display:inline-block;
background:#0f172a;
color:white;
padding:15px 24px;
border-radius:10px;
text-decoration:none;
font-weight:700;
text-align:center;
}

.schedule-btn:hover{
opacity:.9;
}