@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-primary: #1B4332;       /* Deep forest green */
  --c-primary-light: #2D5A47;
  --c-accent: #E0703A;        /* Warm terracotta */
  --c-accent-hover: #C85C28;
  --c-secondary: #0E7C86;     /* Lake Kivu teal */
  --c-bg: #FAF7F0;          /* Warm off-white background */
  --c-bg-alt: #FFFFFF;        /* Pure white for cards */
  --c-text: #1F1F1F;          /* Charcoal */
  --c-text-muted: #555555;
  --c-border: #E5E0D5;
  --c-error: #D93025;
  --c-success: #1E8E3E;

  /* Typography */
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --f-heading: 'Lora', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(27, 67, 50, 0.1), 0 2px 4px -1px rgba(27, 67, 50, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(27, 67, 50, 0.1), 0 4px 6px -2px rgba(27, 67, 50, 0.05);

  /* Transitions */
  --t-fast: 0.15s ease-in-out;
  --t-normal: 0.3s ease-in-out;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-8: 4rem;
  --s-12: 6rem;
  
  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-family: var(--f-body);
  color: var(--c-text);
  background-color: var(--c-bg);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-primary);
  margin-bottom: var(--s-3);
}

a { color: var(--c-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.section-padding { padding: var(--s-8) 0; }
@media (min-width: 768px) { .section-padding { padding: var(--s-12) 0; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Components ─────────────────────────────────────────────────────────── */
/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--s-3) var(--s-5);
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  text-align: center;
}
.btn-primary {
  background-color: var(--c-accent);
  color: white;
}
.btn-primary:hover {
  background-color: var(--c-accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background-color: var(--c-primary);
  color: white;
}
.btn-secondary:hover {
  background-color: var(--c-primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background-color: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn-outline:hover {
  background-color: var(--c-primary);
  color: white;
}

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background-color: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  padding: var(--s-3) 0;
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  font-family: var(--f-heading); font-size: 1.5rem; font-weight: 600;
  color: var(--c-primary); display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo { width: 40px; height: 40px; border-radius: var(--radius-sm); object-fit: contain; }
.nav-menu { display: none; gap: var(--s-4); align-items: center; }
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-link { font-weight: 500; color: var(--c-text); }
.nav-link:hover { color: var(--c-accent); }
.nav-toggle { display: block; background: none; border: none; cursor: pointer; padding: var(--s-2); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.lang-switcher {
  display: flex; gap: var(--s-2); font-size: 0.9rem;
}
.lang-switcher a {
  padding: 2px 6px; border-radius: var(--radius-sm); color: var(--c-text-muted);
}
.lang-switcher a.active {
  background-color: var(--c-primary); color: white;
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  color: white;
  padding: var(--s-8) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(27, 67, 50, 0.9) 0%, rgba(27, 67, 50, 0.4) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 600px;
}
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 1px; font-size: 0.875rem; font-weight: 600;
  color: var(--c-accent); margin-bottom: var(--s-2); display: block;
}
.hero h1 { color: white; font-size: 3rem; margin-bottom: var(--s-4); }
.hero h1 em { color: var(--c-accent); font-style: normal; }
.hero p { font-size: 1.125rem; margin-bottom: var(--s-6); opacity: 0.9; }

/* Booking Widget */
.booking-widget {
  background: var(--c-bg-alt);
  padding: var(--s-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--c-text);
  margin-top: var(--s-6);
}
.widget-tabs { display: flex; gap: var(--s-2); margin-bottom: var(--s-4); border-bottom: 1px solid var(--c-border); }
.widget-tab {
  padding: var(--s-2) var(--s-4); background: none; border: none; cursor: pointer;
  font-weight: 500; color: var(--c-text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.widget-tab.active { color: var(--c-primary); border-bottom-color: var(--c-primary); }
.widget-form { display: grid; gap: var(--s-3); }
@media (min-width: 768px) {
  .widget-form { grid-template-columns: 1fr 1fr auto; align-items: end; }
}
.form-group { display: flex; flex-direction: column; gap: var(--s-1); text-align: left; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--c-text-muted); }
.form-control {
  padding: var(--s-2) var(--s-3); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); font-family: var(--f-body);
  background: var(--c-bg); transition: border-color var(--t-fast);
}
.form-control:focus { outline: none; border-color: var(--c-primary); }

/* Cards */
.card {
  background: var(--c-bg-alt); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img-wrap { position: relative; padding-top: 66.66%; overflow: hidden; }
.card-img-wrap img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform var(--t-normal);
}
.card:hover .card-img-wrap img { transform: scale(1.05); }
.card-body { padding: var(--s-4); flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.25rem; margin-bottom: var(--s-2); }
.card-meta { display: flex; gap: var(--s-3); margin-bottom: var(--s-3); font-size: 0.875rem; color: var(--c-text-muted); }
.card-price { font-weight: 600; color: var(--c-primary); font-size: 1.125rem; margin-bottom: var(--s-4); }
.card-price span { font-size: 0.875rem; color: var(--c-text-muted); font-weight: 400; }
.card-footer { margin-top: auto; padding-top: var(--s-3); border-top: 1px solid var(--c-border); }

/* Footer */
.footer { background-color: var(--c-primary); color: rgba(255,255,255,0.8); padding: var(--s-8) 0 var(--s-4); }
.footer-grid { display: grid; gap: var(--s-6); grid-template-columns: 1fr; margin-bottom: var(--s-8); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h3 { color: white; font-family: var(--f-body); font-size: 1.125rem; margin-bottom: var(--s-4); }
.footer-brand { font-family: var(--f-heading); font-size: 1.5rem; color: white; margin-bottom: var(--s-2); display: block; }
.footer-links { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-links a { color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: var(--c-accent); }
.footer-bottom { padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: var(--s-4); align-items: center; text-align: center; font-size: 0.875rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* WhatsApp Floating Button */
.wa-float {
  position: fixed; bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  background-color: #25d366; color: #FFF;
  border-radius: 50px; text-align: center;
  font-size: 30px; box-shadow: var(--shadow-lg);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast);
  opacity: 0; visibility: hidden; /* Revealed by JS */
}
.wa-float.visible { opacity: 1; visibility: visible; }
.wa-float:hover { transform: scale(1.1); color: #FFF; }
.wa-float svg { width: 34px; height: 34px; fill: currentColor; }

/* Animations */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── CTA Banner with Background Overlay ── */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  }
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(27, 67, 50, 0.85), rgba(27, 67, 50, 0.65));
  z-index: 1;
}
.cta-banner .container {
  position: relative;
  z-index: 2;
}

/* ── Hero Banner with Background Overlay ── */
.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: var(--s-16) 0;
  text-align: center;
  background-color: var(--c-primary);
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(14, 28, 54, 0.7);
  z-index: 1;
}
.hero-banner .container {
  position: relative;
  z-index: 2;
}


