:root {
  --forest: #2c4a3b;
  --forest-dark: #1d3228;
  --wood: #8b5e34;
  --wood-dark: #6b4423;
  --cream: #f6f1e6;
  --cream-dark: #eee4cf;
  --gold: #c9a227;
  --ink: #2a2620;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
}

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

html { scrollbar-width: auto; scrollbar-color: var(--wood) var(--cream-dark); }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--wood); border-radius: 8px; border: 3px solid var(--cream-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--wood-dark); }

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(28, 37, 30, 0.85);
  backdrop-filter: blur(6px);
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { color: var(--cream); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; line-height: 1.25; }
.logo-sub { color: var(--gold); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--forest-dark); }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(201,162,39,.4); }
.btn-ghost { border: 1px solid rgba(255,255,255,.5); color: var(--cream); }
.btn-ghost-dark { border: 1px solid var(--forest); color: var(--forest); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { box-shadow: 0 8px 20px rgba(37,211,102,.4); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--forest-dark);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slideshow img.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,22,.35) 0%, rgba(20,28,22,.55) 60%, rgba(20,28,22,.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 70px;
  width: 100%;
}
.badge {
  display: inline-block;
  background: rgba(246,241,230,.15);
  border: 1px solid rgba(246,241,230,.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .03em;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  opacity: .92;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(20,28,22,.55);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  border-radius: 999px;
}

/* Intro */
.intro { padding: 70px 0 20px; }
.intro p { font-size: 1.15rem; max-width: 780px; margin: 0 auto; text-align: center; color: #4a453b; }
.intro p a { color: var(--wood-dark); text-decoration: underline; text-decoration-color: var(--gold); }

/* Features */
.features { padding: 60px 0; }
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; color: var(--forest-dark); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.feature-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--forest-dark); }
.feature-card p { color: #6a655a; font-size: .95rem; }

/* Gallery */
.gallery { padding: 60px 0; background: var(--cream-dark); }
.gallery h2 { text-align: center; font-size: 2rem; margin-bottom: 36px; color: var(--forest-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,14,11,.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* Videos */
.videos { padding: 60px 0; }
.videos h2 { text-align: center; font-size: 2rem; margin-bottom: 36px; color: var(--forest-dark); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.video-card { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.video-card h3 { margin-bottom: 12px; color: var(--forest-dark); }
.video-card video { width: 100%; border-radius: 8px; display: block; background: #000; }

/* Camping */
.camping { padding: 70px 0; background: var(--forest); color: var(--cream); }
.camping-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.camping h2 { color: var(--cream); font-size: 2rem; margin-bottom: 18px; }
.camping p { opacity: .92; margin-bottom: 16px; }
.camping blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 20px 0;
  font-style: italic;
  font-size: 1.05rem;
}
.quote-source { display: block; margin-top: 8px; font-style: normal; font-size: .85rem; opacity: .7; }
.camping-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Contact */
.contact { padding: 80px 0; text-align: center; }
.contact h2 { font-size: 2.2rem; color: var(--forest-dark); margin-bottom: 10px; }
.contact-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.contact p { color: #5a554a; margin-bottom: 26px; }
.contact-note { color: var(--wood-dark); font-weight: 600; background: var(--cream-dark); display: inline-block; padding: 10px 20px; border-radius: 999px; }
.contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { text-align: center; padding: 26px; background: var(--forest-dark); color: rgba(246,241,230,.7); font-size: .9rem; }

@media (max-width: 800px) {
  .camping-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .logo { font-size: .95rem; }
  .topbar-inner { gap: 12px; }
}
