/* ===========================
   WEDDING INVITATION - STYLE
   Risky & Anita | 31.03.2026
   =========================== */

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

:root {
  --gold: #C9A962;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7A3C;
  --cream: #FAF7F2;
  --dark: #2A2016;
  --brown: #5C3D2E;
  --gray: #8A8A8A;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(42,32,22,0.12);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; border: none; outline: none; }

/* --- Scroll Progress --- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999; width: 0%; transition: width 0.1s;
}

/* --- Toast --- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--dark); color: var(--white);
  padding: 12px 24px; border-radius: 30px;
  font-size: 14px; z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* --- Hidden --- */
.hidden { display: none !important; }

/* ===========================
   COVER PAGE
   =========================== */
.cover {
  position: fixed; inset: 0; z-index: 1000;
  background: linear-gradient(160deg, #1a1208 0%, #2d1f0e 50%, #3d2a14 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.77,0,0.18,1);
}
.cover.closing {
  opacity: 0; transform: translateY(-100%);
  pointer-events: none;
}

.cover-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,98,0.08) 0%, transparent 70%);
}

/* Petals */
.cover-petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

@keyframes petalFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.petal {
  position: absolute; top: -20px;
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50% 0 50% 0;
  animation: petalFall linear infinite;
  opacity: 0;
}

/* Cover Content */
.cover-content {
  position: relative; z-index: 1;
  text-align: center; padding: 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cover-pretitle {
  color: var(--gold-light); font-family: var(--font-serif);
  font-size: clamp(0.75rem, 2vw, 0.95rem); letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 1rem;
}

.cover-names {
  font-family: var(--font-serif); 
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
  margin-bottom: 1rem;
}
.cover-names span { color: var(--gold); font-style: italic; }

.cover-line {
  width: 80px; height: 1px; background: var(--gold);
  margin: 0 auto 1rem; opacity: 0.6;
}

.cover-date {
  color: var(--gold-light); font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem); letter-spacing: 0.3em; margin-bottom: 2rem;
}

.cover-dear {
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(201,169,98,0.3);
  border-radius: var(--radius);
  background: rgba(201,169,98,0.05);
}
.cover-dear-label {
  color: var(--gold-light); 
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cover-dear-name {
  color: var(--white); font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.4rem); font-weight: 400; font-style: italic;
}

.btn-open {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,169,98,0.4);
}
.btn-open:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,98,0.5);
}

/* ===========================
   MAIN CONTENT
   =========================== */
.main { position: relative; }

