:root {
  --sand: #F1EADC;
  --beige: #D9A67A;
  --wood: #9F7A5C;
  --sea: #73B0CC;
  --palm: #73B8A7;

  --radius-lg: 40px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "LtCushion", Arial, sans-serif;
  background: var(--sand);
  color: #4a3a2c;
}

h1,
h2,
h3,
h4 {
  font-family: "Reloka", serif;
  color: var(--wood);
}

section {
  padding: 5rem 2.5rem;
}

.hero {
  position: relative;
  height: 100vh;
  /* background: url("../images/hero.jpg") center / cover no-repeat; */
  background: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .35)),
    url("../images/hero.webp") center/cover no-repeat;
  color: white;
}

/* 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(241, 234, 220, 0.85),
    rgba(241, 234, 220, 0.55),
    rgba(241, 234, 220, 0.25)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: auto;
  padding: 0 1.5rem;
}

.hero h1 {
  font-family: "Reloka", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #9F7A5C;
}

.hero p {
  font-family: "Lt Cushion", serif;
  font-size: 1.1rem;
  color: #5E4A3C;
  margin-top: 1rem;
} */

.nav {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 3;
}

.btn {
  font-family: "Reloka", serif;
  background: #D9A67A;
  color: #5E4A3C;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
}

.badge p {
  margin: 0;
  font-family: "Lt Cushion", serif;
  color: #9F7A5C;
  font-size: 1rem;
}



.trust-badges {
  background: #F1EADC;
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.trust-badges h2 {
  width: 100%;
  font-family: "Reloka", serif;
  color: #9F7A5C;
  font-size: 1.9rem;
  margin-bottom: 2rem;
}

/* .trust-badges {
  border-radius: 32px;
  margin: 4rem auto;
} */

.badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.6rem;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.badge:hover {
  transform: translateY(-3px);
  transition: 0.25s ease;
}

.badge img {
  height: 42px;
  width: auto;
}

.badge p {
  margin: 0;
  font-family: "Lt Cushion", serif;
  color: #9F7A5C;
  font-size: 1rem;
}

.btn {
  padding: .75rem 1.6rem;
  border-radius: 999px;
  background: var(--beige);
  color: #3a2a1c;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero h1 {
  font-family: "Reloka", serif;
  font-size: clamp(3.8rem, 8vw, 5.2rem);
  line-height: 1.05;
  color: #F1EADC;
}

.tagline {
  font-family: "Lt Cushion", serif;
  font-size: clamp(1.4rem, 2.8vw, 1.7rem);
  color: #F1EADC;
  margin-top: 1.5rem;
  max-width: 600px;
}

.highlights {
  padding: 5rem 1.5rem;
  text-align: center;
}

.highlights h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.highlights-subtitle {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: #7A6A5D;
  line-height: 1.6;
}

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

.card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.25s ease;
}

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

.gallery {
  padding: 5rem 1.5rem;
  overflow: hidden;
}

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

.gallery-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;

}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  scroll-snap-align: center;
}

.gallery-actions {
  text-align: center;
  margin-top: 2.5rem;
}

.view-all-btn {
  font-family: "Reloka", serif;
  background: transparent;
  border: 1.5px solid #9F7A5C;
  color: #9F7A5C;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.view-all-btn:hover {
  background: #9F7A5C;
  color: #F1EADC;
}

.view-all-btn:active {
  transform: scale(0.96);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(241, 234, 220, 0.95);
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  overflow-y: auto;
  padding: 4rem 1.5rem;

  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition: opacity 0.25s ease;
}

.gallery-modal-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-modal-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-loading {
  display: block;
  text-align: center;
  font-family: "Lt Cushion", serif;
  color: #9F7A5C;
  margin-bottom: 2rem;
  opacity: 0.8;
  position: sticky;
  top: 0;
  background: rgba(241, 234, 220, 0.9);
  padding: 1rem;
  z-index: 2;
}

.gallery-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #9F7A5C;
  cursor: pointer;
}

.review-summary {
  margin-bottom: 2rem;
  font-family: "Lt Cushion", serif;
  color: #9F7A5C;
}

.review-summary .stars {
  color: #D9A67A;
  font-size: 1.4rem;
  margin-right: 0.5rem;
}

.review-summary .score {
  font-weight: bold;
  margin-right: 0.5rem;
}

.review-summary .source {
  font-size: 0.9rem;
  color: #73B0CC;
}

.reviews {
  background: #E7D9C6;
  padding: 6rem 1.5rem;
  margin: 6rem 0;
}

