/* ============================================================
   SECTIONS.CSS — Secciones 2-10 estilos
   ============================================================ */

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 2: Presentación
   ═══════════════════════════════════════════════════════════ */
#section-presentation {
  background: var(--color-cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.presentation-title-wrap {
  padding: 80px 24px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.presentation-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--color-deep);
  line-height: 1.2;
}

.presentation-title span {
  color: var(--color-gold);
}

/* Cover photo with clip-path and decorations */
.cover-photo-wrap {
  position: relative;
  width: calc(100% - 48px);
  max-width: 800px;
  height: 70vh;
  overflow: hidden;
  margin: 48px auto 0;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.cover-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(249, 244, 239, 0.15) 0%,
      rgba(249, 244, 239, 0) 30%,
      rgba(249, 244, 239, 0) 55%,
      rgba(249, 244, 239, 0.8) 80%,
      rgba(249, 244, 239, 1) 100%);
}

/* Decorative roses around the image */
.cover-roses {
  position: absolute;
  pointer-events: none;
  font-size: 2.5rem;
  animation: sway 3s ease-in-out infinite;
}

.cover-roses-tl {
  top: 10%;
  left: 4%;
  animation-delay: 0s;
}

.cover-roses-tr {
  top: 10%;
  right: 4%;
  animation-delay: 0.5s;
}

.cover-roses-bl {
  bottom: 20%;
  left: 4%;
  animation-delay: 1s;
  font-size: 2rem;
}

.cover-roses-br {
  bottom: 20%;
  right: 4%;
  animation-delay: 1.5s;
  font-size: 2rem;
}

.presentation-sub {
  max-width: 680px;
  margin: -40px auto 0;
  padding: 0 24px 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.presentation-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  animation: fadeInUp 1s ease both;
}

/* Rose separator */
.rose-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto;
}

.rose-separator-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
}

.rose-separator-icon {
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   SVG DIVIDERS
   ═══════════════════════════════════════════════════════════ */
.divider-waves {
  fill: var(--color-warm-white);
}

.divider-cream {
  fill: var(--color-cream);
}

.divider-sage {
  fill: rgba(122, 158, 126, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 3: Countdown + Mensaje
   ═══════════════════════════════════════════════════════════ */
#section-countdown {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
  padding: 80px 24px;
}

.countdown-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.countdown-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 1) 100%);
  z-index: 1;
}

#section-countdown .section-inner {
  position: relative;
  z-index: 2;
}

.countdown-header {
  text-align: center;
  margin-bottom: 48px;
}

.countdown-title {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-deep);
  font-weight: 600;
  margin-bottom: 4px;
}

.countdown-subtitle {
  font-family: var(--font-script);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-align: center;
}

/* ── FlipDown.js — Layout fluido responsive con branding ── */

/* Wrapper: centra y permite overflow para la animación 3D */
.flipdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 16px;
  overflow: visible !important;
}

.flipdown-wrapper::before,
.flipdown-wrapper::after {
  display: none !important;
  content: none !important;
}

/* ── Contenedor principal: todas las medidas via custom properties ──
   Se definen aquí para que las reglas hijas puedan heredarlas con var() */
#flipdown.flipdown {
  /* ── Tokens de tamaño fluidos ── */
  --fd-tile-w: clamp(1.6rem, 7vw, 4rem);
  /* ancho de cada dígito      */
  --fd-tile-h: clamp(2.1rem, 9.2vw, 5.2rem);
  /* alto total del dígito     */
  --fd-half-h: calc(var(--fd-tile-h) / 2);
  /* cada mitad del dígito     */
  --fd-font-sz: clamp(1.6rem, 7vw, 4rem);
  /* tamaño de fuente dígitos  */
  --fd-gap: clamp(0.9rem, 4vw, 2.4rem);
  /* separación entre grupos   */
  --fd-dot: clamp(0.32rem, 1.1vw, 0.55rem);
  /* tamaño del punto ":"      */
  --fd-label: clamp(0.45rem, 1.3vw, 0.65rem);
  /* fuente de etiqueta        */
  --fd-radius: clamp(4px, 0.8vw, 8px);
  /* radio de borde del tile   */

  display: inline-flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 0 0 clamp(1.6rem, 5vw, 2.2rem) 0 !important;
  overflow: visible !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

