:root {
  /* BRAND PALETTE — Staycation Tagaytay Albizia */
  
  /* Primary brand gold (from logo) */
  --brown: #C69C6D;

  /* Warm neutral background + surface */
  --cream: #F7F3EE;          /* Overall background */
  --beige: #F4EFEA;          /* Section background */
  --sage: #F1ECE6;           /* Light accent background */

  /* Muted warm taupe (new text-muted) */
  --warm-grey: #B8A89A;      
  --text-muted: #8A7C6A;

  /* Accents */
  --forest: #2F5D54;         /* Subtle accent headers / lines */
  --teal: #4A8A87;           /* Optional special highlights */

  /* CTA Red (keep your terracotta promo color) */
  --terracotta: #C7362E;

  /* Text */
  --text: #1A1A1A;

  /* UI Constants */
  --radius-card: 20px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.08);
  --max-width: 1120px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
}


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

main {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-padded {
  padding: 56px 20px;
}

/* Gallery zoom */
.gallery-item img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}
.gallery-item:hover img {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Hero zoom */
.hero-image img { cursor: default; }

/* Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-lightbox.active { opacity: 1; }
.image-lightbox img {
  position: relative;
  z-index: 2;
  max-width: 92%;
  max-height: 92%;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  cursor: zoom-out;
}

/* Backdrop click zone */
.image-lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* Loader */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #F7F3EE;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 100%;
  max-width: 180px;   /* cap desktop size */
  min-width: 120px;   /* ensure readable on mobile */
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
  animation: logoPulse 1.6s ease-in-out infinite;
}

/* Center align bottom OTA booking section */
.booking-ota-bottom {
  text-align: center;
}

.booking-ota-bottom .booking-ota-links {
  display: flex;
  justify-content: center;
}

.booking-ota-bottom .booking-ota-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

  /* News section – two-column equal layout */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
  }

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

  /* Themed card */
  .news-card {
    background: #F7F3EE; /* site cream */
    border: 1px solid #E5E0D8;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: box-shadow 0.18s;
  }
  .news-card:hover {
    box-shadow: 0 18px 32px rgba(0,0,0,0.13);
  }

  .news-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(194, 187, 176, 0.7);
  }

  /* News text-only preview */
  .news-text-preview {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3A3A3A;
    max-height: 6.5em; /* ~250 chars */
    overflow: hidden;
  }

  .news-readmore {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #C7362E;
    cursor: pointer;
    font-weight: 600;
  }

  /* Modal for FB iframe */
  .news-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10050;
  }

  .news-modal.active {
    display: flex;
  }

  .news-modal-content {
    background: #F7F3EE;
    border-radius: 14px;
    padding: 16px;
    max-width: 560px;
    width: 90%;
  }

  .news-modal iframe {
    width: 100%;
    height: 600px;
    border: none;
  }


/* ============================================================================
   BUTTONS
============================================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--warm-grey);
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ghost:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.btn-full {
  width: 100%;
}

/* ============================================================================
   HERO SECTION
============================================================================ */

.hero {
  position: relative;
  margin-top: 20px;
  background: var(--beige);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 3.3vw, 2.7rem);
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--sage), var(--warm-grey));
  min-height: 260px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-image-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* ABOUT – Rating Pill + Layout Fix */

.two-col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  min-width: 220px;
}

.highlight-score {
  display: grid;
  place-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: var(--brown);
  color: #fff;
}

.score-main {
  font-size: 1.1rem;
  font-weight: 600;
}

.score-label {
  font-size: 0.72rem;
}