.reviews::before,
.reviews::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #D9A67A;
  border-radius: 999px;
  margin: 0 auto 3rem;
  opacity: 0.5;
}

.reviews::after {
  margin: 3rem auto 0;
}

.reviews h2 {
  font-family: "Reloka", serif;
  font-size: 2.2rem;
  color: #9F7A5C;
  margin-bottom: 3rem;
}

.reviews-inner {
  max-width: 900px;
  margin: auto;
  padding: 0;
}


.reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-track {
  overflow: hidden;
  width: 100%;
}

.review {
  display: none;
  background: #F1EADC;
  padding: 2.5rem;
  border-radius: 32px;
  font-family: "Lt Cushion", serif;
  color: #333;
  line-height: 1.6;
}

.review-stars {
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #D9A67A;
  /* brand gold */
  margin-bottom: 1rem;
  opacity: 0.9;
}

.review.active {
  display: block;
}

.review footer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #73B0CC;
}

.review-nav {
  color: #9F7A5C;
  font-size: 1.75rem;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.75;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.review-nav:hover {
  opacity: 1;
  transform: scale(1.1);
}

.review-nav.prev {
  margin-right: 1rem;
}

.review-nav.next {
  margin-left: 1rem;
}

.booking-cta {
  background: linear-gradient(180deg, #F1EADC 0%, #ffffff 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  border-radius: 48px;
  max-width: 1100px;
  margin: 5rem auto;
}

.booking-cta h2 {
  font-family: "Reloka", serif;
  font-size: 2.4rem;
  color: #9F7A5C;
  margin-bottom: 1rem;
}

.booking-cta p {
  font-family: "Lt Cushion", serif;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 2.5rem;
}

.booking-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: "Reloka", serif;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Platform colors softened to match brand */
.btn.airbnb {
  background: #FF5A5F;
  color: white;
}

.btn.booking {
  background: #003580;
  color: white;
}

.btn.whatsapp {
  background: #25D366;
  color: white;
}

.booking-note {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #73B0CC;
}

.location {
  background: #F1EADC;
  padding: 5rem 1.5rem;
}

.location-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-text h2 {
  font-family: "Reloka", serif;
  font-size: 2.3rem;
  color: #9F7A5C;
  margin-bottom: 1.5rem;
}

.location-text p {
  font-family: "Lt Cushion", serif;
  color: #5E4B3C;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.location-highlight {
  background: #E7D9C6;
  padding: 1.8rem;
  border-radius: 24px;
  margin-top: 2rem;
}

.location-highlight h3 {
  font-family: "Reloka", serif;
  color: #9F7A5C;
  margin-bottom: 1rem;
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-footer {
  background: #E7D9C6;
  padding: 3.5rem 1.5rem 2.5rem;
  margin-top: 6rem;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-brand {
  font-family: "Lt Cushion", serif;
  color: #9F7A5C;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-family: "Reloka", serif;
  font-size: 0.85rem;
  text-decoration: none;
  color: #73B0CC;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: "Lt Cushion", serif;
  font-size: 0.85rem;
  color: #9F7A5C;
  margin-bottom: 1.25rem;
  opacity: 0.85;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item img {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

.trust-separator {
  margin: 0 0.25rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: #9F7A5C;
}

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 300px;
  }
}

@media(max-width:768px) {
  body {
    padding-bottom: 80px;
  }

  section {
    padding: 3.5rem 1.5rem;
  }

  .hero {
    min-height: 85vh;
  }

  .location-content,
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(241, 234, 220, 0.95);
    backdrop-filter: blur(6px);
    padding: 0.75rem 1rem;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: flex;
    justify-content: center;
  }

  .mobile-cta a {
    background: #25D366;
    color: white;
    font-family: "Reloka", serif;
    font-size: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    width: 100%;
    max-width: 420px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav {
    top: 1rem;
    right: 1rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    text-align: center;
  }

  .gallery-track img {
    width: 85vw;
    height: 240px;
  }

  .gallery-modal {
    padding: 3rem 1rem;
  }

  .gallery-modal-grid img {
    height: 200px;
  }

  .reviews {
    padding: 4rem 1rem;
  }

  .reviews-inner {
    padding: 3rem 1.5rem;
    border-radius: 36px;
  }

  .review-nav {
    display: none;
  }

  .review {
    padding: 2rem 1.5rem;
  }

  .booking-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }

  .footer-links {
    gap: 0.75rem;
  }

  .footer-trust {
    font-size: 0.8rem;
  }

  .booking-cta h2 {
    font-size: 2rem;
  }
}