/* ═══════════════════════════════════════════════════════════════
   BABY SHOWER LUCAS · styles.css
   duskyberry 2026
═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --bg: #f1f1f1;
  --white: #ffffff;
  --green: #b5d9c8;
  --green-soft: #d4eee0;
  --aqua: #a8d8d8;
  --aqua-soft: #cdeaea;
  --blue: #b8cfe8;
  --blue-soft: #daeaf8;
  --brown: #c4a882;
  --brown-soft: #e8d8c0;
  --gold: #e8c97a;
  --text: #2d2d2d;
  --text-mid: #5a5a5a;
  --text-light: #8a8a8a;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-blur: blur(18px) saturate(160%);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 8px 48px rgba(160, 160, 180, 0.18),
    0 2px 8px rgba(180, 180, 200, 0.1);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-hand: "Caveat", cursive;
  --font-body: "Poppins", sans-serif;

  --ease-smooth: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── GLOBAL BACKGROUND ── */
/* Background real (reemplaza el ::before) */
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background-image: url("https://raw.githubusercontent.com/edvardoviedo/recursos/refs/heads/main/duskyberry/baby_fake/bg_baby.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -2;
}

/* Overlay (reemplaza el ::after) */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: rgba(241, 241, 241, 0.3);

  z-index: -1;
}

/* Reset básico */
img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-soft);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--aqua) 100%);
  color: #2d4a3e;
  box-shadow: 0 4px 20px rgba(168, 216, 216, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(168, 216, 216, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: var(--text-mid);
  box-shadow: 0 2px 12px rgba(180, 180, 200, 0.15);
}

.btn-full {
  width: 100%;
}

/* ── SECTION WRAPPER ── */
.section {
  position: relative;
  padding: 4rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   INTRO SCREEN
═══════════════════════════════════════════════════════════════ */

#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s var(--ease-in-out), filter 0.8s var(--ease-in-out);
}

#intro-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(241, 241, 241, 0.45);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  z-index: 0;
}

#intro-screen.hidden {
  opacity: 0;
  filter: blur(20px);
  pointer-events: none;
}

/* Floating particles */
.intro-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

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

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.8);
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-120vh) scale(1.2) rotate(45deg);
  }
}

.intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem;
  max-width: 500px;
  text-align: center;
}

.intro-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  color: #3d3d3d;
  line-height: 1.7;
  animation: fadeInDown 1s var(--ease-soft) 0.3s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Interaction stage */
.intro-interaction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 1s var(--ease-soft) 0.7s both;
}

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

.drag-hint {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.drag-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  margin-top: -0.5rem;
}

.interaction-stage {
  position: relative;
  width: 300px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

/* Dashed connector line between bottle and baby */
.interaction-stage::before {
  content: "· · · · · · ·";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(181, 217, 200, 0.6);
  font-size: 1rem;
  letter-spacing: 2px;
  pointer-events: none;
  white-space: nowrap;
}

/* Baby target */
.baby-target {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 2px dashed rgba(181, 217, 200, 0.7);
  transition: transform 0.3s var(--ease-smooth), background 0.3s ease,
    border-color 0.3s ease;
  flex-shrink: 0;
}

.baby-target.active {
  background: rgba(181, 217, 200, 0.5);
  border-color: var(--green);
  transform: scale(1.12);
}

.baby-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(181, 217, 200, 0.35) 0%,
    transparent 70%
  );
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.baby-emoji {
  font-size: 2.4rem;
  user-select: none;
  position: relative;
  z-index: 1;
}

/* Bottle draggable */
.bottle-drag {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 20px rgba(180, 200, 220, 0.3);
  cursor: grab;
  touch-action: none;
  animation: heartbeat 2.2s ease-in-out infinite;
  transition: box-shadow 0.2s ease;
  user-select: none;
  z-index: 2;
  flex-shrink: 0;
}

.bottle-drag:active {
  cursor: grabbing;
}

.bottle-drag.dragging {
  animation: none;
  box-shadow: 0 8px 32px rgba(168, 216, 216, 0.5);
  transform: scale(1.1);
}

.bottle-emoji {
  font-size: 2.4rem;
  pointer-events: none;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.05);
  }
  56% {
    transform: scale(1);
  }
}

