/* ══════════════════════════════════════════════════════════════
   عيد ميلاد سعيد يا مارية 💕
   Birthday Website Styles — Full Video + Photo Support
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  direction: rtl;
  background: linear-gradient(180deg, #0a0a12 0%, #0d0715 25%, #120a1a 50%, #0f0818 75%, #0a0a12 100%);
  color: #f0e6f6;
  font-family: 'Tajawal', 'Noto Naskh Arabic', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}
::selection { background: rgba(255,105,180,0.3); color: #fff; }


/* ══════════════════════════════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════════════════════════════ */
.loading-screen {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #0a0a12;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 1s ease, visibility 1s ease;
}
.loading-screen.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.loading-heart {
  font-size: 65px;
  animation: loadingBeat 1.2s ease-in-out infinite;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 25px rgba(255,105,180,0.5));
}
.loading-text-main {
  font-family: 'Aref Ruqaa', serif;
  font-size: clamp(26px, 6vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff69b4, #da70d6, #ffb6c1, #ffd700);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
  margin-bottom: 10px;
  text-align: center;
  padding: 0 20px;
}
.loading-text-name {
  font-family: 'Amiri', serif;
  font-size: clamp(22px, 5vw, 38px);
  color: #ffd700;
  font-style: italic;
  text-align: center;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(255,215,0,0.3);
}
.loading-text-sub {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: clamp(14px, 2.8vw, 20px);
  color: rgba(255,182,193,0.5);
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}
.loading-dots {
  display: flex; gap: 10px; align-items: center;
}
.loading-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff69b4;
  animation: loadingDot 1.4s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; background: #ffd700; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; background: #da70d6; }
.loading-dot:nth-child(4) { animation-delay: 0.6s; background: #ffb6c1; }
.loading-sparkle {
  position: absolute; font-size: 14px;
  color: rgba(255,215,0,0.25);
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes loadingBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.3); }
  30% { transform: scale(1); }
  45% { transform: scale(1.18); }
  60% { transform: scale(1); }
}
@keyframes loadingDot {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}


/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}
@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes floatGentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,105,180,0.2), 0 0 60px rgba(218,112,214,0.1); }
  50% { box-shadow: 0 0 35px rgba(255,105,180,0.4), 0 0 90px rgba(218,112,214,0.2); }
}
@keyframes rotateHeart {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.1); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-5deg) scale(1.1); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(255,105,180,0.12); }
  50% { border-color: rgba(255,215,0,0.25); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}


/* ══════════════════════════════════════════════════════════════
   SPARKLE CANVAS & FLOATING HEARTS
   ══════════════════════════════════════════════════════════════ */
#sparkleCanvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9999;
}
.floating-hearts {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 2; overflow: hidden;
}
.heart-float { position: absolute; bottom: -40px; color: #ff69b4; }


/* ══════════════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(60px);
  transition: all 1s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════════════
   MEDIA CONTAINERS — Photos & Videos (NO CROP)
   ══════════════════════════════════════════════════════════════ */
.photo-placeholder {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,105,180,0.10), rgba(218,112,214,0.06));
  border: 2px dashed rgba(255,182,193,0.2);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: rgba(255,182,193,0.5); font-size: 14px;
  font-family: 'Noto Naskh Arabic', 'Tajawal', serif;
}
.photo-placeholder .icon { font-size: 34px; margin-bottom: 8px; }

/* Smart media — fits ANY aspect ratio without cropping */
.media-wrapper {
  border-radius: 16px; overflow: hidden;
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
  position: relative;
}
.media-wrapper img {
  width: 100%; height: auto;
  display: block; border-radius: inherit;
  max-height: 500px;
  object-fit: contain;
  background: rgba(0,0,0,0.2);
}
.media-wrapper video {
  width: 100%; height: auto;
  display: block; border-radius: inherit;
  max-height: 500px;
  object-fit: contain;
  background: #000;
}

/* Video play overlay */
.video-play-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  cursor: pointer; z-index: 3;
  border-radius: inherit;
  transition: background 0.3s ease;
}
.video-play-overlay:hover { background: rgba(0,0,0,0.15); }
.video-play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,105,180,0.7);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255,105,180,0.3);
}
.video-play-overlay:hover .video-play-btn {
  transform: scale(1.1);
  background: rgba(255,105,180,0.9);
  box-shadow: 0 0 50px rgba(255,105,180,0.5);
}
.video-play-btn::after {
  content: ''; display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-right: -3px;
}

