/* ═══════════════════════════════════════════════
   Chapter 50 — Sakeena
   Elegant & Celebratory Theme
   Colors: Deep Navy · Champagne Gold · Warm Ivory
═══════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5EDD6;
  --navy: #1A2744;
  --navy-light: #243258;
  --ivory: #FAF8F3;
  --text: #2C2C2C;
  --text-light: #666;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.1em;
  font-weight: 300;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── PAGES ─────────────────────────────────────── */
.page { display: none; min-height: 100vh; padding-top: 64px; }
.page.active { display: block; }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  background: linear-gradient(135deg, var(--navy) 0%, #2A1F3D 50%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 60px 24px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--white);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.hero-title .gold { color: var(--gold); }

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-top: 12px;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 28px auto;
}

.hero-message {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}
.hero-message em { color: var(--gold); font-style: italic; }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.btn-gold.small { padding: 10px 22px; font-size: 0.72rem; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── HIGHLIGHTS (HOME) ──────────────────────────── */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  background: var(--navy);
}
.highlight-card {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.3s;
}
.highlight-card:last-child { border-right: none; }
.highlight-card:hover { background: var(--navy-light); }
.highlight-icon { font-size: 2rem; margin-bottom: 12px; }
.highlight-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.highlight-card p { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

/* ── PAGE HEADER ────────────────────────────────── */
.page-header {
  text-align: center;
  padding: 70px 24px 50px;
  background: var(--navy);
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}
.page-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 20px;
  line-height: 1.7;
}
.gold { color: var(--gold); }

/* ── TIMELINE ───────────────────────────────────── */
.timeline {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-pale), var(--gold), var(--gold-pale));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item.right { justify-content: flex-start; }

.timeline-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  top: 20px;
  white-space: nowrap;
  z-index: 2;
}

.timeline-card {
  width: 42%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.timeline-card:hover { transform: translateY(-4px); }

.photo-slot { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gold-pale); }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, #F5EDD6, #EEE3C3);
  color: #9A8050;
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
  gap: 6px;
}
.photo-placeholder small { font-size: 0.65rem; opacity: 0.7; }
.photo-placeholder.tall { position: relative; min-height: 280px; }
.photo-placeholder.small { font-size: 1.5rem; }

.timeline-text { padding: 24px; }
.timeline-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ── ABOUT ──────────────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 960px;
  margin: 60px auto;
  padding: 0 24px;
  align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}
.about-text em { color: var(--gold); font-style: italic; }
.about-text strong { color: var(--navy); }

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--gold-pale);
  border-radius: 0 8px 8px 0;
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 6px;
}
.quote-block span { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }

.signature {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 24px;
}
.signature span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--navy);
  font-style: italic;
  display: block;
  margin-top: 4px;
}

/* ── SEND LOVE ──────────────────────────────────── */
.excursion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 60px auto 40px;
  padding: 0 24px;
}
.excursion-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s;
}
.excursion-card:hover { transform: translateY(-4px); }
.excursion-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(to bottom, #FFFDF5, var(--white));
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.excursion-icon { font-size: 2.5rem; margin-bottom: 12px; }
.excursion-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.excursion-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.excursion-cost { color: var(--gold) !important; font-weight: 600 !important; font-size: 0.88rem !important; }

.jungle-box {
  background: linear-gradient(135deg, #1A3D2B, #0F2419);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  border: 1px solid rgba(201,168,76,0.25);
}
.jungle-icon { font-size: 3rem; margin-bottom: 16px; }
.jungle-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
}
.jungle-box p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.jungle-box strong { color: var(--gold); }
.jungle-box .btn-gold { margin-top: 10px; }

.cashapp-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 70px;
}
.cashapp-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 16px; }
.cashapp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
}
.cashapp-icon { color: var(--gold); font-weight: 700; }
.cashapp-note { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 16px; line-height: 1.6; }

/* ── PHOTO WALL ─────────────────────────────────── */
.photo-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 50px auto 40px;
  padding: 0 24px;
}
.wall-photo-slot {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gold-pale);
  position: relative;
}
.wall-photo-slot img { width: 100%; height: 100%; object-fit: cover; }

.submit-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 560px;
  margin: 0 auto 70px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  text-align: center;
}
.submit-form-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.submit-form-box p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 28px; }

.photo-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.photo-form input[type="text"],
.photo-form input[type="email"] {
  padding: 13px 18px;
  border: 1px solid #DDD;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border 0.2s;
}
.photo-form input:focus { border-color: var(--gold); }

.file-label {
  display: block;
  cursor: pointer;
}
.file-label input[type="file"] { display: none; }
.file-label span {
  display: block;
  padding: 13px 18px;
  border: 1.5px dashed var(--gold);
  border-radius: 8px;
  text-align: center;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
}
.file-label:hover span { background: var(--gold-pale); }
.photo-form .btn-gold { width: 100%; text-align: center; }

/* ── COSTA RICA DIARIES ─────────────────────────── */
.diaries-container {
  max-width: 760px;
  margin: 60px auto 70px;
  padding: 0 24px;
}
.coming-soon-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
}
.cs-icon { font-size: 3.5rem; margin-bottom: 20px; }
.coming-soon-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.coming-soon-box p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 0.9rem; }
.countdown {
  margin-top: 28px;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.diary-entry {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: 40px;
}
.diary-date {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
}
.diary-photo img { width: 100%; max-height: 400px; object-fit: cover; }
.diary-text { padding: 28px 32px; }
.diary-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.diary-text p { font-size: 0.9rem; line-height: 1.85; color: var(--text); }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--navy);
  text-align: center;
  padding: 50px 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.footer-sub { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 8px; }
.footer-love { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 20px; }
  .nav-toggle { display: block; }
  #navbar { padding: 0 20px; }

  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item.right { justify-content: flex-start; padding-left: 50px; }
  .timeline-badge { left: 20px; top: -10px; }
  .timeline-card { width: 100%; }

  .about-content { grid-template-columns: 1fr; }
  .about-photo { max-height: 300px; aspect-ratio: unset; }

  .cashapp-box { margin: 0 24px 60px; padding: 36px 24px; }
  .submit-form-box { margin: 0 24px 60px; padding: 36px 24px; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .highlight-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