#flipdown.flipdown::before,
#flipdown.flipdown::after {
  display: none !important;
  content: none !important;
}

/* ── Grupo de rotores (cada unidad: días / horas / minutos / segundos) ── */
.flipdown.flipdown__theme-light .rotor-group {
  position: relative !important;
  float: none !important;
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: clamp(3px, 0.6vw, 5px) !important;
  /* padding-right = espacio donde vive el punto separador */
  padding-right: var(--fd-gap) !important;
  /* padding-bottom = espacio para la etiqueta bajo los dígitos */
  padding-bottom: clamp(1.2rem, 4vw, 1.8rem) !important;
  margin: 0 !important;
}

/* El último grupo (segundos) no necesita separador a la derecha */
.flipdown.flipdown__theme-light .rotor-group:last-child {
  padding-right: 0 !important;
}

/* ── Etiqueta de unidad (Days / Hours / Minutes / Seconds) ── */
.flipdown.flipdown__theme-light .rotor-group-heading {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 0 !important;
  /* Hide original English text */
}

.flipdown.flipdown__theme-light .rotor-group-heading:before {
  display: block !important;
  color: #586e26 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: var(--fd-label) !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
}

/* Traducir etiquetas de FlipDown a español */
.flipdown.flipdown__theme-light .rotor-group:nth-child(1) .rotor-group-heading:before {
  content: "Días" !important;
}

.flipdown.flipdown__theme-light .rotor-group:nth-child(2) .rotor-group-heading:before {
  content: "Horas" !important;
}

.flipdown.flipdown__theme-light .rotor-group:nth-child(3) .rotor-group-heading:before {
  content: "Minutos" !important;
}

.flipdown.flipdown__theme-light .rotor-group:nth-child(4) .rotor-group-heading:before {
  content: "Segundos" !important;
}

/* ── Tile individual del rotor ── */
.flipdown.flipdown__theme-light .rotor {
  position: relative !important;
  width: var(--fd-tile-w) !important;
  height: var(--fd-tile-h) !important;
  background-color: #faf9f6 !important;
  color: var(--color-deep) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: var(--fd-font-sz) !important;
  font-weight: 600 !important;
  border-radius: var(--fd-radius) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow:
    2px 4px 10px rgba(32, 53, 0, 0.05),
    -2px -2px 10px rgba(255, 255, 255, 0.8) !important;
}

/* Línea dorada central entre top y bottom */
.flipdown.flipdown__theme-light .rotor:after {
  border-top: 1px solid rgba(119, 140, 67, 0.15) !important;
}

/* ── Mitad superior (estática + tarjeta frontal animada) ── */
.flipdown.flipdown__theme-light .rotor-top,
.flipdown.flipdown__theme-light .rotor-leaf-front {
  width: var(--fd-tile-w) !important;
  height: var(--fd-half-h) !important;
  /* line-height = tile completo → centra el dígito; overflow:hidden lo recorta a la mitad */
  line-height: var(--fd-tile-h) !important;
  background-color: #faf9f6 !important;
  color: var(--color-deep) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: var(--fd-font-sz) !important;
  font-weight: 600 !important;
  border-top-left-radius: var(--fd-radius) !important;
  border-top-right-radius: var(--fd-radius) !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* ── Mitad inferior (estática + tarjeta trasera animada) ── */
.flipdown.flipdown__theme-light .rotor-bottom,
.flipdown.flipdown__theme-light .rotor-leaf-rear {
  width: var(--fd-tile-w) !important;
  height: var(--fd-half-h) !important;
  line-height: 0 !important;
  background-color: #f3f1e9 !important;
  color: var(--color-deep) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: var(--fd-font-sz) !important;
  font-weight: 600 !important;
  border-bottom-left-radius: var(--fd-radius) !important;
  border-bottom-right-radius: var(--fd-radius) !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* ── Tarjeta animada (el flap) ── */
.flipdown.flipdown__theme-light .rotor-leaf {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: var(--fd-tile-w) !important;
  height: var(--fd-tile-h) !important;
}

/* ── Puntos separadores ":" entre grupos ──
   FlipDown genera ::before (punto superior) y ::after (punto inferior)
   en los grupos nth-child(n+2):nth-child(-n+3) → solo grupos 2 y 3.
   Usamos -n+4 para cubrir los 3 separadores: DD : HH : MM : SS.
   El left negativo centra cada punto en el hueco (padding-right) del grupo anterior. ── */
.flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+4)::before,
.flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+4)::after {
  display: block !important;
  position: absolute !important;
  content: "" !important;
  width: var(--fd-dot) !important;
  height: var(--fd-dot) !important;
  border-radius: 50% !important;
  background-color: #586e26 !important;
  /*
   * El gap (padding-right del grupo anterior) crea el hueco a la IZQUIERDA de este grupo.
   * Centrar el punto en ese hueco: -(gap/2) desde el borde izq, corrigiendo por el radio del punto.
   */
  left: calc(var(--fd-gap) * -0.5 - var(--fd-dot) * 0.5) !important;
}

