/* ============================================
   Eco Villa Pandola — Stylesheet
   ============================================ */

:root {
  --color-cream: #f5f0e8;
  --color-sage: #4a6741;
  --color-sage-dark: #3a5233;
  --color-forest: #2c3e28;
  --color-gold: #c8a45c;
  --color-gold-light: #dfc088;
  --color-charcoal: #2a2a2a;
  --color-white: #ffffff;
  --color-offwhite: #faf8f4;
  --color-text: #3d3d3d;
  --color-text-light: #6b6b6b;
  --color-border: #e0dbd2;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --container: 1200px;
  --gap: 2rem;
  --radius: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-offwhite);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ============================================
   Typography
   ============================================ */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.75rem;
}

.section-tag--center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.section-title--center { text-align: center; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--color-sage);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-sage-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav--scrolled .nav__logo,
.nav--scrolled .nav__links a {
  color: var(--color-charcoal);
}

.nav--scrolled .nav__cta {
  border-color: var(--color-sage) !important;
  color: var(--color-sage) !important;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition);
}

.nav__logo-eco {
  color: var(--color-gold-light);
}

.nav--scrolled .nav__logo-eco {
  color: var(--color-sage);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.825rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.nav--scrolled .nav__links a:hover {
  background: rgba(0,0,0,0.04);
}

.nav__cta {
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: var(--color-white) !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav--scrolled .nav__toggle span {
  background: var(--color-charcoal);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--gap);
  animation: fadeUp 1s ease-out;
}

.hero__tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero__sub {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold-light);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 7rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about__img {
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about__img--1 {
  height: 380px;
  margin-top: 3rem;
}

.about__img--2 {
  height: 320px;
}

.about__text p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-cream);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 400;
}

.about__feature-icon {
  font-size: 1.25rem;
}

/* ============================================
   Villas
   ============================================ */
.villas {
  padding: 5rem 0 7rem;
  background: var(--color-cream);
}

.villa-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.villa-card--reverse {
  direction: rtl;
}
.villa-card--reverse > * {
  direction: ltr;
}

.villa-card__gallery {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.villa-card__slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.villa-card__slider img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--color-charcoal);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.slider-btn:hover {
  background: var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.slider-btn--prev { left: 1rem; }
.slider-btn--next { right: 1rem; }

.villa-card__info {
  padding: 2.5rem;
}

.villa-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.villa-card__info p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.925rem;
}

.villa-card__ideal {
  font-style: italic;
  color: var(--color-sage) !important;
}

.villa-card__info h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin: 1.5rem 0 1rem;
}

.villa-card__rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.villa-card__rooms img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.villa-card__rooms img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Pricing */
.pricing-table {
  margin-bottom: 1.5rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.pricing-amount {
  font-weight: 500;
  color: var(--color-sage);
  white-space: nowrap;
}

/* ============================================
   Natural Pool
   ============================================ */
.pool {
  padding: 7rem 0;
}

.pool__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.pool__gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.pool__gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ============================================
   Waterfalls
   ============================================ */
.waterfalls {
  padding: 5rem 0 7rem;
  background: var(--color-forest);
  color: var(--color-white);
}

.waterfalls .section-tag { color: var(--color-gold-light); }
.waterfalls .section-title { color: var(--color-white); }

.waterfalls__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.waterfall-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.waterfall-card:hover img {
  transform: scale(1.08);
}

.waterfall-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.waterfall-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.waterfall-card__info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.waterfalls__more-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.waterfalls__more-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   Food Menu
   ============================================ */
.food {
  padding: 7rem 0;
}

.food__desc {
  text-align: center;
  max-width: 500px;
  margin: -0.5rem auto 2.5rem;
  color: var(--color-text-light);
}

.food__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.food__card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.food__card:hover {
  background: var(--color-white);
  border-color: var(--color-sage);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.food__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.food__card h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: 5rem 0 7rem;
  background: var(--color-cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-card__stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.925rem;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 40, 0.8);
}

.cta__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.cta__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta__content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__links a,
.footer__contact a {
  display: block;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}

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

.footer__contact p {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer__bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .about__grid { gap: 2.5rem; }
  .villa-card { grid-template-columns: 1fr; }
  .villa-card--reverse { direction: ltr; }
  .villa-card__gallery { min-height: 300px; }
  .waterfalls__grid { gap: 1rem; }
  .food__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--color-offwhite);
    padding: 5rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
  }

  .nav__links--open {
    right: 0;
  }

  .nav__links a {
    color: var(--color-charcoal) !important;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .nav__cta {
    border-color: var(--color-sage) !important;
    color: var(--color-sage) !important;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__images {
    order: -1;
  }

  .about__img--1 { height: 240px; margin-top: 0; }
  .about__img--2 { height: 200px; }

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

  .pool__gallery img { height: 160px; }

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.75rem;
  }

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

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

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

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

  .waterfalls__more-images {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Bites Menu Section
   ============================================ */
.food__bites {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 2rem 2.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
}

.food__bites-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
  text-align: center;
}

.food__chef-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: center;
  font-style: italic;
}

/* ============================================
   Booking Section
   ============================================ */
.booking {
  padding: 5rem 0 6rem;
  background: var(--color-cream);
}