/* Mobile behavior */
@media (max-width: 720px) {
  .two-col-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .highlight-box {
    width: 100%;
    min-width: unset;
  }
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

.about-text p {
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-facts h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-facts ul {
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.about-facts li {
  margin-bottom: 4px;
}/* AMENITIES */
.amenity-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.amenity-category {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 12px 14px 14px;
  font-size: 0.86rem;
}
.amenity-category h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.amenity-category ul {
  padding-left: 16px;
  color: var(--text-muted);
}
.amenity-category li { margin-bottom: 3px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-item-tall {
  height: 354px;
}
.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 170px;          /* container height */
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ← Ensures perfect fit */
  display: block;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pricing-card {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 16px 16px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.pricing-card-highlight {
  background: linear-gradient(135deg, var(--terracotta), var(--brown), #d5aa7a);
  background-size: 220% 220%;
  animation: weekendCardGradient 6.5s ease-in-out infinite;
  color: #fff;
}

@keyframes weekendCardGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card-highlight {
    animation: none;
  }
}
.pricing-name {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}
.pricing-value {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.pricing-card-highlight .pricing-list { color: rgba(255,255,255,0.92); }
.pricing-list li { margin-bottom: 4px; }

/* CALENDAR */
.calendar-wrapper {
  background: var(--cream);
  border-radius: var(--radius-card);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
#availability-calendar {
  max-width: 100%;
  margin-bottom: 10px;
}
.calendar-note,
.calendar-warning {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.calendar-warning { margin-top: 4px; color: #b15b3b; }

/* REVIEWS */
.review-summary {
  display: grid;
  grid-template-columns: minmax(0,0.7fr) minmax(0,1.6fr);
  gap: 18px;
  margin-bottom: 18px;
}
.review-score-box {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 14px 14px;
  display: grid;
  place-items: center;
  text-align: center;
}
.review-score-box .score-main {
  font-size: 2rem;
  line-height: 1;
}
.review-score-box .score-label {
  font-size: 0.9rem;
}
.review-metrics {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 10px 12px;
  font-size: 0.85rem;
}
.metric {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: var(--text-muted);
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}
.review-card {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 12px 14px;
  font-size: 0.86rem;
}
.review-name {
  font-weight: 600;
  margin-bottom: 6px;
}
.review-text { color: var(--text-muted); }

/* HOST */
.host-layout {
  display: grid;
  grid-template-columns: minmax(0,0.8fr) minmax(0,1.7fr);
  gap: 18px;
}
.host-badge {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 14px 10px;
  display: grid;
  gap: 10px;
  place-items: center;
}
.host-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--terracotta));
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.host-score {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.host-score span {
  font-weight: 600;
  background: var(--brown);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
}
.host-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* BOOKING */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
}
.booking-card {
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-soft);
}
.booking-card form {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
}
.booking-card label {
  color: var(--text-muted);
}
.booking-card input,
.booking-card select,
.booking-card textarea {
  border-radius: 12px;
  border: 1px solid rgba(194,187,176,0.9);
  padding: 10px 10px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
}
.booking-card textarea {
  min-height: 80px;
  resize: vertical;
}
.booking-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.booking-info ul {
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.booking-info li { margin-bottom: 4px; }

/* FOOTER */
.footer {
  border-top: 1px solid rgba(194,187,176,0.9);
  padding: 18px 20px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-links { display: flex; gap: 10px; }
.footer-links a:hover { color: var(--brown); }


/* HOLIDAY PROMO */
.promo-section {
  background: transparent;
}
.promo-card-wrapper {
  display: flex;
  justify-content: center;
}
.promo-card {
  max-width: 640px;
  width: 100%;
  border-radius: var(--radius-card);
  background: #ffffff;
  border: 1px solid rgba(203, 197, 189, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
}
.promo-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.promo-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--text);
}
.promo-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.promo-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--terracotta);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.promo-price {
  margin-top: 6px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.promo-price-main {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
}
.promo-price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.promo-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 4px 0 8px;
  padding-left: 16px;
}
.promo-list li {
  margin-bottom: 4px;
  position: relative;
}
.promo-list li::before {
  content: "•";
  position: absolute;
  left: -10px;
  color: var(--brown);
}
.promo-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* Booking Section - OTA App Buttons */
.booking-ota-links {
  text-align: left;
}

.booking-ota-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.booking-ota-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Airbnb | Booking | Agoda */
  gap: 12px;
  width: 100%;
}

.booking-ota-btn {
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  width: 100%;
  text-align: center;
  justify-content: center;
  background-size: 200% 200%;
  animation: otaGradientFlow 7s ease-in-out infinite;
}

.booking-ota-btn:hover {
  background: #b1895f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.booking-ota-btn.airbnb {
  background-image: linear-gradient(120deg, #fd5c63 0%, #ff7f86 50%, #fd5c63 100%);
}

.booking-ota-btn.booking {
  background-image: linear-gradient(120deg, #273b7d 0%, #3e58a8 50%, #273b7d 100%);
}

.booking-ota-btn.agoda {
  background-image: linear-gradient(120deg, #b01e8d 0%, #ca3aa9 50%, #b01e8d 100%);
}

.booking-ota-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@keyframes otaGradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .booking-ota-btn {
    animation: none;
  }
}

/* ============================================================================
   RESPONSIVE
============================================================================ */

/* Hero layout */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* About */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: minmax(0,1fr); }
}

/* Amenities */
@media (max-width: 960px) {
  .amenity-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .amenity-category-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Gallery */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-item-tall { grid-row: span 1; height: 170px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: minmax(0,1fr); }
}

/* Pricing */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: minmax(0,1fr); }
}

/* Reviews */
@media (max-width: 900px) {
  .review-summary {
    grid-template-columns: minmax(0,1fr);
  }
  .review-cards {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 640px) {
  .review-cards {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Host */
@media (max-width: 900px) {
  .host-layout { grid-template-columns: minmax(0,1fr); }
}

/* Booking */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: minmax(0,1fr); }
}

/* Promo */
@media (max-width: 600px) {
  .promo-card {
    padding: 14px 14px 16px;
  }
  .promo-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop: show 2–3 cards depending on width */
@media (min-width: 780px) {
  .carousel-track .review-card {
    flex: 0 0 48%;
  }
}

@media (min-width: 1100px) {
  .carousel-track .review-card {
    flex: 0 0 32%;
  }
}
/* ============================================
   UNIVERSAL RESPONSIVE IMAGE FIX (SAFE)
   ============================================ */

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

/* Hero image — keep layout, just make responsive */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery images — keep exact grid layout */
.gallery-item img,
.gallery-item-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Any card or section image */
.section img,
.card img,
.review-card img,
.about-layout img,
.amenity-category img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0,0,0,0.15);
  border-top-color: #C69C6D;
  border-radius: 50%;
  margin: 12px auto;
  animation: spin 1s linear infinite;
}

/* ===== LOADER REFINEMENT ===== */

.loader-inner {
  text-align: center;
}

/* Logo sizing + animation */
.loader-logo {
  width: 120px;              /* smaller, balanced size */
  max-width: 70%;
  margin-bottom: 16px;
  animation: logoPulse 1.6s ease-in-out infinite;
}

/* Spinner refinement */
.loader-spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  border: 3px solid rgba(0,0,0,0.15);
  border-top-color: #C69C6D;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

/* Text */
#pageLoader p {
  font-size: 0.85rem;
  color: #8A7C6A;
  letter-spacing: 0.4px;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0%   { transform: scale(1); opacity: 0.85; }
  50%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.85; }
}