/* Punto superior: tercio superior del tile */
.flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+4)::before {
  top: calc(var(--fd-tile-h) * 0.28) !important;
  transform: translateY(-50%) !important;
}

/* Punto inferior: tercio inferior del tile */
.flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+4)::after {
  top: calc(var(--fd-tile-h) * 0.72) !important;
  transform: translateY(-50%) !important;
}

/* Quote / Message */
.quote-section {
  max-width: 780px;
  margin: 64px auto 0;
  position: relative;
  padding: 0 24px;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.7;
  color: var(--color-gold-light);
  opacity: 0.5;
  display: block;
}

.quote-mark-left {
  text-align: left;
}

.quote-mark-right {
  text-align: right;
}

.quote-title {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--color-deep);
  text-align: center;
  margin: -20px 0 24px;
}

.quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.9;
  text-align: center;
}

.quote-signature {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--color-gold);
  text-align: center;
  margin-top: 24px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 4: RSVP
   ═══════════════════════════════════════════════════════════ */
#section-rsvp {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  padding: 80px 24px;
}

.rsvp-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.rsvp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.6) 0%, rgba(253, 251, 247, 0.85) 50%, rgba(253, 251, 247, 1) 100%);
  z-index: 1;
}

.rsvp-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.rsvp-guest-display {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  padding: 40px 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.rsvp-guest-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-rose-light), var(--color-gold), var(--color-sage-light));
}

.rsvp-guest-count {
  font-family: var(--font-script);
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.rsvp-guest-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.rsvp-names-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.rsvp-name-chip {
  background: linear-gradient(135deg, var(--color-rose-light), var(--color-gold-light));
  color: var(--color-deep);
  font-family: var(--font-script);
  font-size: 1rem;
  font-style: italic;
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(212, 133, 155, 0.2);
}

.rsvp-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.rsvp-notice {
  margin-top: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(212, 133, 155, 0.08));
  border: 1px solid rgba(201, 169, 110, 0.25);
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--color-text);
}

.rsvp-notice strong {
  color: var(--color-rose-dark);
  font-style: normal;
}

/* Calendar options */
.calendar-options {
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  animation: fadeInUp 0.4s ease;
}

.calendar-options.show {
  display: flex;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-fast);
  text-decoration: none;
}

.calendar-btn-google {
  background: #4285f4;
  color: white;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.calendar-btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.calendar-btn-apple {
  background: #555;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.calendar-btn-apple:hover {
  transform: translateY(-2px);
  background: #333;
}

.calendar-btn-ics {
  background: var(--color-warm-white);
  color: var(--color-gold-dark);
  border: 1px solid var(--color-gold-light);
  box-shadow: var(--shadow-neumorphic);
}

.calendar-btn-ics:hover {
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 5: Itinerario
   ═══════════════════════════════════════════════════════════ */
#section-itinerary {
  position: relative;
  background: transparent;
  padding: 0;
  z-index: 1;
  overflow: visible;
}

.itinerary-sticky-wrap {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}

.itinerary-sticky-wrap.in-view {
  opacity: 1;
}

.itinerary-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1.1);
  transition: transform 1s ease;
}

