*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #f5a623;
  --orange-hover: #e09415;
  --dark-green: #2d3e2e;
  --dark-orange: #bf6e2b;
  --dark-green2: #243324;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text: #222222;
  --text-mid: #555555;
  --text-light: #777777;
  --border: #e8e2d8;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}
/* ── NAVBAR ── */
#navbar {
  z-index: 200;
  transition: background .3s, box-shadow .3s;
}

#navbar .navbar-brand img {
  display: block;
  height: auto;
}

#navbar .navbar-nav .nav-link {
  color: var(--text);
  font-size: .92rem;
  font-weight: 500;
}

#navbar .navbar-nav .nav-link:hover {
  color: var(--orange);
}

#navbar .btn.btn-warning {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  border-radius: 999px;
  padding: .72rem 1.4rem;
  font-size: .82rem;
  font-weight: 600;
}

#navbar .btn.btn-warning:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
}

.logo-badge {
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo-badge .logo-top {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #2a7a3a;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-badge .logo-bottom {
  font-size: .58rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}




#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  width: 100%;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
}
#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-bottom: .6rem;
}
.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0rem;
  opacity: 1;
      color: rgb(255, 255, 255);
    font-size: 1.4rem;
    padding-bottom: 0.9rem;
}
#hero a.btn {
          background: linear-gradient(to right, rgb(255, 170, 0), rgb(255, 170, 0));
      color: rgb(255, 255, 255);
    cursor: pointer;
    position: relative;
    display: inline-block;
    z-index: 2;
    text-decoration: none;
    padding: 12px 45px;
    transition: 0.15s;
    overflow: hidden;
    border-radius: 100px;
}
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: .72rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Inter', sans-serif;
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }

/* ── ABOUT ── */

.about-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .3rem;
  color: var(--text);
}
.about-sub {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.4rem;
}
.about-text p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* ── TOURS ── */
#best {
  padding: 6rem 2rem;
  background: #fff;
}
.tours-heading {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.tours-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: .35rem;
}
.tours-heading .sub {
  font-size: 1rem;
  color: var(--dark-orange);
  font-weight: 500;
  letter-spacing: .5px;
}

.tcard {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
  border-radius: 2.25rem;
  /* padding: 2rem; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.tcard-img {
  width: 100%;
  height: 340px;
  border-radius: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-bottom: .75rem;
}

.tcard-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  padding: 0 18px 18px 18px;
}
.tcard-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #caa889;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.pin {
  font-size: 2rem;
  line-height: 1;
  color: #2e2e2e;
  flex-shrink: 0;
}
.tcard-name {
  font-size: 1.35rem;
  line-height: 1.3;
}
.tcard-time {
  margin: 0;
  color: #caa889;
  font-size: 1rem;
  font-weight: 700;
}
.tcard-desc {
  margin: 0;
  color: #caa889;
  font-size: 1rem;
  flex: 1;
}
.tcard-footer {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tcard .btn-orange {
  color: #fff;
    text-decoration: none;
    background: linear-gradient(to right, #ffaa00, #ffaa00);
    padding: 12px 1.8rem;
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s linear;
    margin-top: .15rem;
}
.tcard-price {
  color: #2f2f2f;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ── GUIDES ── */
#guides {
  background: var(--white);
  /* padding: 5rem 2rem; */
  /* border-top: 1px solid var(--border); */
  padding-bottom: 80px;
}

.guides-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: .8rem;
  line-height: 1.3;
}
.guides-sub { font-size: .75rem; font-weight: 600; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.guides-text p { font-size: .88rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }

/* ── ADVENTURES ── */
#adventures {
  background: var(--dark-orange);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#adventures::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../img/hero2.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
#adventures h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}
#adventures p { font-size: .88rem; color: var(--white); font-weight: 400; margin-bottom: 0; }

/* ── FOOTER ── */
#ourfooter {
  background: var(--dark-green2);
  color: rgba(255,255,255,.65);
  padding: 3.5rem 2rem 0;
}
.footer-logo-wrap { margin-bottom: 1rem; display: inline-flex; }
.footer-logo-wrap .logo-badge .logo-top { color: #2a7a3a; }
.footer-brand p { font-size: .8rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 1.2rem; }
.social-row { display: flex; gap: .8rem; }
.social-row a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none; font-size: .85rem;
  transition: all .2s;
}
.social-row a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 { color: var(--white); font-size: .82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { padding-left:0; list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .8rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col p { font-size: .8rem; line-height: 1.75; color: rgba(255,255,255,.55); }
.footer-col p a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-col p a:hover { color: var(--orange); }

.footer-badges {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.badge-circle {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .52rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.35;
  padding: 6px;
}
.turismo-badge {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  padding: .55rem 1.1rem;
}
.t-flag {
  width: 28px; height: 18px;
  background: linear-gradient(to right, #006600 40%, #ff0000 40%);
  border-radius: 2px; flex-shrink: 0;
}
.turismo-badge span { font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.65); letter-spacing: 1px; text-transform: uppercase; line-height: 1.3; }

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.2rem 0 1.4rem;
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }

.footer-bottom a:hover { color: var(--orange); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 400;
}

.cookie-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(36, 51, 36, 0.96);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
}

.cookie-inner a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.cookie-inner a:hover {
  color: var(--orange-hover);
}

.btn-accept {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: .85rem 1.4rem;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.btn-accept:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* ── FLOATING ── */
.floating-wa {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 300;
  width: 46px; height: 46px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  text-decoration: none;
  transition: transform .15s;
}
.floating-wa:hover { transform: scale(1.08); }
.floating-wa svg { width: 22px; height: 22px; fill: white; }

.floating-book {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: .72rem 1.3rem; border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: background .2s, transform .15s;
  font-family: 'Inter', sans-serif;
}
.floating-book:hover { background: var(--orange-hover); transform: translateY(-2px); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .tcard {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .tcard-img {
    height: 260px;
    border-radius: 1.25rem;
  }

  .tcard-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .tcard .btn-orange {
    width: 100%;
    min-width: 0;
  }

  .tcard-price {
    text-align: right;
  }
}
@media (max-width: 560px) {
}
#navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-logo img {
  display: block;
}

/* hamburger */
.menu-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f5a623 0%, #e09415 100%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  transform: scale(1.02);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-menu a:hover {
  color: var(--white);
  opacity: .85;
  transform: translateY(-2px);
}

.mobile-menu .btn-orange {
  margin-top: .75rem;
  background: var(--white);
  color: var(--orange);
  min-width: 220px;
  text-align: center;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 1rem 1.6rem;
}

.mobile-menu .btn-orange:hover {
  background: #fff7ec;
  color: var(--orange-hover);
  transform: translateY(-2px);
}

.mobile-menu .lang-row {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

.mobile-menu .lang-row button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.mobile-menu .lang-row button:hover,
.mobile-menu .lang-row button.active {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}

.menu-close:hover {
  background: rgba(255,255,255,.22);
  transform: rotate(90deg);
}


@media (max-width: 768px) {
  .mobile-menu a {
    font-size: 2rem;
  }

  .mobile-menu .btn-orange {
    min-width: 200px;
    font-size: .95rem;
  }

  .menu-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.9rem;
  }

  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .btn-accept {
    width: 100%;
  }
}
#wildland, #best, #adventures {
  padding: 80px 0;
}
#wildland {
  background: #ebddd8;
}