/* ==========================================================================
   KUMBUK & WEWA — RAJARATA VILLAGE RETREAT
   100% Pure CSS Architecture (Zero JavaScript)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cinzel:wght@500;600;700&display=swap');

:root {
  /* Earthy Village & Sanctuary Palette */
  --bg-primary: #fdfbf7;
  --bg-secondary: #f4ecdc;
  --bg-tertiary: #ebdcc4;
  --bg-card: #ffffff;
  --deep-forest: #142a1b;
  --forest: #22432c;
  --forest-light: #2e573a;
  --forest-pale: #eaf0e8;
  --olive: #5d6d37;
  --olive-light: #eff3e7;
  --clay: #b56230;
  --clay-dark: #91461b;
  --clay-pale: #faede6;
  --gold: #c29541;
  --gold-light: #f7eed7;
  --ink: #1f2721;
  --ink-muted: #576258;
  --line: #ded3be;
  --line-light: #eee5d3;
  --line-dark: #2a4732;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 16px rgba(20, 42, 27, 0.05);
  --shadow-md: 0 12px 32px rgba(20, 42, 27, 0.08);
  --shadow-lg: 0 24px 56px rgba(20, 42, 27, 0.13);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .serif-font {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--deep-forest);
  line-height: 1.2;
}

.brand-font {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.06em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ==========================================================================
   Top Header Bar & Pure-CSS Navigation
   ========================================================================== */
.topbar {
  background: var(--deep-forest);
  color: #f7eed7;
  font-size: 13px;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid rgba(194, 149, 65, 0.25);
}

.topbar span.concept {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.topbar span.divider {
  margin: 0 10px;
  opacity: 0.4;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}

.nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Identity */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.06));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--deep-forest);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.brand-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-top: 3px;
}

/* Pure CSS Mobile Navigation via Hidden Checkbox */
.nav-toggle-input {
  display: none;
}

.mobile-toggle-btn {
  display: none;
  cursor: pointer;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--deep-forest);
  font-size: 20px;
  line-height: 1;
  user-select: none;
  transition: var(--transition);
}

.mobile-toggle-btn:hover {
  background: var(--bg-tertiary);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navlinks a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--clay);
  transition: var(--transition);
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--forest);
}

.navlinks a:hover::after,
.navlinks a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--forest) !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 12px rgba(34, 67, 44, 0.2);
}

.nav-cta:hover {
  background: var(--deep-forest) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 67, 44, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* ==========================================================================
   Buttons & Tags & Badges
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--forest);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(34, 67, 44, 0.25);
}

.btn-primary:hover {
  background: var(--deep-forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 42, 27, 0.35);
  color: #ffffff;
}

.btn-clay {
  background: var(--clay);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(181, 98, 48, 0.25);
}

.btn-clay:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(145, 70, 27, 0.35);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--deep-forest);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--deep-forest);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--deep-forest);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-forest {
  background: var(--forest-pale);
  color: var(--forest);
}

.badge-clay {
  background: var(--clay-pale);
  color: var(--clay-dark);
}

.badge-olive {
  background: var(--olive-light);
  color: var(--olive);
}

.badge-gold {
  background: var(--gold-light);
  color: #7d5c19;
}

/* ==========================================================================
   Hero Banners
   ========================================================================== */
.hero {
  position: relative;
  min-height: 720px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 120px 0 90px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 34, 22, 0.92) 0%,
    rgba(20, 42, 27, 0.82) 45%,
    rgba(20, 42, 27, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(194, 149, 65, 0.25);
  border: 1px solid rgba(194, 149, 65, 0.6);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffebc0;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: #f1ebd9;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  color: #f9f5ed;
  font-weight: 500;
}

/* Inner Page Hero */
.page-hero {
  position: relative;
  min-height: 380px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 80px 0 60px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(18, 38, 24, 0.90) 0%,
    rgba(20, 42, 27, 0.70) 60%,
    rgba(20, 42, 27, 0.40) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #eadbb9;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: #ffffff;
  opacity: 0.85;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.page-hero-title {
  font-size: clamp(34px, 4.5vw, 52px);
  color: #ffffff;
  margin-bottom: 14px;
}

.page-hero-desc {
  font-size: 18px;
  color: #f5eedf;
  line-height: 1.6;
}

/* ==========================================================================
   Stat Band & Quick Facts
   ========================================================================== */
.statband {
  background: var(--deep-forest);
  color: #fdfbf7;
  padding: 38px 0;
  border-bottom: 2px solid var(--clay);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 16px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #e2ddd0;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Sections & Layout System
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-cream {
  background-color: #f7f1e3;
}

.section-dark {
  background-color: var(--deep-forest);
  color: #fdfbf7;
}

.section-dark h2, .section-dark h3 {
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.section-dark .section-subtitle {
  color: #d6ded7;
}

/* Grids */
.grid {
  display: grid;
  gap: 28px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Two Column Feature Layout */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse > * {
  direction: ltr;
}

.feature-media {
  position: relative;
}

.feature-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-badge-float {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 250px;
}

.feature-badge-float strong {
  display: block;
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 4px;
}

.feature-badge-float span {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
  display: block;
}

.feature-text p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 16px;
}

.quote-box {
  border-left: 4px solid var(--clay);
  background: var(--bg-secondary);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--forest);
  line-height: 1.5;
}

/* ==========================================================================
   Concept: Gamai • Pansalai • Wawai • Dagabai
   ========================================================================== */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.concept-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.concept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay);
}

.concept-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7eb, #eedcbd);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.6), 0 8px 18px rgba(34, 67, 44, 0.08);
}

.concept-icon-wrap svg {
  width: 40px;
  height: 40px;
}

.concept-title {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--deep-forest);
}