/* Music Button */
.music-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,169,98,0.5);
  transition: all 0.3s ease;
}
.music-btn:hover { transform: scale(1.1); }
.music-btn.playing .music-icon { animation: spin 3s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal        { transform: translateY(60px); }
.reveal-left   { transform: translateX(-60px); }
.reveal-right  { transform: translateX(60px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ===========================
   HERO
   =========================== */
.hero {
  height: 100vh; min-height: 600px;
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #1a1208 0%, #2d1f0e 60%, #3d2a14 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,169,98,0.12) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 1; text-align: center; padding: 2rem;
  animation: fadeInUp 1.2s ease both;
}

.hero-pretitle {
  color: var(--gold-light); font-family: var(--font-serif);
  font-size: clamp(0.75rem, 2vw, 0.9rem); letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}

.hero-names {
  font-family: var(--font-serif); 
  font-size: clamp(2.5rem, 10vw, 7rem);
  font-weight: 300; color: var(--white); line-height: 1.1;
}
.hero-names em { color: var(--gold); font-style: italic; }

.hero-date {
  color: var(--gold-light); font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem); letter-spacing: 0.4em;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.hero-scroll {
  position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.15em;
  animation: bounce 2s ease infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   SECTIONS COMMON
   =========================== */
section { 
  padding: 80px 20px; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container { max-width: 720px; margin: 0 auto; }

.section-title {
  font-family: var(--font-serif); 
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400; color: var(--dark);
  text-align: center; margin-bottom: 0.5rem;
}
.section-title::after {
  content: ''; display: block;
  width: 50px; height: 2px; background: var(--gold);
  margin: 12px auto 0;
}

.section-sub {
  text-align: center; color: var(--gray);
  font-size: clamp(0.8rem, 2vw, 0.9rem); 
  margin-bottom: 2.5rem; margin-top: 0.5rem;
}

/* ===========================
   AYAT
   =========================== */
.ayat { background: var(--dark); color: var(--white); }
.ayat .container { text-align: center; }
.ornament { color: var(--gold); font-size: 2rem; margin-bottom: 1.5rem; }
.arabic {
  font-family: 'Scheherazade New', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  direction: rtl; line-height: 2.2;
  color: var(--gold-light); margin-bottom: 1.5rem;
}
.translation {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; line-height: 1.8;
  max-width: 600px; margin: 0 auto 1rem;
}
.reference { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,98,0.2);
  display: flex; justify-content: center; gap: 0;
  padding: 0; transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.navbar.visible { transform: translateY(0); }
.navbar a {
  color: var(--dark); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; padding: 14px 16px;
  transition: color 0.2s;
}
.navbar a:hover { color: var(--gold); }

/* ===========================
   COUPLE
   =========================== */
.couple { background: var(--white); }
.couple-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap; max-width: 700px; margin: 2rem auto 0;
}
.person { text-align: center; flex: 1; min-width: 160px; }
.photo-ring {
  width: 160px; height: 160px; border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 6px; margin: 0 auto 1rem;
  box-shadow: 0 8px 30px rgba(201,169,98,0.25);
  overflow: hidden;
}
.photo-ring img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.person h3 {
  font-family: var(--font-serif); 
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 400; color: var(--dark); margin-bottom: 0.4rem;
}
.person-info { color: var(--gray); font-size: clamp(0.7rem, 1.8vw, 0.8rem); }
.person-parents { color: var(--brown); font-size: clamp(0.8rem, 2vw, 0.9rem); font-weight: 500; }
.couple-and {
  font-family: var(--font-serif); 
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--gold); line-height: 1; flex-shrink: 0;
}

/* ===========================
   STORY TIMELINE
   =========================== */
.story { background: var(--cream); }
.timeline { max-width: 600px; margin: 2rem auto 0; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.tl-item {
  display: flex; align-items: flex-start;
  gap: 1.5rem; margin-bottom: 2.5rem;
  position: relative;
}
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-dot {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0; z-index: 1;
  box-shadow: 0 4px 12px rgba(201,169,98,0.2);
}
.tl-content {
  flex: 1; background: var(--white);
  padding: 1.2rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tl-content h3 {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--dark); margin-bottom: 0.3rem;
}
.tl-date { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.tl-content p:last-child { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ===========================
   EVENT
   =========================== */
.event { background: var(--dark); }
.event .section-title { color: var(--white); }
.event-cards {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center; max-width: 700px; margin: 2rem auto 0;
}
.event-card {
  flex: 1; min-width: 260px; max-width: 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,98,0.3);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; color: var(--white);
  transition: transform 0.3s ease, background 0.3s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  background: rgba(201,169,98,0.08);
}
.event-icon-wrap { font-size: 2rem; margin-bottom: 1rem; }
.event-card h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  font-weight: 400; color: var(--gold-light); margin-bottom: 0.8rem;
}
.event-divider { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 1rem; opacity: 0.5; }
.event-time { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 0.2rem; }
.event-place { color: var(--gold-light); font-weight: 600; font-size: 1rem; margin: 0.8rem 0 0.2rem; }
.event-addr { color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; }
.btn-maps {
  display: inline-block; padding: 8px 20px;
  border: 1px solid var(--gold); border-radius: 30px;
  color: var(--gold); font-size: 0.8rem; font-weight: 500;
  transition: all 0.3s;
}
.btn-maps:hover { background: var(--gold); color: var(--dark); }

/* ===========================
   COUNTDOWN
   =========================== */
.countdown { background: var(--cream); text-align: center; }
.countdown-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 2rem; flex-wrap: wrap;
}
.cd-item {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem 1.8rem; text-align: center;
  box-shadow: var(--shadow); min-width: 80px;
  margin: 4px;
}
.cd-item span {
  display: block; font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 3.5rem); font-weight: 300;
  color: var(--gold); line-height: 1;
}
.cd-item small { color: var(--gray); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.cd-sep { font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); padding: 0 4px; }
.cd-done { margin-top: 2rem; }
.cd-done p { font-family: var(--font-serif); font-size: 1.6rem; color: var(--dark); }
.cd-done small { color: var(--gray); }

/* ===========================
   SAVE THE DATE
   =========================== */
.savedate {
  background: linear-gradient(135deg, var(--dark) 0%, #3d2a14 100%);
  text-align: center; color: var(--white);
}
.savedate-inner { max-width: 480px; margin: 0 auto; }
.savedate-label {
  font-size: 0.8rem; letter-spacing: 0.4em;
  color: var(--gold-light); margin-bottom: 1rem;
  text-transform: uppercase;
}
.savedate-date {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin: 1rem 0;
}
.savedate-date span:nth-child(1) {
  font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 300; color: var(--gold);
}
.savedate-date span:nth-child(2) {
  font-family: var(--font-serif); font-size: 1.3rem;
  font-weight: 300; color: var(--gold-light); letter-spacing: 0.1em;
}
.savedate-date span:nth-child(3) {
  font-family: var(--font-serif); font-size: 1.3rem;
  font-weight: 300; color: rgba(255,255,255,0.6);
}
.savedate-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 1rem 0 1.5rem; }
.btn-calendar {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 10px 28px; border-radius: 30px;
  font-size: 0.9rem; transition: all 0.3s;
}
.btn-calendar:hover { background: var(--gold); color: var(--dark); }

/* ===========================
   GALLERY
   =========================== */
.gallery { background: var(--white); overflow: hidden; }
.gallery-slider { position: relative; overflow: hidden; border-radius: var(--radius); margin-top: 1.5rem; }
.gallery-track { display: flex; transition: transform 0.5s cubic-bezier(0.25,1,0.5,1); }
.gslide { flex: 0 0 100%; }
.gslide img { width: 100%; height: 60vw; max-height: 420px; object-fit: cover; }
.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); color: white;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.gallery-btn:hover { background: var(--gold); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1rem; }
.gdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-light); transition: all 0.3s;
}
.gdot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===========================
   GIFT
   =========================== */