/* ================================
   RESPONSIVE REVIEW CARDS (FIXED)
================================ */

/* Carousel viewport */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(32px, 6vw, 56px) 0;
}

/* Track */
.carousel-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

/* Review card – fluid width */
.review-card {
  flex: 0 0 clamp(280px, 70vw, 640px);
  max-width: clamp(280px, 70vw, 640px);

  margin: 0 clamp(12px, 4vw, 48px);
  padding: 14px 16px;

  border-radius: var(--radius-card);
  background: var(--cream);
  border: 1px solid rgba(194,187,176,0.9);

  opacity: 0.35;
  filter: blur(4px);
  transform: scale(0.94);

  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    filter 0.45s ease;
}

/* Focused card */
.review-card.active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  z-index: 2;
}

/* Small phones */
@media (max-width: 480px) {
  .review-card {
    flex: 0 0 88vw;
    max-width: 88vw;
    margin: 0 6vw;
  }
}

html {
  scroll-behavior: smooth;
}

#top {
  scroll-margin-top: 80px; /* height of navbar */
 }

 .nav-cta-mobile {
  z-index: 10002;
}

/* Professional, low-key motion for "Book now" nav buttons */
.nav-cta,
.nav-cta-mobile {
  background: linear-gradient(120deg, #b92f28 0%, #c7362e 45%, #de5b53 55%, #c7362e 100%);
  background-size: 220% 220%;
  animation: bookNowGradientPulse 3.8s ease-in-out infinite;
  transition: box-shadow 0.22s ease, filter 0.22s ease;
}

@keyframes bookNowGradientPulse {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 0 0 0 rgba(199, 54, 46, 0);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 10px 20px rgba(199, 54, 46, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta,
  .nav-cta-mobile {
    animation: none;
  }
}

@media (min-width: 1025px) {
  .nav-cta-mobile {
    display: none;
  }
}

/* ===============================
   NAVBAR — CLEAN REBUILD
================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(254,244,234,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163,135,114,0.2);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
}

/* Desktop menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--brown);
}

/* Hamburger */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  display: block;
  margin: 5px 0;
}

/* Mobile / Tablet */
@media (max-width: 1024px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 16px;

    display: none;
    flex-direction: column;
    gap: 14px;

    background: var(--cream);
    padding: 16px;
    border-radius: 12px;
    min-width: 220px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }
}
/* FORCE Book Now text color */
.nav-links .btn-primary,
.nav-cta,
.nav-cta-mobile {
  color: #ffffff !important;
}

