/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  --primary-gold: #CFA64A;
  --dark-gold: #9E7427;
  --champagne: #F7F1E7;
  --warm-ivory: #FCFAF6;
  --soft-beige: #EADFCF;
  --dark-text: #2B2B2B;
  --secondary-text: #6A6257;
  --whatsapp-green: #25D366;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --card-radius: 22px;
  --card-border: 1px solid #E7D8BC;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: #e8e4df;
  color: var(--dark-text);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==========================================================================
   MICROSITE CONTAINER
   ========================================================================== */
.microsite-container {
  width: 100%;
  max-width: 480px;
  background-color: var(--warm-ivory);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.12);
  overflow-x: hidden;
  position: relative;
}

section { padding: 32px 20px; }

/* ==========================================================================
   SECTION DIVIDER
   ========================================================================== */
.section-divider {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 1.5px;
}

.section-divider::before {
  content: "\221D";
  display: inline-block;
  margin-right: 12px;
  color: var(--primary-gold);
}

.section-divider::after {
  content: "\221D";
  display: inline-block;
  margin-left: 12px;
  color: var(--primary-gold);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.font-bold { font-weight: 600; }
.text-secondary { color: var(--secondary-text); font-size: 0.8rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #fff;
  box-shadow: 0 4px 15px rgba(207,166,74,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207,166,74,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}
.btn-secondary:hover {
  background: var(--primary-gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.7rem;
}

.btn-wa-light {
  background-color: #fff;
  color: var(--whatsapp-green);
  border: 2px solid #d4d4d4;
  width: 100%;
}
.btn-wa-light:hover {
  border-color: var(--whatsapp-green);
  box-shadow: 0 4px 15px rgba(37,211,102,0.2);
}

/* RSVP buttons */
.btn-rsvp-yes {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  width: 100%;
  font-size: 0.8rem;
  padding: 16px 24px;
  box-shadow: 0 4px 15px rgba(46,204,113,0.3);
}
.btn-rsvp-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46,204,113,0.45);
}

.btn-rsvp-no {
  background: transparent;
  color: var(--secondary-text);
  border: 2px solid #ddd;
  width: 100%;
  font-size: 0.8rem;
  padding: 16px 24px;
}
.btn-rsvp-no:hover {
  border-color: #bbb;
  color: var(--dark-text);
}

/* ==========================================================================
   WHATSAPP FAB
   ========================================================================== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 50%;
  transform: translateX(calc(240px + 12px));
  width: 54px;
  height: 54px;
  background: var(--whatsapp-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-fab:hover {
  transform: translateX(calc(240px + 12px)) scale(1.08);
  box-shadow: 0 10px 28px rgba(37,211,102,0.6);
}

/* ==========================================================================
   01. HERO
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=800&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,12,5,0.82) 0%,
    rgba(80,50,10,0.65) 50%,
    rgba(20,12,5,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.main-logo {
  height: 64px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

/* Nama tamu di hero */
.hero-guest-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(207, 166, 74, 0.4);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(8px);
}

.hero-guest-salutation {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}

.hero-guest-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fad97a, #d99b3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.3;
  margin-bottom: 6px;
}

.hero-guest-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.hero-guest-sub strong {
  color: var(--primary-gold);
}

/* VIP badge di hero */
.vip-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(207,166,74,0.5);
}

.wedding-title {
  font-family: 'Cinzel', serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.wedding-title span {
  background: linear-gradient(135deg, #fad97a, #d99b3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.6;
}

.tagline i { color: var(--primary-gold); }

.event-info-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(207,166,74,0.35);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.82rem;
}

.info-item i {
  color: var(--primary-gold);
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

.hero-actions { width: 100%; max-width: 320px; }
.hero-actions .btn { width: 100%; }

/* Scroll reveal — visible by default, animation layered on top */
.reveal { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .js-ready .reveal.revealed { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   02. NAMA TAMU
   ========================================================================== */
.guest-section {
  background: linear-gradient(135deg, #1a0f03 0%, #3a2206 100%);
  padding: 40px 24px;
}

.guest-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.guest-salutation {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.guest-name {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fad97a, #d99b3d, #a5671d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.3;
}

.guest-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.guest-subtitle strong {
  color: var(--primary-gold);
  font-weight: 600;
}

/* ==========================================================================
   03. COUNTDOWN
   ========================================================================== */
.countdown-section {
  background: var(--champagne);
  padding: 32px 24px;
  text-align: center;
}

.countdown-label {
  font-size: 0.78rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: var(--card-border);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 64px;
  box-shadow: var(--card-shadow);
}

.countdown-box span {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.countdown-box label {
  font-size: 0.6rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-gold);
  padding-bottom: 16px;
  line-height: 1;
}

/* ==========================================================================
   04. TIKET VIP
   ========================================================================== */
.ticket-section {
  padding: 32px 20px;
}

.ticket-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  border: var(--card-border);
}

.ticket-header {
  background: linear-gradient(135deg, #1a0f03, #3a2206);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticket-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 50px;
  flex-shrink: 0;
}

.ticket-info-top { flex: 1; }

.ticket-event-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

.ticket-date-time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
}

/* Tiket sobek */
.ticket-divider {
  position: relative;
  display: flex;
  align-items: center;
  height: 24px;
}

.ticket-notch {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--warm-ivory);
  border-radius: 50%;
  top: 0;
}

.ticket-notch-left { left: -12px; }
.ticket-notch-right { right: -12px; }

.ticket-dashed-line {
  width: 100%;
  border-top: 2px dashed #E7D8BC;
  margin: 0 18px;
}

.ticket-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.qr-placeholder {
  width: 160px;
  height: 160px;
  background: var(--champagne);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--card-border);
  overflow: hidden;
}

.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-fallback {
  font-size: 5rem;
  color: var(--primary-gold);
  opacity: 0.4;
}

.qr-label {
  font-size: 0.7rem;
  color: var(--secondary-text);
  text-align: center;
}

.ticket-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-beige);
}

.ticket-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-detail-label {
  font-size: 0.7rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 2px;
}

.ticket-detail-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-text);
  text-align: right;
}

