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

:root {
  --green-deep: #1B3A0F;
  --green-mid: #3D6B2C;
  --green-sage: #7D9E5A;
  --green-light: #C8DDB0;
  --ivory: #F7F2E8;
  --ivory-dark: #EDE6D6;
  --earth: #8B6B3D;
  --earth-dark: #6B4F28;
  --text: #2C2416;
  --text-light: #6B6050;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(27, 58, 15, 0.92);
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-book {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--earth);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-book:hover { background: var(--earth-dark); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 24, 5, 0.35) 0%,
    rgba(10, 24, 5, 0.55) 60%,
    rgba(10, 24, 5, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.btn-primary {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--earth);
  padding: 0.8rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--earth-dark);
  transform: translateY(-1px);
}

/* ── Section shared ── */
section { padding: 5rem 1.5rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--green-sage);
  margin-top: 0.5rem;
}

/* ── Divider ── */
.divider {
  text-align: center;
  color: var(--green-sage);
  opacity: 0.5;
  overflow: hidden;
  line-height: 0;
  padding: 0;
}

.divider svg { width: 100%; max-height: 32px; }

/* ── Highlights bar ── */
.highlights {
  background: var(--green-deep);
  padding: 2.5rem 1.5rem;
}

.highlights-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.highlight-item { color: var(--ivory); }

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  display: block;
}

.highlight-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1;
}

.highlight-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* ── Description ── */
.description { background: var(--ivory); }

.description-text {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
}

.description-text p + p { margin-top: 1.2rem; }

/* ── Gallery ── */
.gallery { background: var(--ivory-dark); }

.room-section { margin-bottom: 3.5rem; }
.room-section:last-child { margin-bottom: 0; }

.room-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--green-light);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.photo-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(27, 58, 15, 0.25);
}

/* ── Amenities ── */
.amenities { background: var(--ivory); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem 2rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
}

.amenity-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── Distances ── */
.distances { background: var(--ivory-dark); }

.distances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem 2.5rem;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--ivory-dark);
  border-bottom-color: rgba(125, 158, 90, 0.25);
}

.distance-place { color: var(--text); }
.distance-time { color: var(--green-mid); font-weight: 700; font-size: 0.85rem; }

/* ── Book CTA ── */
.book-cta {
  background: var(--green-deep);
  text-align: center;
  padding: 5rem 1.5rem;
}

.book-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.book-cta p {
  color: var(--ivory);
  opacity: 0.75;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── Footer ── */
footer {
  background: #0F2108;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 18, 6, 0.95);
  align-items: center;
  justify-content: center;
}

#lightbox.open { display: flex; }

#lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.15s;
  line-height: 1;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--white); }

.lb-close { top: 1.25rem; right: 1.5rem; font-size: 2.5rem; }
.lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ── Mobile ── */
@media (max-width: 600px) {
  nav { padding: 0.85rem 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
  .photo-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .lb-prev { left: 0.25rem; }
  .lb-next { right: 0.25rem; }
}