.booking__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.booking__step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.booking__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-sage);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.booking__step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.booking__step p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.booking__cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.booking__phones {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .booking__steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ============================================
   Happy Customers
   ============================================ */
.customers {
  padding: 5rem 0 6rem;
  background: var(--color-cream);
}

.customers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.customers__grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.customers__grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .customers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .customers__grid img { height: 160px; }
}

/* ============================================
   Ran Pokuna (New Pool)
   ============================================ */
.ran-pokuna {
  padding: 5rem 0 6rem;
  background: var(--color-cream);
}

.pool__desc {
  text-align: center;
  max-width: 600px;
  margin: -0.5rem auto 2rem;
  color: var(--color-text-light);
}

/* ============================================
   Food Photos
   ============================================ */
.food__photos {
  margin-top: 3rem;
}

.food__photos-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: center;
  margin-bottom: 1.25rem;
}

.food__photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.food__photos-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}

.food__photos-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.food__card {
  position: relative;
  overflow: hidden;
}

.food__card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -2.5rem -1rem 1rem;
  width: calc(100% + 2rem);
}

@media (max-width: 768px) {
  .food__photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .food__photos-grid img { height: 180px; }
}

/* ============================================
   TikTok Section
   ============================================ */
.tiktok {
  padding: 5rem 0;
  background: var(--color-cream);
  text-align: center;
}

.tiktok__desc {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.tiktok__video {
  max-width: 605px;
  margin: 0 auto 1.5rem;
}

.tiktok__btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.tiktok__famous {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ============================================
   Testimonials / Google Reviews
   ============================================ */
.testimonials__subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin: -0.5rem 0 2rem;
}

.testimonial-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.testimonial-card--link:hover {
  border-color: var(--color-sage);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-card__read {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-sage);
  font-weight: 500;
}

.testimonials__more {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   Location / Google Map
   ============================================ */
.location {
  padding: 5rem 0;
}

.location__map {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.location__info {
  text-align: center;
  margin-top: 1.5rem;
}

.location__info p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* ============================================
   Social Media
   ============================================ */
.social {
  padding: 5rem 0;
  background: var(--color-cream);
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}

.social__card:hover {
  border-color: var(--color-sage);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.social__card svg {
  color: var(--color-sage);
  margin-bottom: 1rem;
}

.social__card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.social__card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Footer social icons */
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

@media (max-width: 768px) {
  .social__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Founder's Message Video
   ============================================ */
.founder {
  padding: 5rem 0;
  background: var(--color-white);
}

.founder__desc {
  text-align: center;
  max-width: 600px;
  margin: -0.5rem auto 2rem;
  color: var(--color-text-light);
}

.founder__video {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  background: #000;
}

.founder__video video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: contain;
}

/* ============================================
   Food Message (Don't Bargain Note)
   ============================================ */
.food__message {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1.75rem 2rem;
  background: rgba(74, 103, 65, 0.05);
  border-left: 4px solid var(--color-sage);
  border-radius: var(--radius);
}

.food__message-text {
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* ============================================
   Gallery Videos
   ============================================ */
.gallery__videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery__videos video {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: var(--radius-lg);
  background: #000;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .gallery__videos {
    grid-template-columns: 1fr;
  }
  .founder__video video {
    max-height: 400px;
  }
}

/* ============================================
   Pricing Note
   ============================================ */
.pricing-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}

/* ============================================
   Parking Section
   ============================================ */
.parking {
  padding: 5rem 0;
  background: var(--color-white);
}

.parking__desc {
  text-align: center;
  max-width: 800px;
  margin: -0.5rem auto 2rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.parking__desc strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.parking__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.parking__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(74, 103, 65, 0.06);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.parking__feature-icon {
  font-size: 1.5rem;
}

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

.parking__gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}

.parking__gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .parking__features {
    grid-template-columns: repeat(2, 1fr);
  }
  .parking__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .parking__gallery img { height: 180px; }
}

/* ============================================
   Legal Pages (Terms, Privacy, Refund)
   ============================================ */
.legal {
  padding: 8rem 0 5rem;
  background: var(--color-cream);
  min-height: 80vh;
}

.container--narrow {
  max-width: 850px;
}

.legal__updated {
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
}

.legal__content {
  background: var(--color-white);
  padding: 2.5rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  line-height: 1.75;
}

.legal__content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 2rem 0 0.75rem;
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-sage);
  margin: 1.5rem 0 0.5rem;
}

.legal__content p {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.legal__content ul {
  margin: 0.5rem 0 1.25rem 1.5rem;
  color: var(--color-text);
}

.legal__content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal__content a {
  color: var(--color-sage);
  text-decoration: underline;
}

.legal__content a:hover {
  color: var(--color-charcoal);
}

.legal__content strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.legal__highlight {
  background: rgba(74, 103, 65, 0.08);
  border-left: 4px solid var(--color-sage);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
}

.legal__highlight p {
  margin: 0;
}

@media (max-width: 768px) {
  .legal {
    padding-top: 6rem;
  }
  .legal__content {
    padding: 1.75rem 1.5rem;
  }
  .legal__content h2 {
    font-size: 1.35rem;
  }
}