.itinerary-sticky-wrap.in-view .itinerary-bg-video {
  transform: scale(1);
}

.itinerary-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 246, 0.85);
  /* var(--color-warm-white) with opacity */
  pointer-events: none;
}

.itinerary-content {
  margin-top: -100vh;
  min-height: 100vh;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.timeline {
  max-width: 700px;
  margin: 48px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, var(--color-gold-light) 10%, var(--color-rose-light) 50%, var(--color-gold-light) 90%, transparent 100%);
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-icon-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-warm-white);
  box-shadow: var(--shadow-neumorphic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  animation: dotPulse 2s ease-in-out infinite;
  margin-top: 8px;
  align-self: center;
}

.timeline-time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.timeline-event {
  font-family: var(--font-script);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-deep);
  line-height: 1.3;
}

.timeline-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    gap: 16px;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .timeline-item .timeline-content[style*="opacity:0"],
  .timeline-item .timeline-content[style*="opacity: 0"] {
    display: none !important;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    align-self: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 6: Ubicación
   ═══════════════════════════════════════════════════════════ */
#section-location {
  position: relative;
  background-image: url('../assets/villapalma.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 24px;
}

@media (min-width: 1024px) {
  #section-location {
    background-attachment: fixed;
  }
}

#section-location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 71, 11, 0.75); /* Overlay oscuro para resaltar el card */
  z-index: 1;
}

.location-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

#section-location .section-label,
#section-location .section-title {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.location-card {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Embedded Google Map */
.map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  line-height: 0;
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.location-name {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--color-deep);
  line-height: 1.1;
}

.location-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201, 169, 110, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
}

.location-directions {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
}

.location-notice {
  padding: 16px;
  border-radius: var(--radius-md);
  border-left: 4px solid;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
}

.notice-warning {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--color-gold);
  color: var(--color-text);
}

.notice-info {
  background: rgba(122, 158, 126, 0.1);
  border-color: var(--color-sage);
  color: var(--color-text);
}

/* Location SVG illustration */
.location-svg-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
  animation: float 4s ease-in-out infinite;
}

.location-svg-wrap svg {
  width: 80px;
  height: 80px;
}

/* Venue photo (villapalma.png) above the title */
.location-venue-img-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  margin-bottom: 20px;
  line-height: 0;
}

.location-venue-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.location-venue-img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .location-venue-img {
    height: 180px;
  }
}

@keyframes pulseMapBtn {
  0% { box-shadow: 0 0 0 0 rgba(88, 110, 38, 0.6), 0 8px 24px rgba(88,110,38,0.3), inset 0 2px 2px rgba(255,255,255,0.2), inset 0 -2px 4px rgba(0,0,0,0.1); }
  70% { box-shadow: 0 0 0 20px rgba(88, 110, 38, 0), 0 8px 24px rgba(88,110,38,0.3), inset 0 2px 2px rgba(255,255,255,0.2), inset 0 -2px 4px rgba(0,0,0,0.1); }
  100% { box-shadow: 0 0 0 0 rgba(88, 110, 38, 0), 0 8px 24px rgba(88,110,38,0.3), inset 0 2px 2px rgba(255,255,255,0.2), inset 0 -2px 4px rgba(0,0,0,0.1); }
}

.pulse-btn {
  animation: pulseMapBtn 2.5s infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-deep) 100%);
  color: white;
}

