/* ===== NAVBAR THEME ===== */
*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

:root{
  --green: #1f3a2e;
  --green-dark: #16291f;
  --text: #111827;
  --muted: rgba(17,24,39,.70);
  --border: rgba(17,24,39,.10);
  --bg: rgba(255,255,255,.92);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Wrapper */
.navbar-wrap{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

/* Layout */
.navbar{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative; /* important for mobile dropdown positioning */
}

/* Left logo area */
.logo{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  min-width: 260px;
}

.logo img{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  object-fit: contain;
}

.brand h1{
  font-size: 16px;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand p{
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

/* Links container (desktop) */
.nav-links{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

/* Reset list items (prevents weird spacing issues) */
.nav-links li{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Links */
.nav-links a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14.5px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover{
  color: var(--green);
  background: rgba(31,58,46,.06);
}

.nav-links a.active{
  color: var(--green);
  background: rgba(31,58,46,.10);
}

/* CTA (desktop + base) */
.cta-btn{
  text-decoration: none;
  background: var(--green);
  color: #fff !important;
  font-weight: 800;
  font-size: 14.5px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover{
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* mobile CTA wrapper is hidden on desktop */
.mobile-cta{ display: none; }

/* ===== NAV TOGGLE (no square + smooth transition) ===== */
.nav-toggle{
  display: none;            /* shown only on mobile */
  background: transparent;  /* removes square background */
  border: none;             /* removes square border */
  outline: none;
  box-shadow: none;
  padding: 6px;             /* click area */
  cursor: pointer;
  position: relative;
  width: 42px;
  height: 42px;
}

.nav-toggle:focus{ outline: none; }

.nav-toggle i{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--text);
  transition: opacity 220ms ease, transform 220ms ease;
}

/* default state */
#iconOpen{
  opacity: 1;
  transform: scale(1);
}
#iconClose{
  opacity: 0;
  transform: scale(0.9);
}

/* open state */
.nav-toggle.is-open #iconOpen{
  opacity: 0;
  transform: scale(0.9);
}
.nav-toggle.is-open #iconClose{
  opacity: 1;
  transform: scale(1);
}

/* =========================
   MOBILE DROPDOWN FIXES
   ========================= */
@media (max-width: 900px){

  /* Hide desktop CTA if you use a desktop class */
  .cta-btn--desktop{ display: none; }

  .nav-toggle{ display: inline-flex; }

  /* Dropdown container box */
  .nav-links{
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;

    display: none;               /* closed by default */
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    padding: 14px;
    margin: 0;

    background: rgba(255,255,255,.97);
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 18px;

    box-sizing: border-box;
  }

  .nav-links.open{
    display: flex;
  }

  /* Each list item fills the dropdown width */
  .nav-links li{
    width: 100%;
  }

  /* Each link is full-width and evenly spaced */
  .nav-links li a{
    width: 100%;
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    box-sizing: border-box;
  }

  /* Mobile CTA appears inside dropdown */
  .mobile-cta{
    display: block;
    width: 100%;
    margin-top: 6px;
  }

  .cta-btn--mobile{
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 14px 14px;
    border-radius: 14px;
    box-sizing: border-box;
    overflow: hidden;
  }
}




/* =========================
   CTA / RESERVE + FOOTER CSS
   ========================= */

/* CTA Band */
.cta-band{
  background: var(--green, #1f3a2e);
  padding: 58px 18px;
}

.cta-band_inner{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-band_title{
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.03em;
  font-weight: 900;
}

.cta-band_text{
  margin: 0 auto 20px;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  line-height: 1.7;
  font-weight: 600;
}

.cta-band_actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA band buttons */
.btn--gold{
  background: #C9A24D;
  color: #1b1b1b;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.btn--gold:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn--outline{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn--outline:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.55);
}

/* Footer */
.footer{
  background: #1F2937; /* deep slate */
  color: rgba(255,255,255,0.80);
  padding: 46px 18px 18px;
}

.footer_inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.footer_logo img{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: contain;
}

.footer_desc{
  margin: 14px 0 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
  font-weight: 600;
  max-width: 420px;
}

.footer_title{
  margin: 0 0 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 15px;
}

.footer_links,
.footer_contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer_links a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-weight: 700;
}

.footer_links a:hover{
  color: #fff;
}

.footer_highlight{
  color: #C9A24D !important;
}

.footer_contact li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

.footer_contact i{
  color: #C9A24D;
  width: 18px;
  text-align: center;
}

.footer_contact a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.footer_contact a:hover{
  color: #fff;
}

.footer_bottom{
  max-width: 1200px;
  margin: 34px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
  color: rgba(255,255,255,0.62);
}

.footer_whatsapp{
  color: #C9A24D;
  text-decoration: none;
  font-weight: 900;
}

.footer_whatsapp:hover{
  color: #ffd37a;
}

/* Responsive */
@media (max-width: 950px){
  .footer_inner{
    grid-template-columns: 1fr;
  }
  .footer_desc{
    max-width: 100%;
  }
}