.vip-label {
  color: var(--dark-gold);
}

.vip-label i {
  font-size: 0.7rem;
  margin-right: 3px;
}

/* ==========================================================================
   05. JADWAL ACARA
   ========================================================================== */
.schedule-section {
  padding: 44px 0;
  background: var(--warm-ivory);
}

.schedule-heading {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 28px;
}

.schedule-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 6px;
}

.schedule-intro {
  font-size: 0.82rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-top: 8px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 16px;
}

.schedule-item {
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px;
  border: var(--card-border);
  box-shadow: var(--card-shadow);
}

.schedule-date-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 12px;
}

.schedule-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-gold);
}

.schedule-date-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 2px 0;
}

.schedule-date {
  font-size: 0.82rem;
  color: var(--secondary-text);
  margin-top: 4px;
}

.schedule-main-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-gold);
  background: var(--champagne);
  padding: 8px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.schedule-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 0 0 16px 22px;
  border-left: 1px dashed rgba(201,162,76,0.45);
}

.schedule-row:last-child { padding-bottom: 0; }

.schedule-row::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 5px;
  width: 9px;
  height: 9px;
  background: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,162,76,0.14);
}

.schedule-row span {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.5;
}

.schedule-row p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin: 0;
}

@media (max-width: 576px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-left: 18px;
    padding-bottom: 14px;
  }
}

/* ==========================================================================
   06. GALLERY
   ========================================================================== */
.gallery-section { padding: 32px 20px; }

.gallery-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 240px;
  background: var(--soft-beige);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-slide.active { opacity: 1; }

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}

.slider-btn {
  pointer-events: all;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--dark-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s ease;
}

.slider-btn:hover { background: #fff; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary-gold);
  transform: scale(1.3);
}

/* ==========================================================================
   07. VENUE
   ========================================================================== */
.venue-section { padding: 32px 20px; }

.venue-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: var(--card-border);
  box-shadow: var(--card-shadow);
}

.map-wrapper { width: 100%; height: 200px; overflow: hidden; }
.map-wrapper iframe { width: 100%; height: 100%; display: block; }

.venue-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.venue-info h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-info h3 i { color: var(--primary-gold); }

.venue-info p {
  font-size: 0.8rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* ==========================================================================
   08. RSVP
   ========================================================================== */
.rsvp-section {
  background: linear-gradient(135deg, #1a0f03 0%, #3a2206 100%);
  padding: 40px 24px;
}

.rsvp-section .section-divider {
  color: #fff;
}

.rsvp-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rsvp-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  text-align: center;
}

.rsvp-desc strong { color: var(--primary-gold); }

.rsvp-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rsvp-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.rsvp-note i { color: var(--whatsapp-green); margin-right: 4px; }

/* RSVP status box — muncul setelah konfirmasi */
.rsvp-status-box {
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.5;
}

.rsvp-status-hadir {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.rsvp-status-tidak {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ==========================================================================
   09. WHATSAPP CONTACT
   ========================================================================== */
.whatsapp-consultant {
  background: var(--champagne);
  padding: 28px 24px;
  text-align: center;
}

.consultant-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary-text);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.consultant-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #1a0f03;
  padding: 32px 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-gold);
  color: #fff;
}

.copyright {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ==========================================================================
   WALK-IN FORM
   ========================================================================== */
.walkin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.walkin-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary-text);
  letter-spacing: 0.5px;
}

.walkin-field input,
.walkin-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--soft-beige);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  background: #fff;
  color: var(--dark-text);
  transition: border-color 0.2s;
}

.walkin-field input:focus,
.walkin-field select:focus {
  border-color: var(--primary-gold);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 481px) {
  body {
    padding: 20px 0;
    background-color: #d8d0c6;
  }
  .microsite-container {
    border-radius: 24px;
    min-height: auto;
  }
  .wa-fab {
    right: 50%;
    transform: translateX(calc(240px + 12px));
  }
  .wa-fab:hover {
    transform: translateX(calc(240px + 12px)) scale(1.08);
  }
}

@media (max-width: 360px) {
  .wedding-title { font-size: 2.8rem; }
  .countdown-box { min-width: 54px; padding: 10px; }
  .countdown-box span { font-size: 1.6rem; }
  .slider-track { height: 200px; }
}