.pulse-btn:hover {
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-dark) 100%);
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-container {
    min-height: 350px;
  }
  .location-svg-wrap {
    justify-content: center;
  }
  .location-info {
    text-align: center;
  }
  .location-city {
    margin: 0 auto;
  }
  .location-card {
    padding: 32px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 7: Código de Vestimenta
   ═══════════════════════════════════════════════════════════ */
#section-dresscode {
  background: linear-gradient(160deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
  padding: 80px 24px;
  text-align: center;
}

.dresscode-toggle-btn {
  position: relative;
  overflow: visible;
}

.dresscode-toggle-btn .btn-icon {
  font-size: 1.3rem;
  transition: transform 0.4s ease;
}

.dresscode-toggle-btn.open .btn-icon {
  transform: rotate(45deg);
}

.dresscode-content {
  max-width: 800px;
  margin: 32px auto 0;
  display: none;
  animation: fadeInUp 0.5s ease;
}

.dresscode-content.open {
  display: block;
}

.dresscode-theme {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 40px;
  box-shadow: var(--shadow-neumorphic);
  margin-bottom: 32px;
}

.dresscode-theme-title {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 8px;
}

.dresscode-theme-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Color palette */
.color-palette {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.color-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.color-swatch {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 3px rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-name {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Restrictions */
.dresscode-restrictions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.restriction-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-neumorphic-inset);
}

.restriction-title {
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.restriction-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.restriction-list li {
  font-size: 0.82rem;
  color: var(--color-text);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.restriction-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--color-rose);
  font-size: 0.7rem;
  top: 2px;
}

.restriction-list li.ok::before {
  content: '✓';
  color: var(--color-sage);
}

.dresscode-sub-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.dresscode-note {
  margin-top: 20px;
  font-family: var(--font-script);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .dresscode-restrictions {
    grid-template-columns: 1fr;
  }

  .dresscode-theme {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 8: Alojamiento + Palabras
   ═══════════════════════════════════════════════════════════ */
#section-lodging {
  position: relative;
  background-image: url('../assets/palabras.jpeg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 24px 120px 24px;
}

@media (min-width: 1024px) {
  #section-lodging {
    background-attachment: fixed;
  }
}

#section-lodging::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 71, 11, 0.65); /* Dark olive overlay for better readability */
  z-index: 1;
}

#section-lodging .section-inner {
  position: relative;
  z-index: 2;
}

#section-lodging .section-label {
  color: var(--color-cream);
}

#section-lodging .section-title {
  color: #ffffff;
}

.lodging-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 48px auto 0;
}

.lodging-card {
  background: rgba(250, 245, 240, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  max-width: 450px;
  width: 100%;
}

.lodging-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.lodging-card-accommodation::before {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.lodging-card-words::before {
  background: linear-gradient(90deg, var(--color-rose), var(--color-rose-light));
}

.lodging-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.lodging-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.lodging-title {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 12px;
}

.lodging-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lodging-priority {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.priority-chip {
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.priority-chip-1 {
  background: rgba(201, 169, 110, 0.15);
  color: var(--color-gold-dark);
}

.priority-chip-2 {
  background: rgba(122, 158, 126, 0.15);
  color: #4a7a4e;
}

.priority-chip-3 {
  background: rgba(212, 133, 155, 0.15);
  color: var(--color-rose-dark);
}

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

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 9: Piscina + Buzón
   ═══════════════════════════════════════════════════════════ */
#section-extras {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
  padding: 80px 24px;
}

.extras-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.extras-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

#section-extras .section-inner {
  position: relative;
  z-index: 2;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 48px auto 0;
  align-items: start;
}

/* Pool */
.pool-section {
  text-align: center;
}

.pool-svg-wrap {
  margin: 0 auto 24px;
  width: 180px;
  height: 140px;
  position: relative;
}

.pool-notice {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(122, 158, 126, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--color-text);
  border-left: 3px solid var(--color-sage);
  text-align: left;
}

/* Mailbox */
.mailbox-section {
  text-align: center;
}

.mailbox-svg-wrap {
  margin: 0 auto 24px;
  width: 160px;
  height: 180px;
  position: relative;
  cursor: pointer;
}

.mailbox-svg-wrap:hover .mailbox-flag {
  animation: flagWave 0.8s ease-in-out infinite;
}

.mailbox-confetti-container {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  width: 0;
  height: 0;
}

.confetti-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: confettiPop 0.8s ease-out forwards;
}

.mailbox-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--color-text);
  line-height: 1.7;
  margin-top: 16px;
}

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

/* ═══════════════════════════════════════════════════════════
   SECCIÓN 10: Galería + Retos
   ═══════════════════════════════════════════════════════════ */
