/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #2c4a2e;
  --gold:    #b8860b;
  --cream:   #f9f5ef;
  --warm:    #f2ebe0;
  --dark:    #1a1a1a;
  --text:    #333;
  --muted:   #666;
  --white:   #fff;
  --radius:  8px;
  --shadow:  0 4px 20px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #1e3320; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--white); color: var(--green); }

.btn-nav {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-nav:hover { background: #9a7009; }

.btn-app {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 12px;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-app:hover { background: #333; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.bg-warm { background: var(--warm); }
.bg-dark  { background: var(--green); }

.label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.75); }
.section-header.light .label { color: #d4a843; }

.section-cta { text-align: center; margin-top: 48px; }

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.text-block h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); margin-bottom: 20px; }
.text-block p  { color: var(--muted); margin-bottom: 16px; }
.text-block .btn-primary { margin-top: 8px; }

.img-block img {
  border-radius: 12px;
  height: 420px;
  box-shadow: var(--shadow);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.card img { height: 220px; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card-body p  { color: var(--muted); font-size: 0.95rem; }

/* ===== DRINKS LIST ===== */
.drinks-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drinks-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* ===== WALKS ===== */
.walks-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
}
.walks-banner img { height: 100%; }
.walks-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: var(--white);
}
.walks-overlay h3 { font-size: 2rem; margin-bottom: 12px; }
.walks-overlay p  { margin-bottom: 24px; font-size: 1.05rem; opacity: 0.9; }

/* ===== APP PROMO ===== */
.app-promo { background: var(--cream); }
.app-btns  { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

/* ===== FINDER ===== */
.finder-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.finder-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
  min-width: 200px;
}
.finder-form input:focus { outline: 2px solid var(--gold); }

/* ===== BOOKING ===== */
.book { background: var(--cream); }
.book-form { max-width: 900px; margin: 0 auto; }
.form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus { outline: 2px solid var(--green); border-color: transparent; }
.book-form .btn-primary { width: 100%; padding: 16px; font-size: 1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-links ul { gap: 8px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; }
.footer-links h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .img-block img { height: 300px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hero-btns { flex-direction: column; align-items: center; }
}
