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

/* ── Brand Fonts ── */
@font-face {
  font-family: 'Glorious';
  src: url('Brand Asset/Fonts-20260317T001556Z-3-001/Fonts/Glorious.otf') format('opentype');
}
@font-face {
  font-family: 'Quadrian';
  src: url('Brand Asset/Fonts-20260317T001556Z-3-001/Fonts/Quadrian.otf') format('opentype');
}
@font-face {
  font-family: 'Quadrian Ornament';
  src: url('Brand Asset/Fonts-20260317T001556Z-3-001/Fonts/Quadrian Ornament.ttf') format('truetype');
}

/* ── Google Fonts fallback for Avenir Light ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&display=swap');

/* ── Color Tokens ── */
:root {
  --burgundy:  #48010D;
  --burgundy2: #6a0115;
  --cream:     #F8F1E9;
  --offwhite:  #F5F5F5;
  --lavender:  #E8E3F0;
  --teal:      #2A4545;
  --text:      #2a1a1e;
  --text-light:#5a4a4e;

  /* Font stack: system Avenir → Nunito as web fallback */
  --sans: 'Avenir', 'Avenir Next', 'Nunito', 'Century Gothic', sans-serif;
  --script: 'Glorious', cursive;
  --serif: 'Quadrian', 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }

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

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 245, 245, 0.97);
  border-bottom: 1px solid rgba(72,1,13,0.1);
  padding: 20px 40px;
  transition: box-shadow 0.3s;
}
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 48px;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.5; }

/* ══════════════════════════════════════
   HOME HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #1a0508 0%, #3a0e18 55%, #1e0a10 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
}
.wax-stamp {
  width: clamp(160px, 18vw, 280px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
  user-select: none;
}
.wax-stamp--small { width: clamp(80px, 10vw, 140px); }

/* ── Countdown ── */
.countdown-wrapper {
  position: relative; z-index: 2;
  padding: 0 0 32px;
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
}
.countdown {
  display: flex;
  gap: clamp(24px, 5vw, 80px);
  align-items: baseline;
}
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.countdown-num {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 80px);
  color: var(--offwhite);
  letter-spacing: 0.04em;
  line-height: 1;
}
.countdown-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.6);
}
.progress-bar-track {
  width: clamp(260px, 45vw, 520px);
  height: 2px;
  background: rgba(245,245,245,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%; background: rgba(245,245,245,0.8);
  border-radius: 2px; transition: width 1s linear; width: 0%;
}

/* ══════════════════════════════════════
   SHARED SECTION UTILITIES
══════════════════════════════════════ */
.section-title {
  font-family: var(--script);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--burgundy);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 28px;
}
.section-title--white  { color: rgba(255,255,255,0.9); }
.section-title--cream  { color: var(--cream); }
.section-title--teal   { color: var(--teal); }

.label-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Background helpers */
.bg-cream     { background: var(--cream); }
.bg-offwhite  { background: var(--offwhite); }
.bg-lavender  { background: var(--lavender); }
.bg-burgundy  { background: var(--burgundy); }
.bg-teal      { background: var(--teal); }

/* ══════════════════════════════════════
   HOME INFO SECTION
══════════════════════════════════════ */
.info-section {
  background: var(--cream);
  padding: 100px 40px 90px;
  text-align: center;
}
.info-text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 52px;
}
.info-text strong em { font-style: italic; font-weight: 500; }

/* ── Buttons ── */
.event-buttons { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.btn-event {
  display: inline-block;
  background: var(--burgundy);
  color: var(--offwhite);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 64px;
  min-width: 280px;
  text-align: center;
  transition: background 0.25s, transform 0.15s;
}
.btn-event:hover { background: var(--burgundy2); transform: translateY(-1px); }
.btn-event--outline {
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}
.btn-event--outline:hover { background: var(--burgundy); color: var(--offwhite); }
.btn-rsvp-date {
  font-family: var(--script);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--burgundy);
  text-align: center;
  margin-top: 4px;
  display: block;
}

/* ══════════════════════════════════════
   PAGE HERO (event invite sections)
══════════════════════════════════════ */
.page-hero {
  padding: 120px 40px 80px;
  text-align: center;
  background: var(--offwhite);
}
.page-hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
  font-weight: 400;
}
.page-hero__title {
  font-family: var(--script);
  font-size: clamp(60px, 10vw, 130px);
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 32px;
}
.page-hero__text {
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}
.page-hero__text em { font-style: italic; }

