/* ==========================================================================
   LUXURY MUSLIM WEDDING INVITATION — MOHAMMED SAIDALAVI & SHAREEFA
   Color Palette inspired by hero-bg.png: Warm Ivory, Antique Gold, Deep Burgundy
   ========================================================================== */

:root {
  /* Color System */
  --bg-main: #F8F4EE;          /* Warm soft ivory page background */
  --bg-cream: #F3ECE1;         /* Deeper warm champagne cream */
  --bg-card: #FAF6F0;          /* Pure alabaster card background */
  --bg-card-hover: #FFFFFF;
  
  --text-main: #2B1E1A;        /* Deep rosewood charcoal text */
  --text-muted: #6C594E;       /* Soft cocoa text */
  --text-light: #948074;       /* Muted taupe text */

  --gold: #C5A059;             /* Rich antique gold */
  --gold-dark: #8A6B29;        /* Deep burnished gold */
  --gold-bright: #D4AF37;      /* Bright shimmering gold */
  --gold-light: #E8D5B0;       /* Pale cream gold */
  --gold-faint: rgba(197, 160, 89, 0.14);

  --burgundy: #7A1F2D;         /* Luxury deep rose burgundy */
  --burgundy-dark: #58121D;
  --burgundy-soft: rgba(122, 31, 45, 0.08);

  --border-gold: rgba(197, 160, 89, 0.35);
  --border-gold-strong: rgba(197, 160, 89, 0.65);
  --shadow-luxury: 0 16px 40px rgba(43, 30, 26, 0.06), 0 4px 12px rgba(197, 160, 89, 0.08);
  --shadow-hover: 0 24px 50px rgba(43, 30, 26, 0.12), 0 6px 16px rgba(197, 160, 89, 0.15);

  /* Typography */
  --font-arabic: 'Amiri', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-eyebrow: 'Cinzel', serif;
  --font-body: 'EB Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  --section-padding: clamp(60px, 10vw, 110px);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Selection color */
::selection {
  background: var(--gold-light);
  color: var(--burgundy-dark);
}

/* Subtle background texture pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(197, 160, 89, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: -1;
}

/* Utilities */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--skinny {
  max-width: 780px;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   SPLASH OVERLAY SCREEN
   ========================================================================== */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(243, 235, 222, 0.97); /* Warm yellowish champagne tone matching the image theme */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.splash-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-card {
  position: relative;
  background-image: url('invitation.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0;
  padding: clamp(44px, 9vw, 68px) clamp(32px, 7vw, 48px);
  max-width: 460px;
  width: 100%;
  aspect-ratio: 3 / 4.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 24px 60px rgba(43, 30, 26, 0.25);
  animation: splashEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* Golden Corner Accents for Splash Card */
.splash-corner {
  display: none; /* invitation.png already contains luxury gold corners */
}

.splash-sprig {
  color: var(--gold-dark);
  margin-bottom: 12px;
  opacity: 0.9;
}

.splash-bismillah {
  font-family: var(--font-arabic);
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  color: var(--burgundy);
  direction: rtl;
  margin-bottom: 20px;
  line-height: 1.5;
}

.splash-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.splash-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.splash-amp {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-dark);
}

.splash-tagline {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.splash-date {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 28px;
}

.splash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 15px 36px;
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
  transition: all 0.3s ease;
}

.splash-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 160, 89, 0.5);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
}

/* ==========================================================================
   FALLING FLOWER PETALS & SPARKLES
   ========================================================================== */
.flower-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -40px;
  opacity: 0;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  animation: floatPetal linear infinite;
}

@keyframes floatPetal {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }
  10% {
    opacity: 0.75;
  }
  90% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translateY(105vh) rotate(360deg) translateX(80px);
  }
}

/* ==========================================================================
   HERO SECTION (RESPONSIVE BACKGROUND & CENTERED ARCH LAYOUT)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px) 20px;
  
  /* Mobile Background Default */
  background-image: url('hero-bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Desktop Background Override */
@media (min-width: 768px) {
  .hero-section {
    background-image: url('desktop.png');
    background-size: cover;
    background-position: center center;
  }
}

.hero-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 680px;
  width: 100%;
  padding: 24px;
  z-index: 2;
  margin-top: 60px; /* Moves text safely below top arch border */
}

@media (max-width: 767px) {
  .hero-content-container {
    margin-top: 75px; /* Ensures Bismillah is well clear of top arch on mobile */
    padding: 16px;
  }
}

.bismillah-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  color: var(--burgundy);
  direction: rtl;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-top: 10px;
}

.glyph-divider {
  width: 190px;
  height: 22px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: clamp(0.68rem, 2vw, 0.82rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 3.6rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-amp {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 1.9rem);
  font-style: italic;
  color: var(--burgundy);
  margin: 1px 0;
}

.hero-divider-small {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 8px 0 14px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(250, 246, 240, 0.92);
  border: 1px solid var(--border-gold-strong);
  border-radius: 8px;
  padding: 10px 24px;
  box-shadow: 0 4px 20px rgba(43, 30, 26, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-date-badge .day-name {
  font-family: var(--font-eyebrow);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  font-weight: 600;
}

.hero-date-badge .date-number {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
  margin: 2px 0;
}

.hero-date-badge .month-year {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 600;
}

.scroll-cue {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}

.scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: scrollPulse 1.8s infinite ease-in-out;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

.scroll-cue p {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ==========================================================================
   QURANIC VERSE / INVITATION NOTE
   ========================================================================== */
.invite-note-section {
  padding: var(--section-padding) 0;
  text-align: center;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
}

.section-sprig {
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.quran-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--burgundy);
  direction: rtl;
  line-height: 1.8;
  margin-bottom: 20px;
}

.quran-translation {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.4rem);
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 24px;
}

.quran-translation cite {
  display: block;
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-top: 10px;
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  color: var(--gold);
}

.ornament-divider span {
  height: 1px;
  width: 60px;
  background: var(--border-gold-strong);
}

.invitation-text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 60px);
}

