/* ============================================
   عقد القران — Bilal & Shahed
   Elegant minimal design
   ============================================ */

:root {
  --gold: #C9A96E;
  --gold-light: #D4B88A;
  --gold-dim: rgba(201, 169, 110, 0.4);
  --sage: #7D8B69;
  --sage-dark: #5C6950;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --brown: #3D2B1F;
  --brown-light: #7A6A5E;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);

  --font-script: 'Great Vibes', cursive;
  --font-body: 'Cormorant Garamond', serif;
  --font-ar: 'Tajawal', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ============================================
   OPENING SCREEN — CLEAN, NO ENVELOPE EDGES
   ============================================ */

#envelope-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
}

#envelope-screen.opening {
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}

/* BG layers */
.opening-bg {
  position: absolute;
  inset: 0;
}

.opening-video,
.hero-video,
.verse-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.opening-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.opening-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.5);
  z-index: 2;
}

/* Content */
.opening-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.opening-arabic {
  font-family: var(--font-ar);
  font-size: clamp(18px, 4.5vw, 24px);
  color: var(--white-90);
  direction: rtl;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.opening-english {
  font-family: var(--font-body);
  font-size: clamp(15px, 3vw, 20px);
  color: var(--white-90);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* ── Seal — minimal circle, no envelope ── */
.seal-container {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.seal-container:hover { transform: scale(1.06); }
.seal-container:active { transform: scale(0.95); }

.seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, rgba(201,169,110,0.9) 0%, var(--gold) 50%, #A3834A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 8px 40px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,255,255,0.25),
    inset 0 -2px 6px rgba(0,0,0,0.15);
}

.seal-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}

.seal-initials {
  font-family: var(--font-script);
  font-size: 28px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.seal-initials span {
  font-size: 16px;
  margin: 0 3px;
  vertical-align: middle;
  opacity: 0.7;
}

.opening-hint-ar {
  font-family: var(--font-ar);
  font-size: clamp(14px, 2.8vw, 18px);
  color: var(--white-90);
  direction: rtl;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  animation: fade-pulse 2.5s ease-in-out infinite;
  margin-bottom: -14px;
}

.opening-hint {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--white-90);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  animation: fade-pulse 2.5s ease-in-out infinite;
}

@keyframes fade-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ── Rose Petals — rich red, abundant ── */
.floating-petals { position: fixed; inset: 0; pointer-events: none; z-index: 999; }

.petal {
  position: absolute;
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: petal-fall var(--dur, 7s) ease-in-out infinite var(--delay, 0s);
}

/* Deep reds and crimsons */
.petal:nth-child(5n)   { background: #B22222; width: 16px; height: 20px; }
.petal:nth-child(5n+1) { background: #CC3333; width: 13px; height: 17px; }
.petal:nth-child(5n+2) { background: #A01020; width: 15px; height: 19px; }
.petal:nth-child(5n+3) { background: #D44444; width: 11px; height: 14px; }
.petal:nth-child(5n+4) { background: #8B1A1A; width: 14px; height: 18px; }

.p1  { left: 1%;  --delay: 0s;    --dur: 6s; }
.p2  { left: 5%;  --delay: 0.3s;  --dur: 7.5s; }
.p3  { left: 9%;  --delay: 0.8s;  --dur: 6.5s; }
.p4  { left: 13%; --delay: 1.2s;  --dur: 7s; }
.p5  { left: 17%; --delay: 0.1s;  --dur: 8s; }
.p6  { left: 21%; --delay: 1.8s;  --dur: 6.5s; }
.p7  { left: 25%; --delay: 0.5s;  --dur: 7.5s; }
.p8  { left: 29%; --delay: 2.2s;  --dur: 6s; }
.p9  { left: 33%; --delay: 0.9s;  --dur: 7s; }
.p10 { left: 37%; --delay: 1.5s;  --dur: 8s; }
.p11 { left: 41%; --delay: 0.2s;  --dur: 6.5s; }
.p12 { left: 45%; --delay: 2.5s;  --dur: 7s; }
.p13 { left: 49%; --delay: 0.7s;  --dur: 7.5s; }
.p14 { left: 53%; --delay: 1.1s;  --dur: 6s; }
.p15 { left: 57%; --delay: 2.8s;  --dur: 7s; }
.p16 { left: 61%; --delay: 0.4s;  --dur: 8s; }
.p17 { left: 65%; --delay: 1.9s;  --dur: 6.5s; }
.p18 { left: 69%; --delay: 0.6s;  --dur: 7.5s; }
.p19 { left: 73%; --delay: 2.1s;  --dur: 6s; }
.p20 { left: 77%; --delay: 1.3s;  --dur: 7s; }
.p21 { left: 81%; --delay: 0.3s;  --dur: 8s; }
.p22 { left: 85%; --delay: 2.6s;  --dur: 6.5s; }
.p23 { left: 89%; --delay: 1s;    --dur: 7s; }
.p24 { left: 93%; --delay: 0.8s;  --dur: 7.5s; }
.p25 { left: 97%; --delay: 2s;    --dur: 6s; }
.p26 { left: 3%;  --delay: 3s;    --dur: 7s; }
.p27 { left: 15%; --delay: 3.3s;  --dur: 6.5s; }
.p28 { left: 35%; --delay: 3.6s;  --dur: 7.5s; }
.p29 { left: 50%; --delay: 3.9s;  --dur: 6s; }
.p30 { left: 67%; --delay: 4.2s;  --dur: 7s; }
.p31 { left: 82%; --delay: 4.5s;  --dur: 6.5s; }
.p32 { left: 10%; --delay: 4.8s;  --dur: 7.5s; }
.p33 { left: 43%; --delay: 5s;    --dur: 6s; }
.p34 { left: 60%; --delay: 5.3s;  --dur: 7s; }
.p35 { left: 78%; --delay: 5.6s;  --dur: 6.5s; }

@keyframes petal-fall {
  0%   { top: -5%; opacity: 0; transform: rotate(0) translateX(0) scale(1); }
  6%   { opacity: 0.75; }
  20%  { transform: rotate(70deg) translateX(18px) scale(0.95); }
  40%  { transform: rotate(160deg) translateX(-22px) scale(0.85); opacity: 0.65; }
  60%  { transform: rotate(240deg) translateX(15px) scale(0.7); opacity: 0.55; }
  80%  { transform: rotate(320deg) translateX(-12px) scale(0.5); }
  100% { top: 108%; opacity: 0; transform: rotate(400deg) translateX(8px) scale(0.3); }
}

/* ============================================
   HERO — FULL VIEWPORT
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(125,139,105,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 40%, rgba(168,180,151,0.35) 0%, transparent 55%),
    linear-gradient(160deg, #4A5640 0%, #5C6950 25%, #6B7B5E 50%, #5C6950 75%, #4A5640 100%);
  z-index: 1;
}

.hero-video.loaded + .hero-bg-fallback { opacity: 0; transition: opacity 1.5s; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(30,22,16,0.5) 0%,
    rgba(30,22,16,0.3) 50%,
    rgba(30,22,16,0.55) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
  animation: hero-enter 1.4s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 0;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-bismillah {
  font-family: var(--font-ar);
  font-size: clamp(17px, 4vw, 24px);
  color: var(--white);
  direction: rtl;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.hero-label span {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-label p {
  font-family: var(--font-ar);
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gold-light);
  letter-spacing: 2px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0 16px;
}

.name-first,
.name-second {
  font-family: var(--font-script);
  font-size: clamp(56px, 14vw, 120px);
  color: var(--white);
  line-height: 1.05;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.name-amp {
  font-family: var(--font-script);
  font-size: clamp(24px, 5vw, 44px);
  color: var(--gold-light);
  line-height: 0.8;
  margin: -6px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 16px auto;
}

.hero-date-ar {
  font-family: var(--font-ar);
  font-size: clamp(14px, 2.8vw, 19px);
  color: var(--gold-light);
  direction: rtl;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 4px;
}

.hero-date {
  font-family: var(--font-body);
  font-size: clamp(15px, 3vw, 22px);
  letter-spacing: clamp(4px, 1.5vw, 10px);
  text-transform: uppercase;
  color: var(--white-90);
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-venue-hint-ar {
  font-family: var(--font-ar);
  font-size: clamp(14px, 2.8vw, 18px);
  color: var(--white-90);
  direction: rtl;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero-venue-hint {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white-90);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* Scroll indicator — animated line */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--white-50));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.section { padding: 80px 24px; text-align: center; }
.container { max-width: 600px; margin: 0 auto; }

.heading-script {
  font-family: var(--font-script);
  font-size: clamp(36px, 8vw, 52px);
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
}

.heading-arabic {
  font-family: var(--font-ar);
  font-size: clamp(18px, 4vw, 24px);
  color: var(--gold-light);
  direction: rtl;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.heading-arabic-dark { color: var(--gold); }

.subtitle-arabic {
  font-family: var(--font-ar);
  font-size: clamp(15px, 3vw, 19px);
  color: var(--white-70);
  direction: rtl;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.subtitle-arabic-dark { color: var(--brown-light); }

.subtitle-light {
  font-family: var(--font-body);
  font-size: clamp(17px, 3vw, 20px);
  color: var(--white-70);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.subtitle-muted {
  font-family: var(--font-body);
  font-size: clamp(17px, 3vw, 20px);
  color: var(--brown-light);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.body-text {
  font-family: var(--font-body);
  font-size: clamp(19px, 3.5vw, 24px);
  line-height: 1.9;
  color: var(--brown-light);
  max-width: 520px;
  margin: 0 auto 16px;
  font-weight: 300;
}

.body-arabic {
  font-family: var(--font-ar);
  font-size: clamp(21px, 4vw, 26px);
  color: var(--gold);
  direction: rtl;
  font-weight: 400;
}

/* ============================================
   COUNTDOWN
   ============================================ */

.countdown-section {
  background: linear-gradient(160deg, var(--sage-dark) 0%, var(--sage) 100%);
}

.countdown-section .heading-script { color: var(--gold-light); }

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.cd-unit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cd-num {
  font-family: var(--font-body);
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.cd-label-ar {
  font-family: var(--font-ar);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold-light);
  direction: rtl;
  font-weight: 400;
}

.cd-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-50);
}

.cd-sep {
  font-family: var(--font-body);
  font-size: 28px;
  color: var(--gold-dim);
  padding-bottom: 20px;
}

/* ============================================
   WELCOME
   ============================================ */

.welcome-section { background: var(--cream); }

/* ============================================
   DETAILS
   ============================================ */

.details-section { background: var(--cream-dark); }

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.detail-item {
  padding: 28px;
  text-align: center;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.detail-item:last-child { border-bottom: none; }

@media (min-width: 600px) {
  .detail-item {
    border-bottom: none;
    border-right: 1px solid rgba(201,169,110,0.15);
  }
  .detail-item:last-child { border-right: none; }
}

.detail-item h3 {
  font-family: var(--font-body);
  font-size: clamp(19px, 3.5vw, 24px);
  font-weight: 600;
  color: var(--brown);
  margin: 12px 0 4px;
  letter-spacing: 0.5px;
}

.detail-item p {
  font-family: var(--font-ar);
  font-size: clamp(16px, 3vw, 19px);
  color: var(--brown-light);
  font-weight: 300;
  direction: rtl;
}

@media (min-width: 600px) {
  .detail-row {
    flex-direction: row;
    max-width: 660px;
  }
  .detail-item { flex: 1; }
}

/* ============================================
   PROGRAM
   ============================================ */

.program-section { background: var(--cream); }

.timeline {
  max-width: 380px;
  margin: 32px auto 0;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--gold-dim);
}

.tl-item {
  position: relative;
  padding: 0 0 32px 24px;
  text-align: left;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -28px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold);
  z-index: 1;
  box-shadow: 0 0 8px rgba(201,169,110,0.3);
}

.tl-time {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  background: var(--sage);
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.tl-body h3 {
  font-family: var(--font-body);
  font-size: clamp(19px, 3.5vw, 22px);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.tl-body p {
  font-family: var(--font-body);
  font-size: clamp(15px, 3vw, 18px);
  color: var(--brown-light);
  font-weight: 300;
}

.tl-ar {
  font-family: var(--font-ar) !important;
  direction: rtl;
}

.tl-body h3.tl-ar {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.tl-body p.tl-ar {
  font-weight: 400;
}

/* ============================================
   VERSE DIVIDER
   ============================================ */

.verse-divider {
  position: relative;
  height: 50vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.verse-bg { position: absolute; inset: 0; }

.verse-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #4A5640 0%, #5C6950 50%, #4A5640 100%);
  z-index: 1;
}

.verse-video.loaded + .verse-bg-fallback { opacity: 0; transition: opacity 1.5s; }

.verse-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,22,16,0.5);
  z-index: 2;
}

.verse-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 32px 24px;
  max-width: 580px;
}

.verse-arabic {
  font-family: 'Amiri', serif;
  font-size: clamp(20px, 4.5vw, 28px);
  color: var(--white-90);
  direction: rtl;
  line-height: 2.2;
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}

.verse-ref {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white-50);
  letter-spacing: 3px;
  font-weight: 300;
}

/* ============================================
   VENUE — FULL WIDTH HERO WITH MOSQUE IMAGE
   ============================================ */

.venue-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.venue-hero-bg {
  position: absolute;
  inset: 0;
}

.venue-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 15, 10, 0.55) 0%,
    rgba(20, 15, 10, 0.4) 40%,
    rgba(20, 15, 10, 0.6) 100%
  );
}

.venue-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 24px;
}