.concept-sinhala {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.concept-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Room Cards (Stay & Accommodation)
   ========================================================================== */
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.room-card-media {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-img {
  transform: scale(1.04);
}

.room-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(20, 42, 27, 0.88);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.room-badge-pool {
  background: var(--clay);
}

.room-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card-title {
  font-size: 26px;
  margin-bottom: 8px;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.room-spec-pill {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--forest);
}

.room-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}

.room-features-list {
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
  margin-bottom: 22px;
}

.room-features-list li {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--olive);
  flex-shrink: 0;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.room-pax-count {
  font-size: 13px;
  color: var(--clay-dark);
  font-weight: 600;
}

/* ==========================================================================
   Package Cards (01-Day, 02-Days, 03-Days Stay Packages)
   ========================================================================== */
.package-group {
  margin-bottom: 70px;
}

.package-group:last-child {
  margin-bottom: 0;
}

.package-group-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 26px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 18px;
}

.package-group-title {
  font-size: 32px;
  margin-top: 4px;
}

.package-group-desc {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 550px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest);
}

.package-card.featured {
  border: 2px solid var(--forest);
  background: #fbf9f2;
  box-shadow: var(--shadow-md);
}

.package-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--forest);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 0 var(--radius-md) 0 12px;
}

.package-duration-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 6px;
}

.package-name {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.package-meal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest-pale);
  color: var(--forest);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.package-room-type {
  font-size: 14px;
  font-weight: 600;
  color: var(--clay-dark);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.package-inclusions {
  flex: 1;
  margin-bottom: 20px;
}

.package-inclusions-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.package-inclusions li {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.package-inclusions li svg {
  width: 17px;
  height: 17px;
  color: var(--forest);
  margin-top: 2px;
  flex-shrink: 0;
}

.package-transport {
  background: #f7f1e3;
  border: 1px solid #dfd3ba;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--deep-forest);
  line-height: 1.45;
}

.package-transport strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
  margin-bottom: 3px;
}

.package-notice {
  background: var(--olive-light);
  border: 1px solid #d4dfbf;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--forest);
  line-height: 1.6;
}

/* ==========================================================================
   Dining & Live Food Station Elements
   ========================================================================== */
.culinary-banner {
  background: linear-gradient(135deg, var(--deep-forest) 0%, #1e3c27 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.culinary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.culinary-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 26px;
  backdrop-filter: blur(6px);
}

.culinary-card-title {
  font-size: 20px;
  color: #ffdca3;
  margin-bottom: 8px;
}

.culinary-card-desc {
  font-size: 14px;
  color: #e1e9e2;
  line-height: 1.6;
}

/* ==========================================================================
   Experiences & Village Tourism
   ========================================================================== */
.experience-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.experience-media {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .experience-img {
  transform: scale(1.05);
}

.experience-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 42, 27, 0.85);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.experience-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.experience-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.experience-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.experience-meta {
  border-top: 1px solid var(--line-light);
  padding-top: 14px;
  font-size: 13px;
  color: var(--forest);
  font-weight: 600;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 36px;
  margin: 40px 0;
  border-left: 2px dashed var(--clay);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -44px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clay);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--clay);
}

.timeline-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 20px;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Gallery (CSS Grid & Responsive Lightbox feel)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  background: var(--bg-secondary);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 580px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(17, 34, 22, 0.9) 0%, transparent 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Booking & Contact Form System (Pure HTML/CSS)
   ========================================================================== */
.booking-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.form-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 26px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-label span.req {
  color: var(--clay);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffdf9;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--forest);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(34, 67, 44, 0.12);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 5px;
}

/* Summary Card for Booking Side Panel */
.booking-summary-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.summary-title {
  font-size: 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.summary-list li {
  font-size: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
}

.summary-list li strong {
  color: var(--deep-forest);
}

.summary-highlight {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.5;
}

.summary-highlight strong {
  display: block;
  color: var(--forest);
  font-size: 14px;
  margin-bottom: 4px;
}

/* Contact Details Card */
.contact-info-card {
  background: var(--deep-forest);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: #ffdca3;
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #f1ede1;
}

.contact-info-list svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #112216;
  color: #e5ece6;
  padding: 70px 0 30px;
  border-top: 3px solid var(--clay);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand-name {
  color: #f5ecd8;
}

.footer-brand .brand-tagline {
  color: var(--gold);
}

.footer-about {
  font-size: 14px;
  color: #b7c5b9;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 380px;
}

.footer-col-title {
  font-size: 18px;
  color: #f5ecd8;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clay);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #b7c5b9;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #8fa191;
}

.footer-bottom a {
  color: #b7c5b9;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .navlinks {
    gap: 14px;
  }
  
  .feature-split {
    gap: 40px;
  }
  
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .mobile-toggle-btn {
    display: block;
  }
  
  /* Pure CSS Checkbox Driven Mobile Menu */
  .navlinks {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fdfbf7;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px;
    border-bottom: 2px solid var(--line);
    box-shadow: var(--shadow-lg);
    gap: 18px;
  }
  
  .nav-toggle-input:checked ~ .navlinks {
    display: flex;
  }
  
  .navlinks a {
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--line-light);
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  
  .grid-2, .grid-3, .grid-4, .culinary-grid, .package-group-header, .feature-split {
    grid-template-columns: 1fr;
  }
  
  .feature-split.reverse {
    direction: ltr;
  }
  
  .feature-img {
    height: 360px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .stat-item {
    padding: 14px 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.wide, .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    height: 280px;
  }
}

@media (max-width: 580px) {
  .topbar {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .hero {
    min-height: 600px;
    padding: 80px 0 60px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .concept-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-panel, .contact-info-card, .booking-summary-panel {
    padding: 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