#section-gallery {
  background: var(--color-cream);
  padding: 80px 24px;
}

.gallery-inner {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

/* QR section */
.qr-section {
  text-align: center;
}

.qr-container {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neumorphic);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 12px;
}

.qr-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--color-warm-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Photo challenges */
/* Unplugged Ceremony */
.unplugged-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unplugged-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.unplugged-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(119, 140, 67, 0.15);
}

/* Decorative gradient line */
.unplugged-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.unplugged-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(119, 140, 67, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 2px dashed rgba(119, 140, 67, 0.3);
  animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {
  0% { box-shadow: 0 0 0 0 rgba(119, 140, 67, 0.2); }
  70% { box-shadow: 0 0 0 12px rgba(119, 140, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(119, 140, 67, 0); }
}

.unplugged-title {
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 16px;
}

.unplugged-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.unplugged-highlight {
  background: linear-gradient(135deg, rgba(119, 140, 67, 0.08), rgba(201, 169, 110, 0.08));
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 24px;
  border-left: 3px solid var(--color-gold);
  text-align: left;
}

.unplugged-highlight-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  display: block;
}

.unplugged-highlight-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

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

/* ═══════════════════════════════════════════════════════════
   MODAL: RSVP Confirmation
   ═══════════════════════════════════════════════════════════ */
.modal-icon {
  font-size: 3rem;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.modal-title {
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-deep);
  text-align: center;
  margin-bottom: 16px;
}

.modal-text {
  font-family: var(--font-script);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-highlight {
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(212, 133, 155, 0.08));
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 110, 0.25);
  font-size: 0.85rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 28px;
}

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

/* Lodging/Words form modal */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

/* ── Custom RSVP elements in Modal ── */
.modal-group-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-deep);
  text-align: center;
  margin-top: -8px;
  margin-bottom: 16px;
}

.modal-instructions {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-rsvp-guest-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-height: 55vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
}

.modal-rsvp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-cream);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  gap: 12px;
  box-shadow: var(--shadow-neumorphic-inset);
}

.modal-rsvp-guest-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-deep);
  text-align: left;
  word-break: break-word;
}

/* Elegant custom toggle switch */
.rsvp-toggle-group {
  display: inline-flex;
  background: var(--color-border);
  padding: 3px;
  border-radius: 100px;
  position: relative;
  user-select: none;
  flex-shrink: 0;
}

.rsvp-toggle-label {
  position: relative;
  cursor: pointer;
}

.rsvp-toggle-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rsvp-toggle-label span {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  text-align: center;
}

.rsvp-toggle-label input:checked+span {
  background: var(--color-warm-white);
  box-shadow: 0 2px 6px rgba(32, 53, 0, 0.1);
  color: var(--color-deep);
}

/* Special style for green "Asiste" selection */
.rsvp-toggle-label-asiste input:checked+span {
  background: var(--color-gold);
  color: #ffffff;
}

/* Special style for red "No asiste" selection */
.rsvp-toggle-label-no input:checked+span {
  background: #b87a7a;
  color: #ffffff;
}

.modal-rsvp-counter {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.modal-rsvp-warning {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #c94c4c;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 12px;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

@media (max-width: 380px) {
  .modal-rsvp-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Group title on main page */
.rsvp-group-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-rsvp-guest-list {
    max-height: 40vh;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN FAQ
   ═══════════════════════════════════════════════════════════ */
#section-faq {
  background: var(--color-warm-white);
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-cream);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-item details {
  width: 100%;
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-deep);
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-gold);
  font-weight: 400;
  transition: transform var(--transition-fast);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item details[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-content {
  padding: 0 24px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  margin-top: 8px;
  padding-top: 16px;
  animation: fadeIn 0.3s ease;
}

@media (max-width: 480px) {
  .faq-item summary {
    font-size: 0.95rem;
    padding: 16px;
  }
  .faq-item .faq-content {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--color-deep);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 48px 24px;
}

.footer-names {
  font-family: var(--font-script);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.footer-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.footer-love {
  font-size: 1.5rem;
  animation: glowPulse 2s ease-in-out infinite;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 24px;
  letter-spacing: 0.1em;
}