.section-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.15;
}

.title-underline {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 12px auto 0;
}

/* ==========================================================================
   THE FAMILIES SECTION
   ========================================================================== */
.families-section {
  padding: var(--section-padding) 0;
}

.family-cards-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 860px) {
  .family-cards-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.family-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-strong);
  border-radius: 12px;
  padding: clamp(32px, 6vw, 44px) clamp(24px, 5vw, 36px);
  text-align: center;
  box-shadow: var(--shadow-luxury);
  transition: all 0.35s ease;
  overflow: hidden;
}

.family-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-bright);
}

.card-border-frame {
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--border-gold);
  border-radius: 8px;
  pointer-events: none;
}

.family-role-badge {
  display: inline-block;
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--burgundy-soft);
  border-radius: 50px;
}

.person-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.15;
}

.parent-block {
  margin-bottom: 22px;
}

.parent-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.parents-names {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 500;
  color: var(--text-main);
}

.address-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px stroke var(--border-gold-faint);
  padding-top: 16px;
}

.address-block svg {
  color: var(--gold-dark);
}

.address-block address {
  font-style: normal;
}

.family-center-motif {
  display: flex;
  justify-content: center;
  align-items: center;
}

.motif-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px stroke var(--gold);
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.motif-ring .ampersand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--burgundy);
}

/* ==========================================================================
   COUNTDOWN TIMER SECTION (MATCHING REFERENCE IMAGE 1)
   ========================================================================== */
.countdown-section {
  padding: var(--section-padding) 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.countdown-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: clamp(0.68rem, 2vw, 0.78rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.countdown-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: clamp(36px, 6vw, 54px);
  letter-spacing: 0.02em;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
}

.timer-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-strong);
  width: clamp(100px, 20vw, 150px);
  height: clamp(110px, 22vw, 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(43, 30, 26, 0.05);
  transition: transform 0.3s ease;
}

.timer-card:hover {
  transform: translateY(-4px);
}

.timer-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 8px;
}

.timer-label {
  font-family: var(--font-eyebrow);
  font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* Corner Trim Accents matching reference image 1 */
.corner-accent {
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: var(--gold-dark);
  border-style: solid;
}

.corner-accent.tl { top: 3px; left: 3px; border-width: 1px 0 0 1px; }
.corner-accent.tr { top: 3px; right: 3px; border-width: 1px 1px 0 0; }
.corner-accent.bl { bottom: 3px; left: 3px; border-width: 0 0 1px 1px; }
.corner-accent.br { bottom: 3px; right: 3px; border-width: 0 1px 1px 0; }

/* ==========================================================================
   CEREMONY & VENUE SECTION (MATCHING REFERENCE IMAGE 2)
   ========================================================================== */
.ceremony-section {
  padding: var(--section-padding) 0;
}

.ceremony-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 860px) {
  .ceremony-content {
    grid-template-columns: 1fr;
  }
}

.ceremony-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-strong);
  border-radius: 12px;
  padding: clamp(32px, 6vw, 44px) clamp(24px, 5vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-luxury);
  position: relative;
}

.ceremony-badge {
  align-self: flex-start;
  font-family: var(--font-eyebrow);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  background: var(--burgundy-soft);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ceremony-info-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.info-value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--text-main);
}

.info-value.highlight-venue {
  color: var(--burgundy);
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
}

.info-subvalue {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-divider {
  height: 1px;
  background: var(--gold-faint);
  margin: 4px 0;
}

.action-buttons-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* BUTTON STYLES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-gold-strong);
}

.btn-outline:hover {
  background: var(--bg-cream);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.45);
}

/* VENUE MAP CARD (REFERENCE IMAGE 2 ACCURATE STYLE) */
.venue-map-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-gold-strong);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-luxury);
}

.venue-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.venue-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.2;
}

.venue-location-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.venue-divider-diamond {
  margin: 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.venue-divider-diamond::before,
.venue-divider-diamond::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 60px;
  background: var(--border-gold-strong);
}

.venue-divider-diamond .diamond {
  color: var(--gold-dark);
  font-size: 0.8rem;
}

.map-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  margin-bottom: 24px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.btn-directions {
  display: inline-block;
  width: 100%;
  max-width: 260px;
  padding: 15px 30px;
  background: var(--bg-card);
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  border-radius: 0;
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-directions:hover {
  background: var(--gold-dark);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(138, 107, 41, 0.25);
}

/* ==========================================================================
   SHARING THE HAPPINESS SECTION
   ========================================================================== */
.compliments-section {
  padding: var(--section-padding) 0;
}

.compliments-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-strong);
  border-radius: 12px;
  padding: clamp(36px, 7vw, 56px) clamp(24px, 5vw, 40px);
  text-align: center;
  box-shadow: var(--shadow-luxury);
}

.card-top-sprig {
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.compliments-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.compliments-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--text-main);
}

.compliments-divider {
  display: flex;
  justify-content: center;
  margin: 12px 0 24px;
}

.compliments-names-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.name-item {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: 500;
  color: var(--burgundy);
}

.dot {
  color: var(--gold);
  font-size: 0.8rem;
}

.nephews-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 60px 0 40px;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-gold);
  text-align: center;
}

.footer-bismillah-glyph {
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.footer-names {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.footer-blessing {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 12px;
}

.footer-date {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-copyright {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--burgundy);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-main);
  color: var(--bg-main);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 999999;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