/* Intro deco */
.intro-deco {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  color: var(--brown);
  font-size: 0.8rem;
  opacity: 0.6;
  animation: fadeInUp 1s var(--ease-soft) 1.2s both;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* top fade */ linear-gradient(
      to bottom,
      rgba(20, 24, 22, 0.08) 0%,
      transparent 30%
    ),
    /* bottom text area */
      linear-gradient(
        to top,
        rgba(20, 24, 22, 0.78) 0%,
        rgba(20, 24, 22, 0.3) 45%,
        transparent 72%
      ),
    /* very bottom fade into page bg */
      linear-gradient(to top, rgba(241, 241, 241, 0.55) 0%, transparent 12%);
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem 4rem;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.hero-subtitle strong {
  font-weight: 600;
}

.hero-divider {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero-date-preview {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════
   EMOTIONAL
═══════════════════════════════════════════════════════════════ */

.emotional-card {
  text-align: center;
}

.emotional-deco {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.emotional-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-weight: 300;
}

.emotional-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--green);
  background: rgba(181, 217, 200, 0.15);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
}

.organizer-tag {
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  flex-wrap: wrap;
  justify-content: center;
}

.organizer-tag strong {
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════════════════════════════ */

.countdown-section {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.countdown-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  white-space: nowrap;
  overflow: hidden;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  min-width: 2ch;
  display: block;
  transition: transform 0.3s var(--ease-smooth);
}

.countdown-num.flip {
  animation: numFlip 0.35s var(--ease-smooth);
}

@keyframes numFlip {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.countdown-label {
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-sep {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--green);
  font-weight: 300;
  line-height: 1;
  opacity: 0.7;
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY (CSS only)
═══════════════════════════════════════════════════════════════ */

.gallery-section {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.gallery-section .section-title {
  padding: 0 1.25rem;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.25rem 1.25rem;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 260px;
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(160, 160, 180, 0.25);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 300;
}

.gallery-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   EVENT
═══════════════════════════════════════════════════════════════ */

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .event-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.event-info-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.event-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.event-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.event-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.event-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.map-card {
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1.5px solid var(--glass-border);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   ITINERARY
═══════════════════════════════════════════════════════════════ */

.itinerary-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.itinerary-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid var(--glass-border);
  margin-bottom: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(160, 160, 180, 0.1);
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s ease;
}

.itinerary-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(160, 160, 180, 0.18);
}

.itinerary-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.itinerary-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.itinerary-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.itinerary-time {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   PLAYLIST
═══════════════════════════════════════════════════════════════ */

.playlist-card {
  text-align: center;
}

.playlist-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.playlist-text strong {
  color: var(--text);
  font-weight: 600;
}
.playlist-text em {
  font-style: italic;
  color: var(--text-light);
}

.spotify-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════════════════════════
   RSVP FORM
═══════════════════════════════════════════════════════════════ */

.rsvp-card {
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.form-hint {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem; /* prevents iOS zoom */
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(200, 210, 220, 0.6);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(168, 216, 216, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.rsvp-success {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-emoji {
  font-size: 3rem;
  animation: popIn 0.5s var(--ease-smooth);
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.rsvp-success p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════════════
   GIFTS
═══════════════════════════════════════════════════════════════ */

.gifts-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gifts-icon {
  font-size: 3rem;
  animation: floatBounce 3s ease-in-out infinite;
}

.gifts-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.gifts-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 380px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.site-footer {
  text-align: center;
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-deco {
  color: var(--brown);
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.5em;
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
}
.footer-text strong {
  font-weight: 600;
  color: var(--text-mid);
}

.footer-sub {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════ */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .glass-card {
    padding: 1.5rem;
  }
  .section {
    padding: 3rem 1rem;
  }

  .countdown-track {
    padding: 1rem 1.25rem;
    gap: 0.6rem;
  }
  .countdown-num {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .event-actions {
    gap: 0.6rem;
  }
  .btn {
    font-size: 0.82rem;
    padding: 0.7rem 1.4rem;
  }

  .interaction-stage {
    width: 260px;
  }
  .bottle-drag,
  .baby-target {
    width: 68px;
    height: 68px;
  }
  .bottle-emoji,
  .baby-emoji {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }
  .glass-card {
    padding: 2.5rem;
  }
  .gallery-card {
    flex: 0 0 300px;
    height: 380px;
  }
}