.venue-heading {
  color: var(--white) !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.venue-where-ar {
  font-family: var(--font-ar);
  font-size: clamp(15px, 3vw, 19px);
  color: var(--white-70);
  direction: rtl;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.venue-where {
  font-family: var(--font-body);
  font-size: clamp(15px, 3vw, 18px);
  color: var(--white-70);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 20px;
}

.venue-gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  box-shadow: 0 0 12px rgba(201,169,110,0.4);
}

.venue-name-big {
  font-family: var(--font-body);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.venue-name-ar-big {
  font-family: var(--font-ar);
  font-size: clamp(22px, 5vw, 32px);
  color: var(--gold-light);
  direction: rtl;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.venue-map-embed {
  max-width: 460px;
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 2px solid rgba(201,169,110,0.3);
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 24px;
  border-radius: 28px;
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.25;
}

.btn-ar {
  font-family: var(--font-ar);
  font-size: clamp(13px, 2.4vw, 15px);
  letter-spacing: 0.5px;
  direction: rtl;
  font-weight: 400;
}

.btn-en {
  font-family: var(--font-body);
  font-size: clamp(13px, 2.3vw, 15px);
  letter-spacing: 1px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,169,110,0.4);
}

.btn-gold-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(201,169,110,0.6);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 48px 24px 36px;
  text-align: center;
  background: var(--cream);
}

.footer-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
}