/* Gallery card media */
.gallery-media { min-height: 220px; border-radius: 18px 18px 0 0; }
.gallery-media img, .gallery-media video { border-radius: 18px 18px 0 0; max-height: 350px; }

/* Timeline media */
.timeline-media { margin-top: 18px; border-radius: 14px; }
.timeline-media img, .timeline-media video { max-height: 400px; }


/* ══════════════════════════════════════════════════════════════
   SECTION TITLE
   ══════════════════════════════════════════════════════════════ */
.section-title { text-align: center; margin-bottom: 55px; }
.section-title .sub {
  font-size: 13px; letter-spacing: 4px; color: rgba(255,182,193,0.5);
  margin-bottom: 10px; font-family: 'Noto Naskh Arabic', serif;
}
.section-title h2 {
  font-family: 'Aref Ruqaa', serif; font-size: clamp(30px, 6vw, 52px);
  font-weight: 700; color: #ffb6c1; line-height: 1.4;
}
.section-title .line {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, transparent, #ff69b4, transparent);
  margin: 16px auto 0;
}


/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 40px 20px; position: relative;
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,105,180,0.07) 0%, rgba(218,112,214,0.04) 40%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.hero-content { animation: heroIn 1.5s cubic-bezier(.16,1,.3,1) 0.3s both; }
.hero-subtitle {
  font-size: 14px; letter-spacing: 4px;
  color: rgba(255,182,193,0.55); margin-bottom: 24px;
  font-family: 'Noto Naskh Arabic', serif;
}
.hero-title {
  font-family: 'Aref Ruqaa', serif;
  font-size: clamp(44px, 9vw, 100px); font-weight: 700;
  line-height: 1.3; margin-bottom: 4px;
  background: linear-gradient(135deg, #ffd700, #ff69b4, #da70d6, #ffb6c1, #ffd700);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease infinite;
}
.hero-name {
  font-family: 'Amiri', serif;
  font-size: clamp(30px, 6vw, 60px); font-weight: 700;
  color: #ffd700; margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(255,215,0,0.25);
}
.hero-name-sub {
  font-family: 'Amiri', serif;
  font-size: clamp(18px, 3.5vw, 30px); font-weight: 400;
  font-style: italic; color: #ffb6c1;
  margin-bottom: 35px; letter-spacing: 1px;
}
.hero-photo {
  width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 35px;
  border: 3px solid rgba(255,182,193,0.25);
  animation: gentlePulse 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.hero-text {
  max-width: 540px; margin: 0 auto; font-size: 19px;
  line-height: 2; color: rgba(240,230,246,0.7);
  font-family: 'Noto Naskh Arabic', serif;
}
.scroll-arrow {
  margin-top: 35px; animation: floatGentle 3s ease-in-out infinite;
  font-size: 28px; cursor: pointer; color: rgba(255,182,193,0.5);
  text-decoration: none; display: inline-block;
}
.spotify-wrap {
  margin-top: 40px; max-width: 380px; margin-left: auto; margin-right: auto;
  border-radius: 14px; overflow: hidden; opacity: 0.9;
}


/* ══════════════════════════════════════════════════════════════
   MESSAGE SECTION
   ══════════════════════════════════════════════════════════════ */
.message-section { padding: 80px 20px 60px; max-width: 750px; margin: 0 auto; text-align: center; }
.message-box {
  background: linear-gradient(135deg, rgba(255,105,180,0.05), rgba(218,112,214,0.03));
  border: 1px solid rgba(255,182,193,0.12);
  border-radius: 28px; padding: 50px 38px;
  position: relative; overflow: hidden;
  animation: borderGlow 4s ease-in-out infinite;
}
.message-box .corner { position: absolute; font-size: 20px; }
.message-box .corner-tr { top: 16px; right: 20px; color: rgba(255,215,0,0.2); }
.message-box .corner-bl { bottom: 16px; left: 20px; color: rgba(255,105,180,0.2); }
.msg-line {
  line-height: 2.4; font-family: 'Noto Naskh Arabic', serif;
  font-weight: 400; color: rgba(240,230,246,0.7); font-size: 19px; margin-bottom: 4px;
}
.msg-line.first { font-size: 24px; color: #ffd700; font-family: 'Aref Ruqaa', serif; font-weight: 700; margin-bottom: 20px; }
.msg-line.last { font-size: 21px; color: #ffb6c1; font-family: 'Aref Ruqaa', serif; margin-top: 20px; }
.msg-divider { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.msg-divider .line-l { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,105,180,0.3)); }
.msg-divider .line-r { width: 40px; height: 1px; background: linear-gradient(90deg, rgba(255,105,180,0.3), transparent); }
.msg-divider .heart { font-size: 18px; animation: gentlePulse 2s ease-in-out infinite; }


/* ══════════════════════════════════════════════════════════════
   "عرفتك في العمر ده" — CHILDHOOD SECTION
   ══════════════════════════════════════════════════════════════ */
.childhood-section { padding: 80px 20px 60px; max-width: 700px; margin: 0 auto; text-align: center; }
.childhood-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.04), rgba(255,105,180,0.04));
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 28px; padding: 45px 35px;
  position: relative; overflow: hidden;
  animation: borderGlow 5s ease-in-out infinite;
}
.childhood-photo-frame {
  width: 220px; height: 260px; margin: 0 auto 30px;
  border-radius: 20px; overflow: hidden;
  border: 3px solid rgba(255,215,0,0.2);
  box-shadow: 0 10px 40px rgba(255,105,180,0.12), 0 0 60px rgba(255,215,0,0.06);
  animation: softFloat 6s ease-in-out infinite;
  background: rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.childhood-photo-frame img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: inherit;
}
.childhood-photo-frame video {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: inherit;
  background: #000;
}
.childhood-frame-deco {
  position: absolute; font-size: 16px;
  color: rgba(255,215,0,0.3);
  animation: twinkle 3s ease-in-out infinite;
}
.childhood-frame-deco.tl { top: -10px; right: -10px; }
.childhood-frame-deco.br { bottom: -10px; left: -10px; animation-delay: 1.5s; }
.childhood-title {
  font-family: 'Aref Ruqaa', serif;
  font-size: clamp(24px, 5vw, 38px);
  color: #ffd700; margin-bottom: 8px;
  line-height: 1.4;
}
.childhood-subtitle {
  font-family: 'Amiri', serif;
  font-size: clamp(18px, 3.5vw, 26px);
  color: #ffb6c1; font-style: italic;
  margin-bottom: 20px;
}
.childhood-text {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 17px; line-height: 2.2;
  color: rgba(240,230,246,0.65);
  max-width: 550px; margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════════ */
.timeline-section { padding: 80px 20px 60px; max-width: 820px; margin: 0 auto; }
.timeline-wrap { position: relative; padding-right: 45px; }
.timeline-line {
  position: absolute; right: 14px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,105,180,0.3), rgba(218,112,214,0.3), transparent);
}
.timeline-item { margin-bottom: 50px; position: relative; }
.timeline-dot {
  position: absolute; right: -39px; top: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; animation: twinkle 3s ease-in-out infinite;
}
.timeline-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,182,193,0.1);
  border-radius: 18px; padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.timeline-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(-5px);
}
.timeline-date {
  font-size: 12px; letter-spacing: 2px; margin-bottom: 10px;
  font-family: 'Amiri', serif; font-weight: 700;
}
.timeline-desc { font-size: 17px; line-height: 1.9; color: rgba(240,230,246,0.75); font-weight: 300; }


