/* Harrapool Hideout Skye — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --dark-teal:  #30585A;
  --deep-teal:  #1F3E40;
  --amber:      #BE7A30;
  --light-bg:   #E4EAEA;
  --warm-sand:  #D6BC9E;
  --white:      #ffffff;
  --text:       #2D2D2D;
  --muted:      #5C6260;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #D8E2E2;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar .logo img { height: 130px; width: auto; object-fit: contain; }
.top-bar .contact-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.top-bar .contact-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark-teal);
}
.top-bar .contact-strip .item a { color: var(--dark-teal); text-decoration: none; }
.top-bar .contact-strip .item a:hover { color: var(--amber); }

/* ── TOP BAR BOOK BUTTON ── */
.btn-top-book {
  display: inline-block;
  background: var(--amber);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-top-book:hover { background: #a5692a; }

/* ── NAV ── */
.site-nav {
  background: var(--deep-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 4px;
}
.site-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 22px;
  display: block;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.site-nav a.book-nav {
  color: var(--warm-sand);
  margin-left: auto;
}
.site-nav a.book-nav:hover { color: var(--white); }

/* ── HERO CAROUSEL ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,62,64,0.3) 0%, rgba(31,62,64,0.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 100%;
  padding: 0 20px;
}
.hero-content .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}
.hero-dots .dot.active { background: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #a5692a; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--deep-teal);
  padding: 13px 36px;
  border: 2px solid var(--deep-teal);
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--deep-teal); color: var(--white); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--deep-teal);
  color: var(--white);
  padding: 26px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--warm-sand); flex-shrink: 0; }
.stat-text .num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; line-height: 1; display: block; }
.stat-text .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.6; margin-top: 3px; display: block; }

/* ── SECTION HEADINGS ── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--deep-teal);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 640px;
}

/* ── INTRO / ABOUT ── */
.intro-section {
  padding: 90px 40px;
  background: var(--white);
}
.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.intro-text .section-body + .section-body { margin-top: 16px; }
.intro-text .cta-row { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── AMENITIES ── */
.amenities-section {
  padding: 80px 40px;
  background: var(--light-bg);
}
.amenities-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.amenities-header { text-align: center; margin-bottom: 50px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenity-card {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  border-bottom: 3px solid var(--dark-teal);
}
.amenity-card .icon { color: var(--dark-teal); margin-bottom: 12px; }
.amenity-card h4 { font-size: 13px; font-weight: 600; color: var(--deep-teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.amenity-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── GALLERY PREVIEW ── */
.gallery-section {
  padding: 80px 40px;
  background: var(--white);
}
.gallery-header { max-width: 1100px; margin: 0 auto 48px; text-align: center; }
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item { overflow: hidden; border-radius: 2px; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cta { text-align: center; margin-top: 36px; }

/* ── REVIEWS ── */
.reviews-section {
  padding: 80px 40px;
  background: var(--deep-teal);
  color: var(--white);
  overflow: hidden;
}
.reviews-header { max-width: 1100px; margin: 0 auto 50px; text-align: center; }
.reviews-header .section-title { color: var(--white); }
.reviews-track-wrapper { max-width: 1100px; margin: 0 auto; }
.reviews-track { display: block; }
.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 36px 32px;
  width: 100%;
  display: none;
}
.review-card.active { display: block; }
.review-stars { color: var(--amber); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.75; opacity: 0.88; font-style: italic; margin-bottom: 24px; }
.review-author { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-sand); }
.review-nav { max-width: 1100px; margin: 36px auto 0; display: flex; justify-content: center; gap: 12px; }
.review-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.review-btn:hover { background: rgba(255,255,255,0.1); }

/* ── BOOK CTA ── */
.book-section {
  position: relative;
  padding: 110px 40px;
  text-align: center;
  background: url('/images/hero-3.jpg') center/cover no-repeat;
  color: var(--white);
}
.book-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(31,62,64,0.68);
}
.book-content { position: relative; z-index: 2; }
.book-content .section-eyebrow { color: var(--warm-sand); }
.book-content .section-title { color: var(--white); margin: 0 auto 20px; max-width: 700px; }
.book-content p { opacity: 0.85; font-size: 15px; margin-bottom: 36px; }
.book-content .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--deep-teal);
  padding: 70px 40px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.page-hero p { font-size: 15px; opacity: 0.8; }

/* ── FOOTER BOOK CTA ── */
.footer-cta {
  background: var(--amber);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  text-align: center;
}
.footer-cta p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}
.btn-footer-cta {
  display: inline-block;
  background: var(--white);
  color: var(--amber);
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-footer-cta:hover { background: var(--deep-teal); color: var(--white); }

/* ── FOOTER ── */
.site-footer {
  background: #162E30;
  color: rgba(255,255,255,0.72);
  padding: 60px 40px 28px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-sand);
  margin-bottom: 20px;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--white); }
.footer-logo { height: 90px; width: auto; margin-bottom: 18px; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; border-radius: 2px; }
#lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.8); font-size: 36px; line-height: 1;
  cursor: pointer; background: none; border: none; font-family: sans-serif;
  transition: color 0.2s;
}
#lightbox-close:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .top-bar { padding: 12px 20px; }
  .top-bar .contact-strip { display: none; }
  .site-nav { justify-content: flex-start; padding: 0; overflow-x: auto; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { gap: 20px; padding: 28px 20px; }
  .stats-band { flex-wrap: wrap; }
  .stat-item { padding: 10px 20px; }
}
@media (max-width: 640px) {
  .hero { height: 80vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .intro-section, .amenities-section, .gallery-section, .reviews-section, .book-section { padding-left: 20px; padding-right: 20px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; gap: 16px; }
  .stats-band { flex-direction: column; align-items: center; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; }
  .stat-item:last-child { border-bottom: none; }
}