.footer-names {
  font-family: var(--font-script);
  font-size: clamp(32px, 7vw, 44px);
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-date {
  font-family: var(--font-body);
  font-size: clamp(15px, 3vw, 18px);
  letter-spacing: 6px;
  color: var(--brown-light);
  font-weight: 300;
}

/* ============================================
   AUDIO TOGGLE
   ============================================ */

.audio-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(92,105,80,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1001;
}

.audio-toggle:hover { background: var(--gold); border-color: var(--gold); }

.audio-toggle.playing {
  animation: audio-glow 2.5s ease-in-out infinite;
}

@keyframes audio-glow {
  0%, 100% { box-shadow: 0 2px 16px rgba(0,0,0,0.2); }
  50%      { box-shadow: 0 2px 24px rgba(201,169,110,0.4); }
}

/* ============================================
   FADE-IN
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   INVITATION ENTRANCE
   ============================================ */

#invitation { opacity: 0; transition: opacity 1s ease; }
#invitation.show { opacity: 1; }

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */

@media (min-width: 768px) {
  .section { padding: 100px 40px; }

  .seal { width: 130px; height: 130px; }
  .seal-initials { font-size: 32px; }
  .seal-ring { inset: 10px; }

  .venue-card { max-width: 460px; padding: 40px 36px; }

  .countdown { max-width: 520px; }
}

@media (min-width: 1200px) {
  .section { padding: 120px 60px; }
  .hero-content { padding: 40px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */

@media (max-width: 380px) {
  .name-first, .name-second { font-size: 48px; }
  .seal { width: 90px; height: 90px; }
  .seal-initials { font-size: 22px; }
  .cd-num { font-size: 32px; }
}
