/* ==========================================================================
   UNDANGAN PERNIKAHAN DIGITAL - JAWA MODERN ELEGAN
   Fonts: Great Vibes, Cormorant Garamond, Plus Jakarta Sans
   Palette: Royal Gold, Deep Java Charcoal, Warm Cream, Pure White
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Pinyon+Script&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --font-script: 'Great Vibes', cursive;
  --font-accent-script: 'Pinyon Script', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --color-gold: #c5a059;
  --color-gold-light: #e6cb8e;
  --color-gold-dark: #967431;
  --color-gold-gradient: linear-gradient(135deg, #dfba73 0%, #c5a059 50%, #9e7934 100%);
  --color-gold-glow: rgba(197, 160, 89, 0.35);

  --color-dark: #191715;
  --color-dark-surface: #221f1b;
  --color-dark-card: #2a2622;
  
  --color-cream: #faf7f2;
  --color-cream-soft: #f3eee4;
  --color-cream-card: #ffffff;

  --color-text-dark: #2c2824;
  --color-text-muted: #6f675e;
  --color-text-light: #f5f2eb;
  --color-text-gold: #d4af37;

  --color-success: #2e7d32;
  --color-danger: #c62828;
  --color-warning: #f57f17;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.25);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Lock scrolling while cover is open */
body.locked {
  overflow: hidden;
  height: 100vh;
}

/* Main Container Wrappers */
.main-wrapper {
  max-width: 540px;
  margin: 0 auto;
  min-height: 100vh;
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* Typography Utilities */
.font-script {
  font-family: var(--font-script);
}

.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--color-gold) !important;
}

.gold-gradient-text {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Common Styling */
section {
  padding: 60px 24px;
  position: relative;
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-text-light);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.section-dark .section-title {
  color: var(--color-text-light);
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px auto 0;
  max-width: 180px;
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-gold-gradient);
  opacity: 0.6;
}

.ornament-divider i {
  color: var(--color-gold);
  font-size: 0.9rem;
}

/* ==========================================================================
   COVER / HERO MODAL OVERLAY
   ========================================================================== */
#cover-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: var(--color-dark);
  background-image: linear-gradient(to bottom, rgba(25, 23, 21, 0.4), rgba(25, 23, 21, 0.85)), url('../images/cover.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), visibility 1s cubic-bezier(0.77, 0, 0.175, 1);
}

#cover-overlay.opened {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cover-card {
  max-width: 440px;
  width: 100%;
  text-align: center;
  background: rgba(25, 23, 21, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: cardFadeIn 1.2s ease-out;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cover-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.cover-title {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.guest-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.guest-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.guest-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-gold-gradient);
  color: #191715;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.45);
  background: linear-gradient(135deg, #ebc884 0%, #d4af37 50%, #ad853b 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button / Outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING MUSIC CONTROLLER
   ========================================================================== */
#music-controller {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: none;
}

#music-controller.show {
  display: block;
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.music-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark-surface);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.music-btn.playing i {
  animation: rotateDisc 4s linear infinite;
}

@keyframes rotateDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   OPENING & AYAT SUCI SECTION
   ========================================================================== */
.opening-section {
  text-align: center;
  background-color: var(--color-cream);
  padding-top: 70px;
}

.bismillah-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 20px;
}

.quote-card {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  margin-top: 20px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.quote-source {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--color-gold-dark);
}

/* ==========================================================================
   BRIDE & GROOM (MEMPELAI) SECTION
   ========================================================================== */
.mempelai-section {
  background-color: var(--color-cream-soft);
  text-align: center;
}

.mempelai-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}

.couple-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

.couple-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.couple-avatar-wrapper {
  width: 170px;
  height: 170px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 6px;
  background: var(--color-gold-gradient);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.couple-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--color-cream-soft);
  border: 3px solid #ffffff;
}

.couple-name {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}

.couple-fullname {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}

.couple-parents {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.ampersand-divider {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--color-gold);
  margin: -10px 0;
  text-align: center;
}

/* ==========================================================================
   SAVE THE DATE & COUNTDOWN SECTION
   ========================================================================== */
.countdown-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  text-align: center;
  background-image: radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.countdown-box {
  background: var(--color-dark-card);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   EVENT / ACARA DETAIL SECTION
   ========================================================================== */
.event-section {
  background-color: var(--color-cream);
}

.event-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  margin-bottom: 24px;
  text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--color-gold-gradient);
}

.event-type {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 16px;
}

.event-date-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.event-day {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.event-date-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1;
  padding: 0 12px;
  border-left: 1px solid rgba(197, 160, 89, 0.4);
  border-right: 1px solid rgba(197, 160, 89, 0.4);
}

.event-year {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.event-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-location-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.event-address {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ==========================================================================
   PHOTO GALLERY SECTION (WITH LIGHTBOX)
   ========================================================================== */
.gallery-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  aspect-ratio: 4 / 5;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 21, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--color-gold-light);
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
#lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   DIGITAL GIFT / AMPLOP DIGITAL SECTION
   ========================================================================== */
.gift-section {
  background-color: var(--color-cream-soft);
  text-align: center;
}

.gift-intro {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.gift-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bank-card {
  background: linear-gradient(135deg, #2a2622 0%, #1e1b18 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.bank-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.bank-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bank-logo {
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.chip-icon {
  width: 36px;
  height: 28px;
  background: #d4af37;
  border-radius: 4px;
  position: relative;
  opacity: 0.85;
}

.bank-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.bank-holder {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.gift-address-card {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.gift-address-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gift-address-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Copy Button */
.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(197, 160, 89, 0.15);
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.bank-card .btn-copy {
  background: rgba(197, 160, 89, 0.2);
  color: var(--color-gold-light);
}

.gift-address-card .btn-copy {
  background: var(--color-gold-gradient);
  color: var(--color-dark);
  border: none;
}

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

/* ==========================================================================
   RSVP & WISHES (BUKU TAMU & UCAPAN) SECTION
   ========================================================================== */
.wishes-section {
  background-color: var(--color-cream);
}

.wishes-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-sm);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
  background-color: #ffffff;
}

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

/* Wishes List Container */
.wishes-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.wishes-feed-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-dark);
}

.wishes-count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.wishes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.wishes-list::-webkit-scrollbar {
  width: 5px;
}

.wishes-list::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 10px;
}

.wish-item {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  animation: fadeIn 0.5s ease;
}

.wish-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.wish-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wish-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.badge-hadir {
  background: rgba(46, 125, 50, 0.12);
  color: var(--color-success);
}

.badge-tidak {
  background: rgba(198, 40, 40, 0.12);
  color: var(--color-danger);
}

.badge-ragu {
  background: rgba(245, 127, 23, 0.12);
  color: var(--color-warning);
}

.wish-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.wish-time {
  font-size: 0.75rem;
  color: #a0988e;
}

/* ==========================================================================
   CLOSING / THANK YOU & FOOTER
   ========================================================================== */
.closing-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  text-align: center;
  padding-bottom: 90px;
  background-image: radial-gradient(circle at 50% 80%, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
}

.closing-title {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}

.closing-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  margin: 0 auto 24px;
}

.closing-couple {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 20px;
  margin-top: 20px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
#toast-notification {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(25, 23, 21, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid var(--color-gold);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

#toast-notification i {
  color: var(--color-gold);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 420px) {
  .section-title {
    font-size: 2.3rem;
  }
  .cover-title {
    font-size: 2.6rem;
  }
  .countdown-num {
    font-size: 1.6rem;
  }
  .countdown-grid {
    gap: 8px;
  }
  .couple-name {
    font-size: 2.2rem;
  }
}