/* ══════════════════════════════════════
   DETAILS SECTION (dark bg + floral)
══════════════════════════════════════ */
.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: center;
}
.details-section__floral {
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 20px 0;
  overflow: hidden;
}
.details-section__floral img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
}
.floral-placeholder {
  width: 100%; height: 500px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.2;
  font-family: var(--script); font-size: 28px; color: white;
}
.details-section__info {
  padding: 80px 60px 80px 40px;
  text-align: center;
}
.details-section__info .section-title {
  text-align: center;
  margin-bottom: 48px;
}
.detail-row { margin-bottom: 32px; }
.detail-row__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.detail-row__value {
  font-family: var(--sans);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   DRESS CODE SECTION
══════════════════════════════════════ */
.dress-section {
  background: var(--lavender);
  padding: 90px 40px 80px;
  text-align: center;
}
.dress-section .section-title { color: var(--burgundy); }
.dress-section .section-title--teal { color: var(--teal); }
.dress-desc {
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 50px;
}
.dress-desc em { font-style: italic; font-weight: 400; }
.dress-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.dress-placeholder {
  width: 100%;
  max-width: 500px;
  height: 260px;
  background: rgba(0,0,0,0.05);
  border: 1px dashed rgba(72,1,13,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(72,1,13,0.35);
}

/* ══════════════════════════════════════
   TRAVEL SECTION
══════════════════════════════════════ */
.travel-section {
  padding: 100px 40px;
  text-align: center;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.travel-section .section-title { margin-bottom: 40px; }
.travel-content {
  max-width: 640px;
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.85);
}
.travel-content a { color: rgba(255,255,255,0.85); text-underline-offset: 4px; }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq-section {
  background: var(--lavender);
  padding: 90px 40px 80px;
}
.faq-section__header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-section__subtitle {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  margin-top: 6px;
}
.faq-section__subtitle--teal { color: var(--teal); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq-item__q {
  font-family: var(--sans);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.faq-item__q--teal { color: var(--teal); }
.faq-item__a {
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
}
.faq-item__a em { font-style: italic; }
.faq-item__a strong { font-weight: 600; font-style: italic; }
.faq-item__a a {
  color: var(--burgundy);
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════
   REGISTRY PAGE
══════════════════════════════════════ */
.registry-section {
  padding: 120px 40px 80px;
  background: var(--offwhite);
}
.registry-section .section-title { color: var(--burgundy); text-align: left; }
.registry-body {
  max-width: 760px;
  margin: 0 auto 60px;
}
.registry-text {
  font-family: var(--sans);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 2;
  color: var(--text);
  margin-bottom: 24px;
}
.registry-sig {
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  color: var(--text-light);
  margin-top: 32px;
}
.payment-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 60px 40px;
  background: var(--offwhite);
  border-top: 1px solid rgba(72,1,13,0.08);
}
.payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 36px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  background: white;
  min-width: 180px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.payment-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.payment-card__name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.payment-card--zelle   .payment-card__name { color: #6d1ed4; }
.payment-card--cashapp .payment-card__name { color: #00c244; }
.payment-card--venmo   .payment-card__name { color: #3d95ce; }
.payment-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.payment-icon--zelle   { background: #6d1ed4; }
.payment-icon--cashapp { background: #00c244; }
.payment-icon--venmo   { background: #3d95ce; }

/* ══════════════════════════════════════
   LIVESTREAM PAGE
══════════════════════════════════════ */
.livestream-section {
  padding: 140px 40px 80px;
  background: var(--offwhite);
  text-align: center;
}
.livestream-section .section-title--label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 48px;
}
.stream-box {
  max-width: 860px;
  margin: 0 auto 20px;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.15em;
}
.stream-box iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.stream-fallback {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 16px;
}
.stream-fallback a { color: var(--burgundy); text-underline-offset: 3px; }

/* ══════════════════════════════════════
   OUR STORY PAGE
══════════════════════════════════════ */
.story-banner {
  margin-top: 70px;
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-banner__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
}
.story-banner__title {
  position: relative; z-index: 2;
  font-family: var(--script);
  font-size: clamp(60px, 10vw, 120px);
  color: white;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.story-banner__photos {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
}
.story-banner__photo {
  height: 100%;
  background: #333;
  overflow: hidden;
}
.story-banner__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
}

/* Meet sections */
.meet-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  align-items: center;
}
.meet-section__title-col {
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meet-section__title {
  font-family: var(--script);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 1.05;
  color: var(--burgundy);
}
.meet-section__title--white { color: rgba(255,255,255,0.9); }
.meet-section__text-col {
  padding: 80px 80px 80px 40px;
}
.meet-section__text {
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 2;
  color: var(--text);
}
.meet-section__text--white { color: rgba(255,255,255,0.8); }
.meet-section--reverse { direction: rtl; }
.meet-section--reverse > * { direction: ltr; }

/* How We Met */
.how-section {
  background: var(--lavender);
  padding: 100px 40px 90px;
  text-align: center;
}
.how-section .section-title { margin-bottom: 48px; }
.how-text {
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 2.1;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto;
}

/* Gallery */
.gallery-section {
  background: var(--lavender);
  padding: 100px 40px;
  text-align: center;
}
.gallery-section .section-title { margin-bottom: 16px; color: var(--burgundy); }
.gallery-coming-soon {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 8px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .details-section { grid-template-columns: 1fr; }
  .details-section__floral { display: none; }
  .details-section__info { padding: 70px 32px; }

  .meet-section { grid-template-columns: 1fr; }
  .meet-section--reverse { direction: ltr; }
  .meet-section__title-col { padding: 60px 32px 24px; }
  .meet-section__text-col { padding: 0 32px 60px; }

  .story-banner__photos { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { gap: 18px; flex-wrap: wrap; padding: 4px 0; }
  .nav-links a { font-size: 9px; letter-spacing: 0.14em; }
  .btn-event { min-width: 240px; padding: 18px 40px; }
  .payment-row { gap: 16px; padding: 40px 20px; }
}