/* Desktop: push Book Now to the far right */
@media (min-width: 1025px) {
  .nav-links {
    margin-left: auto;
  }

  .nav-cta {
    margin-left: 16px; /* spacing from links */
  }
}

/* Hide desktop CTA inside hamburger menu */
@media (max-width: 1024px) {
  .nav-links .nav-cta {
    display: none !important;
  }
}

.promo-backdrop{
  display:none !important;
}

.promo-backdrop.show{
  opacity:1;
}

.promo-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:flex-end;        /* stick to bottom */
  justify-content:center;
  z-index:9999;
  opacity:0;
  transform:translateY(40px); /* slide up from bottom */
  transition:opacity .18s ease, transform .18s ease;
}

.promo-modal.show{
  opacity:1;
  transform:translateY(0);
}

/* Extra safety for very small screens */
@media (max-width: 480px) {
  .loader-logo {
    max-width: 140px;
    min-width: 100px;
  }
}

.promo-modal-dialog{
  margin-bottom:16px;
}

.loader-logo {
  opacity: 0;
  transform: scale(0.9);
  animation: logoIn 0.4s ease-out forwards, logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide page until loader is done */
body.preload main,
body.preload header,
body.preload footer {
  visibility: hidden;
}

/* Force loader to always be on top */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fade-out animation */
#pageLoader.hidden {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.promo-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:10;
  background:#C69C6D;        /* Albizia gold */
  color:#ffffff;
  border:2px solid #C69C6D;
  border-radius:999px;
  width:36px;
  height:36px;
  font-size:20px;
  line-height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
  transition:background .15s ease, color .15s ease, transform .15s ease;
}

.promo-close:hover{
  background:#F7F3EE;        /* cream */
  color:#2F5D54;            /* forest green */
  transform:scale(1.05);
}