.gift { background: var(--cream); }
.gift-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin: 1.5rem 0; flex-wrap: wrap;
}
.gift-tab {
  padding: 8px 20px; border-radius: 30px;
  border: 1px solid var(--gold-light);
  background: transparent; color: var(--brown);
  font-size: 0.85rem; font-weight: 500;
  transition: all 0.3s;
}
.gift-tab.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.gift-content { max-width: 600px; margin: 0 auto; text-align: center; }
.gift-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.gift-qris-img { max-width: 220px; margin: 0 auto 1rem; }
.gift-card p { color: var(--gray); font-size: 0.9rem; }
.bank-cards { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.bank-card {
  flex: 1; min-width: 200px;
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); text-align: center;
}
.bank-logo { height: 32px; margin: 0 auto 1rem; object-fit: contain; }
.bank-num { font-size: 1.3rem; font-weight: 700; color: var(--dark); letter-spacing: 0.05em; }
.bank-name { color: var(--gray); font-size: 0.85rem; margin: 0.3rem 0 1rem; }
.btn-copy {
  background: var(--cream); border: 1px solid var(--gold-light);
  color: var(--brown); padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem; transition: all 0.2s;
}
.btn-copy:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-wa-gift {
  display: inline-block; margin-top: 1rem;
  background: #25D366; color: white;
  padding: 10px 28px; border-radius: 30px;
  font-size: 0.9rem; font-weight: 600;
  transition: transform 0.2s;
}
.btn-wa-gift:hover { transform: translateY(-2px); }