/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery-section { padding: 60px 20px; max-width: 920px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-card {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,182,193,0.08);
  background: rgba(255,255,255,0.02);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
}
.gallery-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255,105,180,0.15);
}
.gallery-label {
  padding: 14px 20px; font-size: 15px;
  color: rgba(255,182,193,0.65); font-family: 'Noto Naskh Arabic', serif;
}


/* ══════════════════════════════════════════════════════════════
   LOVE LETTER
   ══════════════════════════════════════════════════════════════ */
.letter-section { padding: 80px 20px; max-width: 680px; margin: 0 auto; text-align: center; }
.envelope {
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,105,180,0.04), rgba(218,112,214,0.02));
  border: 1px solid rgba(255,182,193,0.15);
  border-radius: 26px; padding: 55px 38px 35px;
  position: relative; overflow: hidden;
  transition: all 0.8s cubic-bezier(.16,1,.3,1);
  animation: glowPulse 3s ease-in-out infinite;
}
.envelope.open {
  padding: 50px 38px;
  background: linear-gradient(135deg, rgba(255,105,180,0.08), rgba(218,112,214,0.06));
  animation: none;
}
.envelope-closed { animation: floatGentle 2s ease-in-out infinite; }
.envelope-icon { font-size: 55px; margin-bottom: 18px; }
.envelope-hint { font-size: 18px; color: rgba(255,182,193,0.6); font-family: 'Amiri', serif; }
.letter-content { animation: fadeInScale 0.8s ease; }
.letter-greeting { font-size: 26px; margin-bottom: 24px; font-family: 'Aref Ruqaa', serif; color: #ffd700; }
.letter-body {
  font-size: 18px; line-height: 2.2; color: rgba(240,230,246,0.8);
  font-family: 'Noto Naskh Arabic', serif; font-weight: 400;
  text-align: right;
}
.letter-sign { margin-top: 35px; }
.letter-sign .forever { font-family: 'Aref Ruqaa', serif; font-size: 22px; color: #ffb6c1; }
.letter-sign .from { margin-top: 8px; font-size: 14px; color: rgba(255,182,193,0.4); font-family: 'Amiri', serif; }


/* ══════════════════════════════════════════════════════════════
   REASONS I LOVE YOU
   ══════════════════════════════════════════════════════════════ */
.reasons-section { padding: 60px 20px 80px; max-width: 880px; margin: 0 auto; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.reason-card {
  cursor: pointer;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,182,193,0.08);
  border-radius: 20px; padding: 0 0 24px; text-align: center;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.reason-card:hover { border-color: rgba(255,182,193,0.2); transform: translateY(-4px); }
.reason-card.active {
  background: linear-gradient(135deg, rgba(255,105,180,0.12), rgba(218,112,214,0.08));
  border-color: rgba(255,105,180,0.3); transform: translateY(0);
}

/* Reason thumbnail photo */
.reason-photo {
  width: 100%; height: 130px; overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: rgba(0,0,0,0.15);
  margin-bottom: 14px;
}
.reason-photo-placeholder {
  width: 100%; height: 100%; border-radius: 20px 20px 0 0;
  border: none; background: linear-gradient(135deg, rgba(255,105,180,0.08), rgba(218,112,214,0.05));
}
.reason-photo-img {
  width: 100%; height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.reason-card:hover .reason-photo-img { transform: scale(1.05); }

.reason-emoji { font-size: 32px; margin-bottom: 10px; transition: transform 0.3s; padding: 0 24px; }
.reason-card.active .reason-emoji { transform: scale(1.3); animation: rotateHeart 1s ease-in-out infinite; }
.reason-title { font-size: 18px; font-family: 'Aref Ruqaa', serif; color: #ffb6c1; margin-bottom: 10px; padding: 0 24px; }
.reason-text {
  font-size: 15px; line-height: 1.9; color: rgba(240,230,246,0.6);
  font-family: 'Tajawal', sans-serif; font-weight: 300;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: all 0.5s ease; padding: 0 24px;
}
.reason-card.active .reason-text { max-height: 250px; opacity: 1; padding-top: 6px; padding-bottom: 4px; }

/* ══════════════════════════════════════════════════════════════
   PLACEHOLDER NUMBERS (visible guide for file ordering)
   ══════════════════════════════════════════════════════════════ */
.placeholder-num {
  display: block; margin-top: 4px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,215,0,0.45);
  font-family: 'Tajawal', sans-serif;
  letter-spacing: 1px;
  direction: ltr;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  text-align: center; padding: 70px 20px 50px;
  border-top: 1px solid rgba(255,182,193,0.06);
}
.footer-heart { font-size: 40px; margin-bottom: 18px; animation: gentlePulse 2s ease-in-out infinite; }
.footer-text { font-family: 'Aref Ruqaa', serif; font-size: 22px; color: rgba(255,182,193,0.5); line-height: 1.6; }
.footer-sub { margin-top: 10px; font-size: 14px; color: rgba(255,182,193,0.25); font-family: 'Tajawal', sans-serif; letter-spacing: 1px; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .message-box { padding: 35px 22px; }
  .timeline-wrap { padding-right: 38px; }
  .timeline-dot { right: -35px; width: 26px; height: 26px; font-size: 11px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .envelope { padding: 40px 24px 28px; }
  .envelope.open { padding: 38px 24px; }
  .letter-body { font-size: 16px; }
  .spotify-wrap { max-width: 100%; }
  .childhood-photo-frame { width: 180px; height: 220px; }
  .childhood-card { padding: 35px 24px; }
}
@media (max-width: 400px) {
  .reasons-grid { grid-template-columns: 1fr; }
}
