/* Viajes Sureste - NAV REBUILD (desktop + mobile separate) */

/* Ensure header/nav layout is stable */
.vs-header .nav{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* ----- Desktop menu ----- */
.vs-nav-desktop{ display:block; }
.vs-nav-desktop__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:22px;
}
.vs-nav-link{
  display:inline-block;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.2px;
  padding:10px 6px;
  border-radius:10px;
  color: inherit;
  opacity:.9;
}
.vs-nav-link:hover{ opacity:1; }
.vs-nav-link.is-active{ opacity:1; }

/* Hide the old menu styles if any remain from cached CSS */
.nav-menu, .nav-toggle{ display:none !important; }

/* ----- Mobile toggle ----- */
.vs-nav-mobile-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding:10px;
}
body[data-theme="light"] .vs-nav-mobile-toggle{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}
.vs-nav-mobile-toggle span{
  display:block;
  height:2px;
  width:100%;
  margin:5px 0;
  background: currentColor;
  border-radius:999px;
  opacity:.9;
}

/* ----- Mobile drawer ----- */
.vs-nav-mobile{
  display:none;
}
.vs-nav-mobile.is-open{
  display:block;
}
.vs-nav-mobile__backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  border:0;
  padding:0;
  margin:0;
  z-index:9998;
}
.vs-nav-mobile__panel{
  position:fixed;
  top:0;
  right:0;
  width:min(86vw, 360px);
  height:100vh;
  background: rgba(14,18,28,.96);
  color: #fff;
  border-left:1px solid rgba(255,255,255,.10);
  z-index:9999;
  transform: translateX(0);
  display:flex;
  flex-direction:column;
}
body[data-theme="light"] .vs-nav-mobile__panel{
  background: rgba(255,255,255,.96);
  color:#0b1220;
  border-left-color: rgba(0,0,0,.08);
}
.vs-nav-mobile__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
body[data-theme="light"] .vs-nav-mobile__header{
  border-bottom-color: rgba(0,0,0,.08);
}
.vs-nav-mobile__title{ font-weight:800; letter-spacing:.2px; }
.vs-nav-mobile__close{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: inherit;
}
body[data-theme="light"] .vs-nav-mobile__close{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}
.vs-nav-mobile__list{
  list-style:none;
  margin:0;
  padding:10px 10px 24px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.vs-nav-mobile__link{
  display:block;
  padding:14px 14px;
  border-radius:14px;
  text-decoration:none;
  color: inherit;
  font-weight:700;
  opacity:.95;
}
.vs-nav-mobile__link:hover{ opacity:1; background: rgba(255,255,255,.06); }
body[data-theme="light"] .vs-nav-mobile__link:hover{ background: rgba(0,0,0,.05); }

/* lock body scroll when menu open */
body.vs-nav-locked{ overflow:hidden; }

/* Responsive switch */
@media (max-width: 920px){
  .vs-nav-desktop{ display:none; }
  .vs-nav-mobile-toggle{ display:inline-grid; place-items:center; }
}