/* ===========================
   RSVP
   =========================== */
.rsvp { background: var(--dark); }
.rsvp .section-title { color: var(--white); }
.rsvp .section-sub { color: rgba(255,255,255,0.5); }
.rsvp-wrap { max-width: 480px; margin: 0 auto; }
.rsvp-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { color: var(--gold-light); font-size: 0.85rem; font-weight: 500; }
.form-field input, .form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,98,0.3);
  border-radius: 10px; padding: 12px 16px;
  color: var(--white); font-family: var(--font-sans);
  font-size: 0.95rem; transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.radio-wrap { display: flex; gap: 1rem; }
.radio-item {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; color: white; font-size: 0.9rem;
}
.radio-item input { accent-color: var(--gold); width: 16px; height: 16px; }
.btn-submit {
  background: var(--gold); color: var(--dark);
  padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 1rem;
  transition: all 0.3s; margin-top: 0.5rem;
  width: 100%;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===========================
   WISHES
   =========================== */
.wishes { background: var(--cream); }
.wishes-list { max-width: 600px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.wish-item {
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; display: flex; gap: 1rem;
  box-shadow: var(--shadow);
}
.wish-avatar { font-size: 1.8rem; flex-shrink: 0; }
.wish-body h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--dark); margin-bottom: 2px; }
.wish-loc { color: var(--gray); font-size: 0.8rem; margin-bottom: 0.5rem; }
.wish-msg { color: var(--dark); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.4rem; }
.wish-date { color: var(--gold); font-size: 0.75rem; }

/* ===========================
   CLOSING
   =========================== */
.closing { background: var(--dark); }
.closing-wrap { max-width: 500px; margin: 0 auto; text-align: center; }
.closing-ornament { color: var(--gold); font-size: 2rem; margin-bottom: 1rem; }
.closing-title {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 300; color: var(--white); margin-bottom: 1rem;
}
.closing-msg { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 0.5rem; }
.closing-names {
  font-family: var(--font-serif); font-size: 2rem;
  font-style: italic; color: var(--gold); margin-bottom: 2rem;
}
.closing-families { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.closing-family {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,98,0.2);
  border-radius: var(--radius); padding: 1rem 1.5rem; text-align: center;
}
.closing-family p { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.closing-family small { color: var(--gray); font-size: 0.78rem; }

.btn-share {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 10px 28px; border-radius: 30px;
  font-size: 0.9rem; transition: all 0.3s; margin-bottom: 1.5rem;
}
.btn-share:hover { background: var(--gold); color: var(--dark); }

.closing-credit { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0f0a04; color: rgba(255,255,255,0.4);
  text-align: center; padding: 24px 20px; font-size: 0.8rem;
  display: flex; flex-direction: column; gap: 4px;
  min-height: auto;
}

/* ===========================
   EXCEPTIONS - No Full Height
   =========================== */
.navbar, .footer { min-height: auto; display: block; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 600px) {
  section { padding: 60px 16px; }
  .timeline::before { left: 24px; }
  .tl-item, .tl-item:nth-child(even) { flex-direction: column; padding-left: 60px; }
  .tl-dot { position: absolute; left: 0; }
  .tl-item { position: relative; }
  .couple-and { font-size: 2.5rem; }
  .navbar a { padding: 12px 10px; font-size: 0.75rem; }
  .cd-item { padding: 1rem 1.2rem; min-width: 65px; }
  .cd-sep { font-size: 2rem; }
  .event-card { min-width: 100%; }
}