/* Desktop hover zoom only */
@media (hover:hover) and (pointer:fine) {
  .gallery-item:hover img {
    transform: scale(1.08);
  }
}

/* Only disable hover zoom on touch devices */
@media (hover:none) and (pointer:coarse) {
  .gallery-item img,
  .hero-image img {
    transform: none !important;
  }
}

/* ===============================
   MOBILE TAP-TO-ZOOM (FINAL)
=============================== */

.gallery-item,
.hero-image {
  position: relative;
  overflow: hidden;
}

/* Image */
.gallery-item img,
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tap button */
.tap-to-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 50;
  display: none;
  touch-action: manipulation;
}

@media (hover:none) and (pointer:coarse) {
  .gallery-item:hover img {
    transform: none !important;
  }

  .gallery-item img,
  .hero-image img {
    pointer-events: none; /* mobile uses Tap‑to‑Zoom button */
  }
}


/* Navbar & promo always clickable */
.nav,
.nav-toggle,
.nav-links a,
.promo-close {
  pointer-events: auto;
  z-index: 100000;
}

/* ================================
   NAV LINK TAP FIX (CRITICAL)
   ================================ */

/* Force navbar to be the top-most interactive layer */
.nav {
  position: sticky;
  top: 0;
  z-index: 999999;
  pointer-events: auto;
}

/* Ensure menu itself can receive taps */
.nav-inner,
.nav-links,
.nav-links a,
.nav-toggle {
  pointer-events: auto !important;
}

/* But keep real buttons clickable */
.promo-close {
  pointer-events: auto;
}

/* On mobile: nothing is allowed to cover the nav */
@media (max-width: 1024px) {
  .gallery-item,
  .hero-image,
  .reviews-carousel,
  .promo-modal,
  .promo-backdrop {
    z-index: 1;
  }

  .nav,
  .nav-links {
    z-index: 999999;
  }
}

/* Allow clicks ONLY when overlays are visible */

/* Lightbox */
.image-lightbox {
  pointer-events: none;
}
.image-lightbox.active {
  pointer-events: auto;
}

/* Promo */
.promo-backdrop,
.promo-modal {
  pointer-events: none;
}
.promo-backdrop.show,
.promo-modal.show {
  pointer-events: auto;
}

/* Loader */
#pageLoader {
  pointer-events: auto;
}
#pageLoader.hidden {
  pointer-events: none;
}

/* === DESKTOP HERO ZOOM FIX === */
@media (min-width: 1025px) {
  .hero-image img {
    pointer-events: auto !important;
    cursor: zoom-in;
  }
}

/* === HERO CLICK FIX (SINGLE SOURCE OF TRUTH) === */
@media (min-width: 1025px) {
  .hero-image,
  .hero-image img {
    pointer-events: auto !important;
    z-index: 10;
  }
}

.hero-image-overlay {
  pointer-events: none !important;
}

.news-modal{
  position: fixed;
  inset: 0;
}

.news-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 0;
}

.news-modal-content{
  position: relative;
  z-index: 1;
}

/* ================================
   NEWS CARDS — FORCE EQUAL HEIGHT
================================ */

/* Make grid rows equal height */
.news-grid {
  align-items: stretch;
}

/* Make each card fill its grid cell */
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Let the text area expand so footer aligns */
.news-text-preview {
  flex: 1;
}
/* ===============================
   NEARBY ATTRACTIONS — 3 PER ROW
================================ */

.attractions-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2.5vw, 24px);
}

.attractions-grid li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: left;
}

/* Tablet */
@media (max-width: 900px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 520px) {
  .attractions-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   NEARBY ATTRACTIONS — SAFE FULL WIDTH
================================ */

/* Let section follow main layout */
#nearby-attractions {
  width: 100%;
}

/* Stretch only the grid visually */
#nearby-attractions .attractions-grid {
  max-width: 100%;
  margin: 0 auto;
}

