/* ============================================================
   Hambleton Lakeside Lodges — Direct Booking Page
   Palette: Forest Green, Warm Cream, Charcoal
   ============================================================ */

:root {
  --green-deep:   #1a2e1f;
  --green-mid:    #2d4a33;
  --green-light:  #3d6644;
  --cream:        #f4efe6;
  --cream-dark:   #e8dfd0;
  --charcoal:     #2a2a2a;
  --charcoal-mid: #3d3d3d;
  --gold:         #c9a96e;
  --gold-light:   #e0c48a;
  --white:        #ffffff;
  --text-dark:    #1e1e1e;
  --text-muted:   #5a5a5a;

  --font-serif:   'Georgia', 'Times New Roman', serif;
  --font-sans:    'Helvetica Neue', 'Arial', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-soft:  0 4px 24px rgba(0,0,0,0.12);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { font-size: 1rem; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--green-deep);
  color: var(--cream);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--cream);
}

.section--cream {
  background: var(--cream);
}

.section--cream-dark {
  background: var(--cream-dark);
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

.section--dark .section-subtitle,
.section--charcoal .section-subtitle {
  color: rgba(244,239,230,0.65);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem 0 2rem;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(26,46,31,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.2;
}

.nav__logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__cta {
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav__cta:hover { background: var(--gold-light); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,21,13,0.35) 0%,
      rgba(10,21,13,0.55) 60%,
      rgba(10,21,13,0.75) 100%
    ),
    url('hero.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Subtle animated shimmer to suggest water reflections */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      92deg,
      transparent 0px,
      rgba(201,169,110,0.03) 1px,
      transparent 2px,
      transparent 80px
    ),
    repeating-linear-gradient(
      178deg,
      transparent 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 2px,
      transparent 120px
    );
  animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0%   { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 1;   transform: translateY(-4px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 0 0;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
  max-width: 540px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(244,239,230,0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--green-deep);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(244,239,230,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1fba58;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn--submit {
  background: var(--green-mid);
  color: var(--cream);
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}
.btn--submit:hover {
  background: var(--green-light);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244,239,230,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(244,239,230,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: rgba(244,239,230,0.5);
  stroke-width: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ── Photo Gallery ────────────────────────────────────────── */
.gallery-section {
  background: var(--charcoal);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.gallery-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-section .section-title {
  color: var(--cream);
}

.gallery-section .divider {
  margin: 1.2rem auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

.gallery-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item--featured img {
  height: 380px;
}

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

/* ── Why Book Direct ──────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.benefit-card:hover {
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-3px);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: rgba(244,239,230,0.7);
  line-height: 1.6;
}

/* ── The Lodges ───────────────────────────────────────────── */
.lodges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lodge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}

.lodge-card:hover {
  transform: translateY(-6px);
}

.lodge-card__image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.lodge-card__image--retreat {
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.45) 100%
    ),
    url('interior-pro.jpg') center center / cover no-repeat;
}

.lodge-card__image--view {
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.45) 100%
    ),
    url('interior-lakeview.jpg') center center / cover no-repeat;
}

/* Water-like shimmer on lodge card images */
.lodge-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.15) 0%, transparent 60%),
    repeating-linear-gradient(90deg,
      transparent 0px, rgba(255,255,255,0.04) 1px,
      transparent 2px, transparent 40px
    );
}

.lodge-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.lodge-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.lodge-card__body {
  padding: 1.75rem;
}

.lodge-card__features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lodge-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lodge-card__features li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

.lodge-card__pricing {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--green-deep);
  font-weight: 700;
}

.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── What's Included ──────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.included-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45,74,51,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.included-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.included-item__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.included-item h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.included-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Location ─────────────────────────────────────────────── */
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--green-deep);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* CSS map illustration */
.location-map__art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(45,74,51,0.8) 0%, rgba(26,46,31,0.9) 100%);
}

.location-map__art::before {
  content: '';
  position: absolute;
  top: 30%; left: 20%;
  width: 60%; height: 35%;
  background: rgba(37,99,128,0.35);
  border-radius: 40% 60% 55% 45%;
  filter: blur(2px);
}

.location-map__art::after {
  content: '';
  position: absolute;
  top: 55%; left: 35%;
  width: 30%; height: 18%;
  background: rgba(37,99,128,0.25);
  border-radius: 50%;
  filter: blur(1px);
}

.location-map__pin {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
}

.location-map__pin .pin-icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.location-map__pin p {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.location-details {
  color: var(--cream);
}

.location-details h2 {
  margin-bottom: 0.5rem;
}

.location-details .divider { background: var(--gold); }

.location-details p {
  color: rgba(244,239,230,0.75);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(244,239,230,0.8);
}

.location-list li .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Enquire Now ──────────────────────────────────────────── */
.enquire-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.enquire-info h2 { margin-bottom: 0.5rem; }
.enquire-info .divider { background: var(--gold); }
.enquire-info p {
  color: rgba(244,239,230,0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.whatsapp-cta {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.whatsapp-cta p {
  font-size: 0.9rem;
  color: rgba(244,239,230,0.6);
  margin-bottom: 1rem;
}

.enquire-info .note {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.45);
  margin-top: 1rem;
}

/* Form */
.enquiry-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244,239,230,0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #0d1510;
  color: rgba(244,239,230,0.5);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.footer p {
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

.footer__links a {
  color: rgba(244,239,230,0.4);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .location-inner,
  .enquire-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-map {
    height: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .lodges-grid {
    grid-template-columns: 1fr;
  }

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

  /* Gallery: 2 cols on tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item img {
    height: 200px;
  }

  .gallery-item--featured img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__actions .btn {
    justify-content: center;
  }

  /* Gallery: single col on mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .gallery-item--featured {
    grid-column: span 1;
  }

  .gallery-item img,
  .gallery-item--featured img {
    height: 220px;
  }
}
