/* ============================================
   Nature Hideaway — Promotional Landing Page
   ============================================ */

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

:root {
  --green-dark: #1a3c2a;
  --green-mid: #2d5a3f;
  --green-light: #4a7c5c;
  --green-pale: #e8f0eb;
  --gold: #c8a951;
  --gold-light: #e2ca7a;
  --cream: #faf8f2;
  --warm: #f5f0e8;
  --purple: #2d1b4e;
  --purple-mid: #3d2860;
  --pink: #e84393;
  --pink-gradient: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --red: #c0392b;
  --red-light: #e74c3c;
  --border: #e0dcd4;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--green-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-dark);
}

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

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   Floating Navigation
   ============================================ */
.nav-float {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: all 0.4s ease;
}

.nav-float.scrolled {
  background: rgba(26, 60, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-logo svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--white) !important;
  color: var(--green-dark) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(26, 60, 42, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-menu a {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--font-display);
}

.nav-cta-mobile {
  margin-top: 1rem;
  display: inline-block;
  background: var(--white);
  color: var(--green-dark) !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1a2e1a;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.5) 80%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5);
  letter-spacing: -1px;
  line-height: 1.05;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--white);
  color: var(--green-dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  color: var(--green-dark);
  background: var(--gold-light);
}

.btn-book-lg {
  padding: 1.1rem 3rem;
  font-size: 1.15rem;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.btn-explore:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-stat span {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-mid);
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   The Experience Section
   ============================================ */
.experience {
  padding: 6rem 0;
  background: var(--white);
}

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

.exp-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(0,0,0,0.04);
}

.exp-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.exp-featured {
  grid-column: span 1;
  background: var(--green-dark);
  color: var(--white);
}

.exp-featured:hover {
  background: var(--green-dark);
}

.exp-featured .exp-icon {
  color: var(--gold-light);
}

.exp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  color: var(--green-mid);
}

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: inherit;
}

.exp-featured h3 {
  color: var(--white);
}

.exp-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.exp-featured p {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   Amenities Scrolling Bar
   ============================================ */
.amenities-bar {
  background: var(--green-dark);
  padding: 1.2rem 0;
  overflow: hidden;
}

.amenities-scroll {
  display: flex;
  gap: 1.5rem;
  animation: scroll-x 30s linear infinite;
  width: max-content;
}

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
  padding: 6rem 0;
  background: var(--cream);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.8rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gi-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

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

.gallery-cta a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-mid);
  transition: color var(--transition);
}

.gallery-cta a:hover {
  color: var(--green-dark);
}

/* ============================================
   Explore the Area
   ============================================ */