/* Keep inner padding consistent */
#nearby-attractions .section-header,
#nearby-attractions .about-layout {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}


/* ===============================
   HERO ACTIONS — SINGLE SOURCE
   Right‑most corner inside HERO
================================ */

.hero {
  position: relative;
}

.hero-actions-top {
  position: absolute;
  top: 10px;
  right: 20px;

  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  z-index: 20;
}

/* Like */
.hero-like-wrapper {
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid var(--warm-grey);
  border-radius: 999px;
  box-shadow: none;
  width: auto;
}

/* Heart */
.hero-like-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
  font-size: 0.9rem;
}
.hero-like-wrapper:hover {
  background: var(--cream);
}

/* Counter */
.hero-like-count {
  padding: 2px 8px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}

/* Share */
.hero-share-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--warm-grey);
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: none;
  white-space: nowrap;
}

.hero-share-btn:hover {
  background: var(--cream);
}

.hero-share-menu {
  position: absolute;
  top: calc(100% + 8px); /* below buttons */
  right: 0;
  background: var(--cream);
  border: 1px solid rgba(194, 187, 176, 0.95);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  z-index: 10020;
}

.hero-share-menu-btn {
  width: 35px;
  height: 35px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--warm-grey);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.hero-share-menu-btn:hover {
  background: var(--cream);
  border-color: var(--brown);
}

.hero-share-menu[hidden] {
  display: none !important;
}

.hero-follow-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--warm-grey);
  border-radius: 999px;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  box-shadow: none;
  white-space: nowrap;
}

.hero-follow-btn:hover {
  background: var(--cream);
}

h2{
padding-bottom: 10px;
}

.reviews-carousel {
  overflow: hidden;
}

.reviews-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  transition: transform 0.6s ease;
}

/* SEASONAL CTA STRIP – CENTERED & NON-INTRUSIVE */
.seasonal-cta {
  width: 100%;
  background: linear-gradient(90deg, #5a8f7b, #7fb9a6);
}

.seasonal-cta p {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffffff;
}

.seasonal-cta strong {
  font-weight: 600;
}

.seasonal-cta-link {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 500;
}

.seasonal-cta-link:hover {
  opacity: 0.9;
}

/* CTA TEXT ANIMATION – SUBTLE & SAFE */
.seasonal-cta p {
  animation: ctaFadeSlide 6s ease-in-out infinite;
}

@keyframes ctaFadeSlide {
  0% {
    opacity: 0.85;
    transform: translateY(0);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
    transform: translateY(0);
  }
  55% {
    opacity: 0.9;
    transform: translateY(-2px);
  }
  100% {
    opacity: 0.85;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seasonal-cta p {
    animation: none;
  }
}

/* CTA STRIP LOAD-IN VISIBILITY */
.seasonal-cta.cta-hidden {
  opacity: 0;
}

.seasonal-cta.cta-visible {
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* LOCATION MODAL – CENTERED, NAV-SAFE */
.location-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000001;
}

.location-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 84px 16px 20px;
}

.location-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.location-modal-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 108px);
  overflow: auto;
  background: var(--cream);
  border: 1px solid rgba(194, 187, 176, 0.9);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.location-modal-map {
  width: 100%;
  height: min(70vh, 620px);
  background: #ffffff;
  border: 1px solid rgba(194, 187, 176, 0.9);
  border-radius: 12px;
  overflow: hidden;
}

.location-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile refinement */
@media (max-width: 640px) {
  .location-modal.active {
    padding-top: 76px;
  }

  .location-modal-content {
    max-height: calc(100vh - 92px);
    padding: 14px;
  }

  .location-modal-map {
    height: calc(100vh - 140px);
  }
}

/* BOOKING MODAL */
.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000001;
}

.booking-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 84px 16px 20px;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.booking-modal-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 108px);
  overflow: auto;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(194, 187, 176, 0.9);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  padding: 18px 18px 20px;
}

.booking-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #e7dfd6;
  color: #2a2a2a;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 1010;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.booking-modal-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.booking-modal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 4px;
}

.booking-help {
  position: static;
}

.booking-help-btn {
  border: 1px solid rgba(194, 187, 176, 0.95);
  background: #fff;
  color: var(--text-muted);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
}

.booking-help-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: auto;
  left: 12px;
  width: auto;
  max-width: 480px;
  margin-left: 0;
  max-height: min(52vh, calc(100vh - 180px));
  overflow: auto;
  margin-top: 0;
  background: #fff;
  border: 1px solid rgba(194, 187, 176, 0.95);
  border-radius: 12px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  padding: 12px 12px 12px 14px;
  z-index: 1005;
  display: none;
}

.booking-help-popover h4 {
  margin: 0 0 6px;
  font-size: 0.92rem;
}

.booking-help-popover ul {
  margin: 0;
  padding-left: 16px;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.booking-help-popover li {
  margin-bottom: 4px;
}

.booking-help:hover .booking-help-popover,
.booking-help:focus-within .booking-help-popover {
  display: block;
}

.booking-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.booking-modal-ota {
  background: #fff;
  border: 1px solid rgba(194, 187, 176, 0.9);
  border-radius: 14px;
  padding: 14px;
}

.booking-modal-ota .booking-ota-buttons {
  grid-template-columns: 1fr;
}

@media (max-width: 920px) {
  .booking-modal.active {
    padding-top: 76px;
  }

  .booking-modal-head {
    align-items: flex-start;
  }

  .booking-modal-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-modal-content {
    max-height: calc(100vh - 92px);
  }

  .booking-modal-ota .booking-ota-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .booking-modal-ota .booking-ota-buttons {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* IMAGE MODAL — MATCH BOOKING MODAL THEME */
.image-lightbox {
  background: rgba(0, 0, 0, 0.62);
  z-index: 1000001;
  align-items: flex-start;
  justify-content: center;
  padding: 84px 16px 20px;
}

.image-lightbox img {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 108px);
  object-fit: contain;
  background: var(--cream);
  border: 1px solid rgba(194, 187, 176, 0.9);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .image-lightbox {
    padding-top: 76px;
  }

  .image-lightbox img {
    max-height: calc(100vh - 92px);
    padding: 10px;
  }
}

/* NEWS MODAL — MATCH BOOKING MODAL THEME */
.news-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000001;
}

.news-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 84px 16px 20px;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.news-modal-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: var(--cream);
  border: 1px solid rgba(194, 187, 176, 0.9);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.news-modal iframe {
  display: block;
  width: 100%;
  height: min(80svh, calc(100svh - 190px));
  min-height: 420px;
  overflow: auto;
  border: 1px solid rgba(194, 187, 176, 0.9);
  border-radius: 12px;
  background: #ffffff;
}

@media (max-width: 640px) {
  .news-modal.active {
    padding-top: 76px;
  }

  .news-modal-content {
    max-height: calc(100vh - 92px);
    padding: 14px;
  }

  .news-modal iframe {
    height: min(72svh, calc(100svh - 150px));
    min-height: 360px;
  }
}

/* HERO IMAGE ROTATOR TRANSITION */
.hero-image .hero-image-main,
.hero-image .hero-image-next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-image .hero-image-main {
  z-index: 1;
  transform: translateX(0);
}

.hero-image .hero-image-next {
  z-index: 2;
  transform: translateX(100%);
  pointer-events: none;
}

.hero-image .hero-image-next.is-visible {
  transform: translateX(0);
}

.hero-image .hero-image-main.is-sliding {
  transform: translateX(-100%);
}

.hero-image .hero-image-main.is-resetting {
  transition: none !important;
  transform: translateX(0) !important;
}

.hero-image .hero-image-next.is-resetting {
  transition: none !important;
  transform: translateX(100%) !important;
}