.explore-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.explore-card {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.explore-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.explore-card-img {
  width: 140px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.explore-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.explore-card-body {
  padding: 1.5rem;
  flex: 1;
}

.explore-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.explore-distance {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}

.explore-card-body p:last-child {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, #1a3c2a 0%, #2d5a3f 100%);
  color: var(--white);
}

.reviews-section .section-eyebrow {
  color: var(--gold-light);
}

.reviews-section .section-header h2 {
  color: var(--white);
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-summary span {
  font-size: 0.95rem;
  opacity: 0.8;
}

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

.review-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}

.review-top {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.review-tag {
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  opacity: 0.6;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews-cta a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
}

.reviews-cta a:hover {
  color: var(--white);
}

/* ============================================
   Location Section
   ============================================ */
.location-section {
  padding: 6rem 0;
  background: var(--cream);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e8f0eb 0%, #d4e6d9 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-pin {
  font-size: 3rem;
  animation: bounce 2s infinite;
}

.map-placeholder p {
  font-weight: 600;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.map-sub {
  font-weight: 400 !important;
  color: var(--text-mid) !important;
  font-size: 0.9rem !important;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-detail svg {
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.location-detail p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ============================================
   Final CTA Section
   ============================================ */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/gallery-3.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 60, 42, 0.92), rgba(45, 27, 78, 0.88));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-content > p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ============================================
   Email Capture Section (Homepage)
   ============================================ */
.email-capture-section {
  padding: 4rem 0;
  background: var(--white);
}

.email-capture-card {
  background: linear-gradient(160deg, #1a3c2a 0%, #2d5a3f 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.email-capture-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-capture-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.email-capture-icon svg {
  color: var(--gold-light);
}

.email-capture-text {
  flex: 1;
  min-width: 200px;
}

.email-capture-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.email-capture-text p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.email-capture-form {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.email-capture-inputs {
  display: flex;
  gap: 0.5rem;
}

.email-capture-inputs input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.email-capture-inputs input::placeholder {
  color: rgba(255,255,255,0.5);
}

.email-capture-inputs input:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.15);
}

.email-capture-inputs button {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.email-capture-inputs button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.email-capture-inputs button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.email-capture-msg {
  font-size: 0.85rem;
  margin-top: 0.6rem;
  min-height: 1.2rem;
}

.email-capture-msg.success {
  color: var(--gold-light);
}

.email-capture-msg.error {
  color: #ff8a8a;
}

@media (max-width: 768px) {
  .email-capture-card {
    padding: 2rem;
  }
  .email-capture-content {
    flex-direction: column;
    text-align: center;
  }
  .email-capture-form {
    width: 100%;
    max-width: none;
  }
  .email-capture-inputs {
    flex-direction: column;
  }
  .email-capture-inputs button {
    width: 100%;
  }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #0d1f15;
  padding: 3rem 2rem;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ============================================
   Scroll Animations (already handled by observer)
   ============================================ */
.exp-card, .explore-card, .review-card {
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.exp-card:nth-child(1) { --i: 0; }
.exp-card:nth-child(2) { --i: 1; }
.exp-card:nth-child(3) { --i: 2; }
.exp-card:nth-child(4) { --i: 3; }
.exp-card:nth-child(5) { --i: 4; }
.exp-card:nth-child(6) { --i: 5; }
.explore-card:nth-child(1) { --i: 0; }
.explore-card:nth-child(2) { --i: 1; }
.explore-card:nth-child(3) { --i: 2; }
.explore-card:nth-child(4) { --i: 3; }
.review-card:nth-child(1) { --i: 0; }
.review-card:nth-child(2) { --i: 1; }
.review-card:nth-child(3) { --i: 2; }
.gallery-item:nth-child(1) { --i: 0; }
.gallery-item:nth-child(2) { --i: 1; }
.gallery-item:nth-child(3) { --i: 2; }
.gallery-item:nth-child(4) { --i: 3; }
.gallery-item:nth-child(5) { --i: 4; }
.gallery-item:nth-child(6) { --i: 5; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-featured {
    grid-column: span 2;
  }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .gi-large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero-tagline {
    font-size: 1.15rem;
  }
  .hero-sub br { display: none; }
  .hero-stats {
    gap: 1rem;
    padding: 0.8rem 1.2rem;
  }
  .hero-stat strong { font-size: 1.1rem; }
  .hero-stat span { font-size: 0.7rem; }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .exp-featured {
    grid-column: span 1;
  }
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .explore-card {
    flex-direction: column;
  }
  .explore-card-img {
    width: 100%;
    min-height: 120px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
  .gi-large {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 0.6rem;
    max-width: 320px;
  }
  .hero-stat-divider { display: none; }
  .section-container { padding: 0 1.2rem; }
}

/* ============================================
   Friends Check-in Pages (legacy)
   Keep existing styles for /friends, /checkin etc.
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(26, 60, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.navbar-brand svg {
  width: 28px;
  height: 28px;
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navbar-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.3rem 0;
}

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

/* Page Layout (Check-in, Checkout, Stay, Admin, Friends) */
.page {
  padding-top: 80px;
  min-height: 100vh;
}

.page-container {
  max-width: 640px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.page-container.wide {
  max-width: 960px;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.card-header h2 {
  font-family: var(--font-body);
  color: var(--green-dark);
  font-size: 1.5rem;
}

.card-header svg {
  width: 28px;
  height: 28px;
  color: var(--green-mid);
  flex-shrink: 0;
}

/* Forms */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}

.code-display {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
  letter-spacing: 12px;
  padding: 1.5rem;
  background: var(--green-pale);
  border-radius: var(--radius);
  margin: 1rem 0;
  font-family: 'Courier New', monospace;
}

/* Buttons (legacy pages) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--pink-gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 67, 147, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 67, 147, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50px;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-danger {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.btn-danger:hover { background: var(--red-light); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  border-radius: var(--radius-sm);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Checklist */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.checklist li:last-child { border-bottom: none; }
.checklist input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--green-mid);
  flex-shrink: 0;
  cursor: pointer;
}
.checklist label { cursor: pointer; font-size: 0.95rem; }

/* Missing items */
.missing-items-area { margin-top: 1rem; }
.missing-item-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.missing-item-row input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.missing-item-row input:focus { outline: none; border-color: var(--green-mid); }
.missing-item-row button {
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0 0.5rem;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-green { background: var(--green-pale); color: var(--green-mid); }
.badge-gold { background: #fef3cd; color: #856404; }
.badge-red { background: #fde8e8; color: var(--red); }

/* Alerts */
.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #fde8e8; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #e8f0eb; color: var(--green-dark); border: 1px solid #c3d9cc; }

/* Admin */
.admin-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}
.admin-tab {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.admin-tab:hover { color: var(--green-mid); }
.admin-tab.active {
  color: var(--green-dark);
  border-bottom-color: var(--green-mid);
}
.admin-panel { display: none; }
.admin-panel.active { display: block; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-dark);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 0.2rem;
}

.table-wrap { overflow-x: auto; margin: 1rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table th, table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid #f0f0f0; }
table th {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  position: sticky;
  top: 0;
}
table tr:hover { background: #f9f9f9; }

.manage-list { list-style: none; }
.manage-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.manage-list li:last-child { border-bottom: none; }
.manage-list .item-name { font-size: 0.95rem; }
.manage-list .item-name.inactive { color: var(--text-light); text-decoration: line-through; }
.manage-list .item-origin {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
  font-style: italic;
}
.manage-list .item-actions { display: flex; gap: 0.5rem; }

.add-form { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.add-form input {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.add-form input:focus { outline: none; border-color: var(--green-mid); }

.success-screen { text-align: center; padding: 3rem 2rem; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; color: var(--green-mid); }
.success-screen h2 { color: var(--green-dark); margin-bottom: 0.5rem; }
.success-screen p { color: var(--text-mid); margin-bottom: 2rem; }

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--green-mid);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* Friends page responsive */
@media (max-width: 768px) {
  .navbar { padding: 0.8rem 1.2rem; }
  .card { padding: 1.5rem; }
  .page-container { padding: 0 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-tabs { overflow-x: auto; }
  .admin-tab { padding: 0.8rem 1rem; font-size: 0.85rem; white-space: nowrap; }
  .code-display { font-size: 2.2rem; letter-spacing: 8px; }
}

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

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.03);
  color: var(--text-light);
  font-size: 0.85rem;
  gap: 0.5rem;
}
.gallery-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

/* ============================================
   Analytics Dashboard
   ============================================ */
.analytics-period-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.period-btn {
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.period-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}

.period-btn.active {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

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

.chart-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.chart-card.wide {
  grid-column: span 2;
}

.chart-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .analytics-charts {
    grid-template-columns: 1fr;
  }
  .chart-card.wide {
    grid-column: span 1;
  }
  .analytics-tables {
    grid-template-columns: 1fr;
  }
}
