/* ==========================================================================
   PREMIUM WEDDING INVITATION STYLESHEET
   Theme: Luxury Deep Navy & Gold Accents
   Author: Insan Muchtadi syafiq
   ========================================================================== */

/* 1. CSS VARIABLES & SYSTEM TOKENS */
:root {
  --bg-dark: rgba(15, 20, 27, 0.5);
  --bg-primary: rgba(23, 32, 42, 0.4);
  --bg-card: rgba(33, 47, 61, 0.85);
  --bg-card-hover: rgba(44, 62, 80, 0.95);

  /* Gold Color Scheme */
  --gold-primary: #f4c04b;
  --gold-dark: #e69e10;
  --gold-light: #fbe69f;
  --gold-glow: rgba(244, 192, 75, 0.35);
  --gold-border: rgba(244, 192, 75, 0.4);

  /* Text Colors */
  --text-white: #ffffff;
  --text-cream: #f4f6f7;
  --text-gold: #f4c04b;
  --text-muted: #abb2b9;

  /* System Accents */
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f1c40f;

  /* Fonts */
  --font-cursive: 'Great Vibes', cursive;
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --font-arabic: 'Amiri', serif;
  --fw-judul: 800;
  --fw-subjudul: 600;
  --fw-isi: 400;

  /* Transitions & Shadows */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --gold-shadow: 0 4px 20px rgba(244, 192, 75, 0.2);
  --glass-bg: rgba(33, 47, 61, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
}

/* Typography: Judul ExtraBold | Subjudul SemiBold | Isi Regular */
.font-judul {
  font-family: var(--font-body);
  font-weight: var(--fw-judul);
}

.font-subjudul {
  font-family: var(--font-body);
  font-weight: var(--fw-subjudul);
}

.font-isi {
  font-family: var(--font-body);
  font-weight: var(--fw-isi);
}

p {
  font-family: var(--font-body);
  font-weight: var(--fw-isi);
}

/* 2. GENERAL RESET & BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: #0f141b;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: linear-gradient(rgba(15, 20, 27, 0.8), rgba(15, 20, 27, 0.9)), url("https://shemaco.com/lamiya-syarief/image/bg_premium.png");
  background-size: cover;
  background-position: center;
  will-change: transform;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.mt-4 {
  margin-top: 1.5rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* 3. KEYFRAME ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 192, 75, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(244, 192, 75, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 192, 75, 0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.pulse-icon {
  animation: pulse 2s infinite;
}

/* Scroll Trigger Base class */
.animate-scroll {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  filter: blur(5px);
}

/* 1. Fade Up (slide from bottom) - Default */
.animate-scroll,
.animate-scroll.fade-up {
  transform: translateY(50px);
}

/* 2. Fade Down (slide from top) */
.animate-scroll.fade-down {
  transform: translateY(-50px);
}

/* 3. Fade Left (slide from right to left) */
.animate-scroll.fade-left {
  transform: translateX(50px);
}

/* 4. Fade Right (slide from left to right) */
.animate-scroll.fade-right {
  transform: translateX(-50px);
}

/* 5. Zoom In */
.animate-scroll.zoom-in {
  transform: scale(0.9) translateY(20px);
}

.animate-scroll.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
}

/* Custom transition delays for staggered animations */
.delay-100 {
  transition-delay: 100ms !important;
}

.delay-200 {
  transition-delay: 200ms !important;
}

.delay-300 {
  transition-delay: 300ms !important;
}

.delay-400 {
  transition-delay: 400ms !important;
}

.delay-500 {
  transition-delay: 500ms !important;
}

/* 4. COVER MODAL / SPLIT LAYOUT DESIGN */
.cover-modal {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  /* Only transition opacity, we will animate children (top and bottom) */
  transition: opacity 0.5s ease 1.2s;
  overflow-y: auto;
  overflow-x: hidden;
}

.cover-modal.hide {
  opacity: 0;
  pointer-events: none;
}

/* --- Top Photo Section --- */
.cover-photo-section {
  position: relative;
  width: 100%;
  height: 35%;
  min-height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.3s, opacity 1s ease 0.3s;
}

.cover-modal.hide .cover-photo-section {
  transform: translateY(-100%);
  opacity: 0;
}

.cover-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.cover-photo-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #1a1f3d);
  pointer-events: none;
}

/* --- Gold Ribbon with Bow Divider --- */
.cover-ribbon-divider {
  position: relative;
  width: 100%;
  height: 80px;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: -40px;
  flex-shrink: 0;
  transition: opacity 0.5s ease 0s;
}

.ribbon-band {
  position: absolute;
  top: 50%;
  height: 30px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #e8c44a 0%, #c9a84c 25%, #b8922e 50%, #c9a84c 75%, #e8c44a 100%);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s ease;
}

.ribbon-band.left-band {
  left: 0;
  width: 50%;
  transform-origin: left center;
}

.ribbon-band.right-band {
  right: 0;
  width: 50%;
  transform-origin: right center;
}

.cover-modal.hide .ribbon-band.left-band {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}

.cover-modal.hide .ribbon-band.right-band {
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
}

.ribbon-bow-svg {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: auto;
  z-index: 11;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.cover-modal.hide .ribbon-bow-svg {
  transform: translate(-50%, -50%) scaleX(2) scaleY(0.1);
  opacity: 0;
  transition: transform 0.4s ease-in, opacity 0.3s ease-in;
}

/* --- Bottom Navy Content Section --- */
.cover-navy-section {
  position: relative;
  flex: 1;
  background: linear-gradient(175deg, #1a1f3d 0%, #141833 40%, #0e1228 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 25px 24px;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.3s, opacity 1s ease 0.3s;
}

.cover-modal.hide .cover-navy-section {
  transform: translateY(100%);
  opacity: 0;
}

/* --- Split Layout for Desktop --- */
@media (min-width: 769px) {
  .cover-modal {
    flex-direction: row;
  }
  
  .cover-photo-section {
    width: 50%;
    height: 100%;
    min-height: auto;
  }

  .cover-photo-fade {
    width: 80px;
    height: 100%;
    bottom: 0;
    right: 0;
    left: auto;
    background: linear-gradient(to left, #1a1f3d, transparent);
  }
  
  .cover-navy-section {
    width: 50%;
    height: 100%;
  }

  .cover-modal.hide .cover-photo-section {
    transform: translateX(-100%);
  }

  .cover-modal.hide .cover-navy-section {
    transform: translateX(100%);
  }

  .cover-ribbon-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    transform: translate(-50%, -50%);
  }

  .ribbon-band {
    width: 30px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #e8c44a 0%, #c9a84c 25%, #b8922e 50%, #c9a84c 75%, #e8c44a 100%);
  }
  
  .ribbon-band.left-band {
    top: 0;
    height: 50%;
    left: 50%;
    transform-origin: bottom center;
  }
  
  .ribbon-band.right-band {
    bottom: 0;
    top: auto;
    height: 50%;
    left: 50%;
    transform-origin: top center;
  }

  .cover-modal.hide .ribbon-band.left-band {
    transform: translateX(-50%) translateY(-100%);
  }
  
  .cover-modal.hide .ribbon-band.right-band {
    transform: translateX(-50%) translateY(100%);
  }

  .ribbon-bow-svg {
    top: 50%;
  }
}

/* Corner Ornaments */
.cover-corner-ornament {
  position: absolute;
  font-size: 1.6rem;
  color: #c9a84c;
  opacity: 0.5;
  line-height: 1;
}

.cover-corner-ornament.top-left {
  top: 12px;
  left: 16px;
  transform: rotate(0deg);
}

.cover-corner-ornament.top-right {
  top: 12px;
  right: 16px;
  transform: scaleX(-1);
}

.cover-corner-ornament.bottom-left {
  bottom: 12px;
  left: 16px;
  transform: scaleY(-1);
}

.cover-corner-ornament.bottom-right {
  bottom: 12px;
  right: 16px;
  transform: scale(-1, -1);
}

.cover-navy-content {
  text-align: center;
  width: 100%;
  max-width: 480px;
}

/* UNDANGAN Title */
.cover-undangan-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  color: #c9a84c;
  letter-spacing: 6px;
  margin-bottom: 5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Couple Names in Script */
.cover-couple-script {
  font-family: var(--font-cursive);
  font-size: clamp(2.4rem, 8vw, 4rem);
  color: #c9a84c;
  font-weight: normal;
  margin: 5px 0 12px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.15;
  white-space: normal;
  word-wrap: break-word;
}

.cover-ampersand {
  font-family: var(--font-cursive);
  font-size: 0.8em;
  color: #dbb840;
  margin: 0 5px;
}

/* Date Box */
.cover-date-box {
  display: inline-block;
  border: 1.5px solid rgba(201, 168, 76, 0.7);
  border-radius: 6px;
  padding: 8px 28px;
  margin: 5px auto 12px auto;
}

.cover-date-box span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.85rem, 2.8vw, 1.1rem);
  color: #e8dcc0;
  letter-spacing: 2px;
}

/* Ornamental Flourish */
.cover-flourish {
  margin: 0 auto 12px auto;
  display: flex;
  justify-content: center;
}

.cover-flourish-svg {
  width: 200px;
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 1px 3px rgba(201, 168, 76, 0.3));
}

/* Recipient Section on Cover */
.cover-recipient-section {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 16px;
  border: 1px dashed rgba(201, 168, 76, 0.35);
}

.cover-recipient-section .recipient-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 4px;
}

.cover-recipient-section .recipient-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #c9a84c;
  margin: 8px 0;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.cover-recipient-section .recipient-note {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

/* Button on Cover */
.btn-open-invitation {
  background: linear-gradient(135deg, #e8c44a 0%, #c9a84c 50%, #a8862a 100%);
  color: #000000 !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-open-invitation i {
  color: #000000 !important;
}

.btn-open-invitation:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.6);
}

.bounce-icon {
  animation: bounce 2s infinite;
}

/* --- Cover Responsive --- */
@media (max-width: 480px) {
  .cover-photo-section {
    height: 35%;
    min-height: 200px;
  }

  .cover-navy-section {
    padding: 10px 16px 20px 16px;
    justify-content: center;
  }

  .cover-undangan-title {
    letter-spacing: 4px;
    margin-bottom: 3px;
  }

  .cover-couple-script {
    font-size: clamp(2rem, 8vw, 3rem);
    margin: 3px 0 8px 0;
  }

  .cover-date-box {
    padding: 6px 20px;
    margin: 3px auto 8px auto;
  }

  .cover-flourish {
    margin-bottom: 8px;
  }

  .cover-recipient-section {
    padding: 10px 14px;
    margin-bottom: 12px;
  }

  .cover-recipient-section .recipient-name {
    font-size: 1.3rem;
  }

  .btn-open-invitation {
    font-size: 1rem;
    padding: 10px 24px;
  }

  .ribbon-bow-svg {
    width: 220px;
  }

  .ribbon-band {
    height: 24px;
  }

  .cover-ribbon-divider {
    height: 70px;
    margin-top: -35px;
    margin-bottom: -35px;
  }
}

@media (max-height: 650px) {
  .cover-photo-section {
    height: 40%;
    min-height: 180px;
  }

  .cover-navy-section {
    padding: 10px 16px 15px 16px;
    justify-content: center;
  }

  .cover-undangan-title {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .cover-couple-script {
    font-size: 2rem;
    margin: 2px 0 6px 0;
  }

  .cover-date-box {
    padding: 5px 18px;
    margin: 2px auto 6px auto;
  }

  .cover-date-box span {
    font-size: 0.8rem;
  }

  .cover-recipient-section {
    padding: 8px 12px;
    margin-bottom: 10px;
  }

  .cover-recipient-section .recipient-label {
    font-size: 0.85rem;
  }

  .cover-recipient-section .recipient-name {
    font-size: 1.2rem;
    margin: 4px 0;
  }

  .cover-recipient-section .recipient-note {
    font-size: 0.75rem;
  }

  .btn-open-invitation {
    font-size: 0.95rem;
    padding: 9px 22px;
  }

  .cover-flourish-svg {
    width: 150px;
  }

  .cover-flourish {
    margin-bottom: 6px;
  }
}

/* 5. FLOATING MUSIC CONTROL */
.audio-box {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(244, 192, 75, 0.4);
  transition: var(--transition-smooth);
}

.audio-box:hover {
  transform: scale(1.1);
}

.vinyl-record {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-primary);
}

.vinyl-record i {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.audio-box.playing .vinyl-record {
  animation: spin 3s linear infinite;
}

.audio-tooltip {
  position: absolute;
  right: 60px;
  background: var(--bg-card);
  color: var(--text-white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  border: 1px solid var(--gold-border);
}

.audio-box:hover .audio-tooltip {
  opacity: 1;
  right: 65px;
}

/* 6. FLOATING BOTTOM BAR NAVIGATION */
.floating-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(23, 32, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 997;
  border: 1px solid var(--gold-border);
  transition: opacity 0.5s ease;
}

.floating-nav.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 6px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: var(--transition-fast);
}

.nav-item span {
  display: none;
  font-size: 0.65rem;
  margin-top: 2px;
  font-weight: 500;
}

.nav-item:hover,
.nav-item.active {
  color: var(--text-gold);
  background: rgba(244, 192, 75, 0.15);
  transform: translateY(-3px);
}

/* 7. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(15, 20, 27, 0.75), rgba(15, 20, 27, 0.75)), url("https://shemaco.com/lamiya-syarief/image/bg_premium.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0 140px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-arabic {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: normal;
  line-height: 1.6;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.hero-intro-text {
  font-family: var(--font-body);
  font-size: 1.45rem;
  max-width: 700px;
  margin: 0 auto 35px auto;
  color: var(--text-cream);
  font-weight: var(--fw-isi);
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.hero-couple-names {
  font-family: var(--font-cursive);
  font-size: 5.5rem;
  color: var(--text-gold);
  margin: 20px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: normal;
}

.hero-date-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 2px solid var(--gold-border);
  border-bottom: 2px solid var(--gold-border);
  padding: 16px 45px;
  margin: 15px auto 20px auto;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 4vw, 2.1rem);
  letter-spacing: 3px;
  color: var(--text-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-date-banner {
    gap: 12px;
    padding: 12px 25px;
    letter-spacing: 1.5px;
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }
}

@media (max-width: 576px) {
  .hero-date-banner {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    letter-spacing: 1px;
    margin: 10px auto 15px auto;
    font-size: clamp(0.9rem, 4.2vw, 1.25rem) !important;
    width: fit-content;
    max-width: 95%;
  }

  .hero-date-divider {
    display: inline-block;
    margin: 0 3px;
  }
}

@media (max-width: 360px) {
  .hero-date-banner {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 8px 10px;
  }

  .hero-date-divider {
    display: inline-block;
  }
}

.hero-date-banner span,
.hero-date-day,
.hero-date-full {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-date-divider {
  color: var(--gold-primary);
}

.hero-date-day {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: inline !important;
  font-weight: var(--fw-judul);
}

.hero-date-full {
  font-weight: var(--fw-subjudul);
}

/* Countdown Clock */
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 15px auto 20px auto;
  max-width: 600px;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgb(17 0 50);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  min-width: 90px;
  padding: 10px 8px;
  box-shadow: var(--card-shadow), var(--gold-shadow);
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.countdown-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.countdown-num {
  display: block;
  font-size: 2.2rem;
  font-weight: var(--fw-judul);
  color: var(--text-gold);
  font-family: var(--font-body);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: var(--fw-isi);
}

.scroll-down-hint {
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-down-hint i {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--gold-primary);
}

/* 8. MEMPELAI SECTION */
.mempelai-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 100px 0;
  overflow: hidden;
}

.decor-leaf {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.08;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.leaf-left {
  top: 10%;
  left: -20px;
  background-image: url("https://images.unsplash.com/photo-1501747315-124a0eaca060?q=80&w=400");
}

.leaf-right {
  bottom: 10%;
  right: -20px;
  background-image: url("https://images.unsplash.com/photo-1501747315-124a0eaca060?q=80&w=400");
}

.quran-quote {
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 40px;
  background: rgb(8 14 47);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  box-shadow: var(--card-shadow);
}

.top-quran-card {
  margin-top: -40px !important;
  margin-bottom: 10px !important;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 35px;
  background: rgba(8, 14, 47, 0.75);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  width: 90% !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
}

.no-wishes-placeholder {
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  color: var(--text-muted) !important;
}

.rsvp-section-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-top: 5px;
  color: var(--text-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--fw-judul);
}

.quote-gold-icon {
  font-size: 2.5rem;
  color: rgba(244, 192, 75, 0.2);
  position: absolute;
  top: 20px;
  left: 30px;
}

.quran-text {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.35rem;
  font-weight: var(--fw-isi);
  color: var(--text-cream);
  line-height: 2.2;
  margin-bottom: 20px;
}

.quran-source {
  font-family: var(--font-body);
  font-weight: var(--fw-subjudul);
  color: var(--text-gold);
  letter-spacing: 1px;
  font-size: 1.05rem;
}

.prayer-amen {
  font-family: var(--font-body);
  font-weight: var(--fw-subjudul);
  font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  color: var(--text-gold);
  line-height: 1.4;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.couple-details-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.profile-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  border: 1.5px solid var(--gold-border);
}

.profile-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: var(--card-shadow), var(--gold-shadow);
}

.profile-img-frame {
  width: 180px;
  height: 220px;
  margin: 0 auto 25px auto;
  border-radius: 100px 100px 20px 20px;
  overflow: hidden;
  border: 4px solid var(--gold-primary);
  box-shadow: var(--gold-shadow);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-img {
  transform: scale(1.08);
}

.mempelai-fullname {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: var(--fw-judul);
  color: var(--text-gold);
  margin-bottom: 5px;
}

.mempelai-callname {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  font-weight: 500;
  letter-spacing: 1px;
}

.parents-info {
  border-top: 1px dashed var(--gold-border);
  padding-top: 20px;
  margin-bottom: 25px;
}

.child-status {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: var(--fw-isi);
  color: var(--text-muted);
  margin-bottom: 10px;
  font-style: normal;
}

.parent-names {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: var(--fw-isi);
  color: var(--text-white);
  line-height: 1.7;
  letter-spacing: 0.5px;
}

.parent-conjunction {
  font-family: var(--font-cursive);
  color: var(--text-gold);
  font-size: 1.5rem;
  margin: 2px 0;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-gold);
  border: 1px solid var(--gold-primary);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.instagram-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  box-shadow: var(--gold-shadow);
}

.couple-ampersand {
  font-family: var(--font-cursive);
  font-size: 6rem;
  color: var(--text-gold);
  text-shadow: 0 0 10px var(--gold-glow);
  align-self: center;
}

/* 9. ACARA SECTION */
.acara-section {
  position: relative;
  background-color: var(--bg-dark);
  padding: 40px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--text-gold);
  margin-bottom: 15px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: var(--fw-isi);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  font-style: normal;
}

.event-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.event-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: rgb(8 14 47);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 2px solid var(--glass-border);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
}

.event-card.main-event {
  border: 2px solid var(--gold-primary);
  box-shadow: var(--card-shadow), var(--gold-shadow);
}

.event-header-badge {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: var(--fw-judul);
  letter-spacing: 2px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.event-header-badge.accent {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #000000;
}

.event-details-body {
  padding: 20px 20px;
}

.event-date-row {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  margin-bottom: 15px;
}

.event-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 192, 75, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.event-date-row h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-gold);
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  font-weight: var(--fw-subjudul);
}

.event-date-row p {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-white);
  font-weight: var(--fw-isi);
  line-height: 1.5;
}

.event-date-row p strong {
  font-weight: var(--fw-subjudul);
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: var(--fw-subjudul);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-calendar {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-calendar:hover {
  background: #ffffff;
  color: var(--bg-dark);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.maps-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 35px 25px;
  box-shadow: var(--card-shadow);
  max-width: 930px;
  margin: 0 auto;
}

.maps-wrapper h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-gold);
  margin-bottom: 25px;
}

.map-iframe-container {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: var(--card-shadow);
}

.btn-location {
  background: #ffffff;
  color: rgb(8 14 47);
  border: none;
  max-width: 320px;
  margin: 20px auto 0 auto;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-location:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
  background: #ffffff;
  color: rgb(8 14 47);
}

/* 10. CERITA (LOVE STORY) SECTION */
.story-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 100px 0;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0 auto;
  padding: 0 20px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--gold-border);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 50px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--gold-primary);
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-shadow);
}

.timeline-dot i {
  color: var(--text-gold);
  font-size: 1.1rem;
}

.timeline-item.left .timeline-dot {
  right: -22px;
}

.timeline-item.right .timeline-dot {
  left: -22px;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: var(--card-shadow), var(--gold-shadow);
}

.timeline-date {
  display: inline-block;
  background: rgba(244, 192, 75, 0.15);
  color: var(--text-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid var(--gold-border);
}

.timeline-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.timeline-card p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-cream);
  line-height: 1.8;
  font-weight: 400;
}

/* 11. GALERI SECTION */
.galeri-section {
  position: relative;
  background-color: var(--bg-dark);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  grid-gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  border: 2px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: var(--card-shadow), var(--gold-shadow);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 20, 27, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.gallery-overlay i {
  color: var(--text-gold);
  font-size: 2rem;
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* 12. HADIAH DIGITAL SECTION */
.hadiah-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 10px 0 15px 0;
}

.hadiah-section .section-subtitle {
  margin-bottom: 20px;
}

.gifts-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.gift-card {
  flex: 1;
  min-width: 290px;
  max-width: 380px;
  background: rgb(8 14 47);
  border: 1.5px solid var(--gold-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-align: left;
}



.gift-card:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: var(--gold-primary);
  box-shadow: var(--card-shadow), var(--gold-shadow);
}

.bank-chip {
  width: 45px;
  height: 35px;
  background: linear-gradient(135deg, #e5c158 0%, #b8860b 100%);
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: inset 1px 1px 4px rgba(255, 255, 255, 0.4);
}

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

.bank-name {
  font-family: var(--font-body);
  font-weight: var(--fw-judul);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: var(--text-white);
}

.bank-card-icon {
  font-size: 1.5rem;
  color: var(--text-gold);
  opacity: 0.8;
}

.card-details {
  margin-bottom: 25px;
}

.card-number-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-weight: var(--fw-subjudul);
}

.card-number {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: var(--fw-judul);
  color: var(--text-white);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-holder {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: var(--fw-isi);
  color: var(--text-gold);
}

.btn-copy-account {
  width: 100%;
  background: rgb(0 0 0);
  color: rgb(255 255 255);
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font-body);
  font-weight: var(--fw-subjudul);
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-copy-account:hover {
  background: #ffffff;
  color: rgb(8 14 47);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-copy-account.copied {
  background: var(--success);
  color: var(--text-white);
  border-color: var(--success);
}

.gift-address-card {
  background: rgb(8 14 47);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 650px;
  margin: 50px auto 0 auto;
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--gold-border);
}

.address-icon {
  font-size: 2.5rem;
  color: var(--text-gold);
  margin-bottom: 15px;
}

.gift-address-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.address-details {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.gift-address-card .btn-copy-account {
  max-width: 280px;
  margin: 0 auto;
}

.rsvp-section {
  position: relative;
  background-color: var(--bg-dark);
  padding: 15px 0 60px 0;
}

.rsvp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-gap: 24px;
  margin-top: 25px;
}

.rsvp-card-form {
  background: rgb(8 14 47);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 25px 25px;
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--gold-border);
  height: fit-content;
}

.rsvp-card-form h3 {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: var(--fw-judul);
  color: var(--text-gold);
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--gold-border);
  padding-bottom: 10px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-subjudul);
  text-transform: uppercase;
  color: var(--text-cream);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(15, 20, 27, 0.6);
  border: 1.5px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: var(--fw-isi);
  font-size: 14px;
  line-height: 1.7;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(244, 192, 75, 0.25);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: var(--bg-card);
  color: var(--text-white);
}

.btn-submit-rsvp {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: var(--font-body);
  font-weight: var(--fw-subjudul);
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--gold-shadow);
  transition: var(--transition-fast);
}

.btn-submit-rsvp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 192, 75, 0.5);
}

.rsvp-wishes-feed {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rsvp-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.stat-badge {
  flex: 1;
  background: rgb(8 14 47);
  border-radius: 16px;
  padding: 15px 10px;
  text-align: center;
  border: 1.5px solid var(--glass-border);
  box-shadow: var(--card-shadow);
}

.stat-num {
  display: block;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: var(--fw-judul);
  margin-bottom: 2px;
}

.stat-lbl {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: var(--fw-subjudul);
}

.stat-hadir {
  border-left: 4px solid var(--success);
}

.stat-hadir .stat-num {
  color: var(--success);
}

.stat-ragu {
  border-left: 4px solid var(--warning);
}

.stat-ragu .stat-num {
  color: var(--warning);
}

.stat-tidak {
  border-left: 4px solid var(--danger);
}

.stat-tidak .stat-num {
  color: var(--danger);
}

.wishes-wall {
  background: rgb(8 14 47);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 25px;
  max-height: 450px;
  overflow-y: auto;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1.5px solid var(--gold-border);
}

.wish-item {
  background: rgba(15, 20, 27, 0.5);
  border-radius: 16px;
  padding: 20px;
  border-left: 3px solid var(--gold-primary);
  text-align: left;
  animation: fadeIn 0.5s ease-out;
}

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

.wish-author {
  font-family: var(--font-body);
  font-weight: var(--fw-judul);
  font-size: 1.3rem;
  color: var(--text-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  font-size: 0.8rem;
  color: var(--success);
}

.wish-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-subjudul);
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.wish-tag.hadir {
  background: rgba(46, 204, 113, 0.15);
  color: var(--success);
}

.wish-tag.ragu {
  background: rgba(241, 196, 15, 0.15);
  color: var(--warning);
}

.wish-tag.tidak {
  background: rgba(231, 76, 60, 0.15);
  color: var(--danger);
}

.wish-body {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: var(--fw-isi);
  color: var(--text-cream);
  line-height: 1.7;
  font-style: italic;
}

.wish-time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* 14. FOOTER SECTION */
.wedding-footer {
  position: relative;
  background-color: var(--bg-primary);
  padding: 80px 0;
  border-top: 1px solid var(--gold-border);
}

.footer-couple {
  font-family: var(--font-cursive);
  font-size: 3.5rem;
  color: var(--text-gold);
  margin-bottom: 15px;
  font-weight: normal;
}

.footer-thankyou {
  font-size: 1.15rem;
  color: var(--text-cream);
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-weight: 450;
  line-height: 1.6;
}

.footer-divider {
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 0 0 8px var(--gold-glow);
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-cream);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* 15. IMAGE LIGHTBOX MODAL */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 20, 27, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--gold-shadow);
  animation: zoom 0.3s ease-out;
}

@keyframes zoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--text-muted);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* 16. TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  color: var(--text-white);
  border: 1px solid var(--gold-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), var(--gold-shadow);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  bottom: 100px;
  opacity: 1;
  visibility: visible;
}

/* 17. RESPONSIVE MEDIA QUERIES */

/* Tablet Viewports */
@media (max-width: 992px) {
  .rsvp-grid {
    grid-template-columns: 1fr;
  }

  .timeline::after {
    left: 40px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    text-align: left !important;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 18px;
    right: auto;
  }

  .timeline-item.right {
    left: 0;
  }
}

/* Mobile Viewports */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  html {
    font-size: 15px;
  }

  .cover-intro {
    font-size: 1.2rem !important;
    letter-spacing: 3px !important;
  }

  .cover-couple {
    font-size: 4.5rem !important;
  }

  .hero-couple-names {
    font-size: 4.8rem !important;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .couple-ampersand {
    font-size: 4rem;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .profile-card {
    max-width: 100%;
  }

  .countdown-container {
    flex-wrap: nowrap !important;
    gap: 8px !important;
  }

  .countdown-item {
    min-width: unset !important;
    flex: 1 !important;
    max-width: 80px !important;
    padding: 8px 4px !important;
  }

  .countdown-num {
    font-size: 1.5rem !important;
  }

  .countdown-label {
    font-size: 0.7rem !important;
    letter-spacing: 0.5px !important;
    margin-top: 4px !important;
  }

  .audio-box {
    bottom: 90px;
    right: 15px;
  }

  .floating-nav {
    bottom: 15px;
    width: 92%;
    padding: 6px 10px;
  }

  .nav-item {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .toast-notification.show {
    bottom: 90px;
  }
}

/* Small Screens */
@media (max-width: 480px) {
  .cover-couple {
    font-size: 3.8rem !important;
  }

  .hero-couple-names {
    font-size: 4.0rem !important;
  }

  .recipient-name {
    font-size: 1.5rem;
  }

  .event-details-body {
    padding: 12px 15px;
  }

  .countdown-container {
    gap: 6px !important;
  }

  .countdown-item {
    min-width: unset !important;
    padding: 6px 2px !important;
    max-width: 70px !important;
  }

  .countdown-num {
    font-size: 1.3rem !important;
  }

  .countdown-label {
    font-size: 0.6rem !important;
  }
}

/* ==========================================================================
   OUR SPECIAL WEDDING EVENT CUSTOM HEADING
   ========================================================================== */
.wedding-event-title-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-wedding-invitation-text {
  margin: 0 auto 20px auto;
}

.title-sub-gold {
  display: block;
  font-family: var(--font-body);
  /* Poppins */
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(244, 192, 75, 0.2);
}

.title-main-cursive {
  display: block;
  font-family: var(--font-body);
  font-size: 3.2rem;
  color: #ffffff;
  font-weight: var(--fw-judul);
  margin-top: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .title-main-cursive {
    font-size: 2.4rem;
    margin-top: 8px;
    letter-spacing: 1px;
  }

  .title-sub-gold {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}

/* Spacing between adjacent sections for premium layout flow */
.acara-section {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.mempelai-section {
  padding-top: 25px !important;
  padding-bottom: 35px !important;
}

/* Margins inside quote blocks */
.quran-quote {
  margin-top: 0px !important;
  margin-bottom: 25px !important;
}

/* Adjust ampersand container space */
.couple-ampersand {
  margin: 5px 0 !important;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS REFINEMENTS FOR MEMPELAI DETAILS CARD
   ========================================================================== */
@media (max-width: 768px) {

  /* Reduce padding on the glass card wrappers so they fit on small mobile screens */
  main .quran-quote {
    padding: 25px 15px !important;
  }

  .hero-wedding-invitation-text {
    margin-top: -85px !important;
    margin-bottom: 20px !important;
  }

  /* Specific rules for the top Quran quote card on mobile */
  main .top-quran-card {
    width: 100% !important;
    padding: 20px 15px !important;
    margin-top: 0 !important;
  }

  /* Cover Content Mobile Refinements (Compact height to fit without scrolling) */
  .cover-content {
    padding: 20px 16px !important;
    margin: 12px !important;
    width: calc(100% - 24px) !important;
  }

  .cover-couple {
    font-size: 4.2rem !important;
    /* Elegant size to override inline style */
  }

  .cover-couple img {
    display: inline-block !important;
    width: 60px !important;
    /* Scale down ampersand */
    margin: 6px auto !important;
  }

  .cover-decor-divider {
    margin: 8px 0 12px 0 !important;
    gap: 10px !important;
  }

  .recipient-card {
    padding: 12px 10px !important;
    margin-bottom: 15px !important;
  }

  .recipient-label {
    font-size: 1.1rem !important;
  }

  .recipient-name {
    font-size: 1.45rem !important;
    margin: 8px 0 !important;
  }

  .recipient-note {
    font-size: clamp(0.6rem, 2.8vw, 0.85rem) !important;
    margin-top: 5px !important;
    white-space: nowrap !important;
    overflow: hidden;
  }

  .btn-open-invitation {
    padding: 10px 24px !important;
    font-size: 1.1rem !important;
  }

  /* Make couple cards stack vertically on mobile */
  .couple-details-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    /* Reduced vertical spacing */
  }

  .couple-details-wrapper #bride-card,
  .couple-details-wrapper #groom-card {
    width: 100% !important;
    min-width: 100% !important;
  }

  /* Scale down ampersand image and pull it up to prevent large vertical gaps */
  .couple-ampersand {
    margin: -15px 0 0px 0 !important;
  }

  .couple-ampersand img {
    width: 80px !important;
    /* Shrunk central ornament */
  }

  /* Profile image frames made slightly larger and more prominent on mobile */
  .profile-img-frame {
    width: 200px !important;
    height: 250px !important;
    margin: 0 auto 15px auto !important;
    border-radius: 16px !important;
  }

  /* Responsive font scaling for names inside cards */
  .mempelai-fullname {
    font-size: 1.55rem !important;
  }

  /* Enlarge parents info */
  .child-status {
    font-size: 1.15rem !important;
  }

  .parent-names {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
  }

  /* Ensure Latin prayer text is readable */
  .quran-text {
    font-size: 1.15rem !important;
    line-height: 1.65 !important;
  }

  /* Enlarge address details */
  .event-date-row p {
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
  }

  /* Enlarge bank details */
  .card-number-label {
    font-size: 1.1rem !important;
  }

  .card-number {
    font-size: 1.6rem !important;
  }

  .card-holder {
    font-size: 1.2rem !important;
  }

  /* Enlarge small mobile elements (minimum 12-13px) */
  .stat-lbl {
    font-size: 0.85rem !important;
    /* ~13px */
  }

  .wish-tag {
    font-size: 0.8rem !important;
    /* ~12px */
  }

  .wish-time {
    font-size: 0.85rem !important;
    /* ~13px */
  }

  /* RSVP Title mobile split */
  .rsvp-section-title {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.5px !important;
  }

  .rsvp-title-line1,
  .rsvp-title-line2 {
    display: inline !important;
  }

  /* Compact spacing for Location, Hadiah, and RSVP sections in mobile viewports */
  .mempelai-section {
    padding-top: 15px !important;
    padding-bottom: 10px !important;
  }

  main .quran-quote {
    padding: 25px 15px !important;
    margin-bottom: 10px !important;
  }

  .acara-section {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .hadiah-section {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .rsvp-section {
    padding-top: 5px !important;
    padding-bottom: 15px !important;
  }

  .closing-card-premium {
    margin-top: 5px !important;
    margin-bottom: 15px !important;
    width: 92% !important;
  }

  .closing-card-inner {
    padding: 25px 15px !important;
  }

  .wedding-event-title-wrapper {
    margin-top: 0px !important;
    margin-bottom: 10px !important;
  }

  .gift-address-card {
    margin-top: 15px !important;
    padding: 20px 15px !important;
  }
}

/* ==========================================================================
   PREMIUM CLOSING CARD (HORMAT KAMI & TURUT MENGUNDANG) STYLING
   ========================================================================== */
.closing-card-premium {
  max-width: 800px;
  margin: 60px auto 40px auto;
  padding: 4px;
  background: rgb(8, 14, 47);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
}

.closing-card-inner {
  background: rgb(8, 14, 47);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgb(8, 14, 47);
  position: relative;
}

.vintage-flourish {
  margin: 15px auto;
  display: flex;
  justify-content: center;
}

.closing-thankyou {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: var(--fw-isi);
  color: var(--text-cream);
  line-height: 1.8;
  margin: 25px auto;
  max-width: 600px;
  font-style: normal;
}

.highlight-thankyou {
  /* display: block; */
  margin-top: 10px;
  color: var(--text-cream);
}

.closing-section-title {
  font-family: var(--font-body);
  font-size: 1.7rem;
  color: var(--text-gold);
  margin: 25px auto 15px auto;
  text-transform: uppercase;
  font-weight: var(--fw-judul);
  letter-spacing: 1px;
}

.parents-columns {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin: 25px auto;
  flex-wrap: wrap;
}

.parent-col {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.parent-lead {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: var(--fw-subjudul);
  color: var(--text-white);
  margin-bottom: 5px;
}

.parent-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: var(--fw-isi);
  color: var(--text-white);
}

.gold-divider-line {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 35px auto;
  max-width: 90%;
  opacity: 0.7;
}

.invited-list {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: var(--fw-isi);
  color: var(--text-cream);
  line-height: 1.8;
  margin: 20px auto 35px auto;
}

@media (max-width: 768px) {

  /* Make all responsive content cards strictly uniform in width, centering and min-width override */
  .event-card,
  .quran-quote,
  .top-quran-card,
  .profile-card,
  .gift-card,
  .closing-card-premium,
  .rsvp-card-form,
  .wishes-wall {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* Standardize padding and border-radius for regular cards */
  .event-card,
  .quran-quote,
  .top-quran-card,
  .profile-card,
  .gift-card,
  .rsvp-card-form,
  .wishes-wall {
    padding: 20px 15px !important;
    border-radius: 16px !important;
  }

  /* Specific rule for premium closing card and its inner content wrapper */
  .closing-card-premium {
    padding: 3px !important;
    /* Elegant border thickness on mobile */
    border-radius: 20px !important;
    margin-top: 5px !important;
    margin-bottom: 15px !important;
  }

  .closing-card-inner {
    padding: 20px 15px !important;
    /* Matches regular cards padding */
    border-radius: 17px !important;
  }

  /* Tighten styling inside event card (Hero Reception card) to prevent layout break */
  .event-header-badge {
    padding: 8px 15px !important;
    font-size: 0.95rem !important;
  }

  .event-date-row {
    gap: 12px !important;
    margin-bottom: 8px !important;
  }

  .event-icon-circle {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }

  .event-date-row h4 {
    font-size: 0.85rem !important;
  }

  #recep-date-el,
  #recep-time-el,
  #recep-venue-el {
    font-size: 0.95rem !important;
  }

  #recep-addr-el {
    font-size: 0.85rem !important;
  }

  .closing-thankyou {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
  }

  .closing-section-title {
    font-size: 1.25rem !important;
    margin: 15px auto 10px auto !important;
  }

  .parents-columns {
    gap: 20px !important;
    flex-wrap: nowrap !important;
    flex-direction: column !important;
  }

  .parent-col {
    min-width: 0 !important;
  }

  .parent-lead {
    font-size: clamp(0.8rem, 4vw, 1.15rem) !important;
    white-space: nowrap !important;
  }

  .parent-sub {
    font-size: clamp(0.8rem, 4vw, 1.15rem) !important;
    white-space: nowrap !important;
  }

  .invited-list {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
  }
}

/* ==========================================================================
   ANIMATED FLOATING DECORATIONS (SPARKLES & DIAMONDS)
   ========================================================================== */
.sparkles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Sits behind key cards but in front of body background */
  overflow: hidden;
}

.sparkle {
  position: absolute;
  bottom: -50px;
  background: radial-gradient(circle, var(--gold-light) 0%, rgba(244, 192, 75, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  animation: floatAndFade 15s infinite linear;
  will-change: transform, opacity;
}

.sparkle.circle {
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
}

.sparkle.diamond {
  border-radius: 0;
  background: var(--gold-primary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 0 8px var(--gold-glow);
}

@keyframes floatAndFade {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(0.6);
    opacity: 0;
  }

  15% {
    opacity: 0.45;
  }

  35% {
    transform: translateY(-30vh) translateX(35px) rotate(120deg) scale(0.9);
    opacity: 0.55;
  }

  65% {
    transform: translateY(-65vh) translateX(-25px) rotate(240deg) scale(1.1);
    opacity: 0.55;
  }

  85% {
    opacity: 0.45;
  }

  100% {
    transform: translateY(-105vh) translateX(20px) rotate(360deg) scale(0.6);
    opacity: 0;
  }
}

/* Background for Mobile Devices */
@media screen and (max-width: 768px) {
  body::before {
    background-image: linear-gradient(rgba(15, 20, 27, 0.8), rgba(15, 20, 27, 0.9)), url("image/background_responsive.png");
  }

  .hero-section {
    background-image: linear-gradient(rgba(15, 20, 27, 0.75), rgba(15, 20, 27, 0.75)), url("image/background_responsive.png");
  }

  .cover-bg-overlay {
    background-image: linear-gradient(rgba(15, 20, 27, 0.75), rgba(15, 20, 27, 0.85)), url("image/background_responsive.png");
  }
}

/* ========================================================================== 
   VISUAL PATCH: Tall Luxury Navy-Gold Invitation Layout
   Matches the narrow mobile mockup and improves Arabic typography.
   ========================================================================== */
:root {
  --bg-deep-navy: #060b25;
  --bg-panel-navy: rgba(8, 14, 47, 0.92);
  --bg-panel-navy-soft: rgba(8, 14, 47, 0.78);
  --gold-primary: #f4c04b;
  --gold-dark: #c68a16;
  --gold-light: #ffe08a;
  --text-gold: #f4c04b;
  --gold-border: rgba(244, 192, 75, 0.56);
  --font-arabic: 'Noto Naskh Arabic', 'Scheherazade New', 'Amiri', serif;
}

html,
body {
  background: transparent;
}

@media (min-width: 769px) {
  body::before {
    background: url("https://shemaco.com/lamiya-syarief/image/bg_premium.png") no-repeat center center / cover !important;
  }
}

.hero-section,
.mempelai-section,
.acara-section,
.hadiah-section,
.rsvp-section {
  background: transparent !important;
  background-image: none !important;
}

@media (max-width: 768px) {
  body::before {
    background: radial-gradient(circle at top, rgba(23, 33, 71, .78), rgba(4, 8, 27, .96) 62%), url("https://shemaco.com/lamiya-syarief/image/bg_premium.png");
    background-size: cover;
    background-position: center top;
  }

  body {
    display: flex;
    justify-content: center;
  }

  .main-wrapper {
    width: min(100%, 430px);
    min-height: 100vh;
    background: linear-gradient(180deg, #05091f 0%, #071033 48%, #05091f 100%);
    box-shadow: 0 0 38px rgba(0, 0, 0, .22);
    border-left: 1px solid rgba(244, 192, 75, .28);
    border-right: 1px solid rgba(244, 192, 75, .28);
    overflow: hidden;
  }

  .container {
    max-width: 430px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-section,
  .mempelai-section,
  .acara-section,
  .hadiah-section,
  .rsvp-section {
    width: 100%;
    padding: 18px 0 !important;
  }

  .quran-quote {
    margin: 10px auto 16px auto !important;
    padding: 16px 14px !important;
    width: 100% !important;
  }

  .top-quran-card {
    width: 100% !important;
    padding: 16px 18px !important;
  }

  .hero-wedding-invitation-text {
    padding: 10px 12px !important;
    margin-top: 6px !important;
  }

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

  .couple-details-wrapper,
  .event-cards-container,
  .rsvp-grid,
  .parents-columns {
    display: block !important;
  }

  .event-card,
  .gift-card,
  .rsvp-card-form,
  .rsvp-wishes-feed {
    background: var(--bg-panel-navy-soft) !important;
    border: 1px solid var(--gold-border) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .03) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 14px auto !important;
    padding: 16px 14px !important;
  }

  .closing-card-premium {
    background: rgb(8, 14, 47) !important;
    border: 1px solid rgb(8, 14, 47) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .03) !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 14px auto !important;
    padding: 16px 14px !important;
  }

  .section-subtitle {
    margin: 0 auto 14px auto !important;
    max-width: 360px !important;
  }

  iframe {
    height: 220px !important;
  }

  .rsvp-stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px !important;
  }

  .cover-modal {
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 430px);
    box-shadow: 0 0 38px rgba(0, 0, 0, .25);
  }
}

@media (min-width: 769px) {
  body::after {
    display: none;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-couple-names {}

  .quran-text,
  .hero-intro-text,
  .section-subtitle {}

  .hero-arabic {}
}


/* ==========================================================
   BLUE FLORAL ORNAMENT FRAME
   Ornamen diterapkan tanpa mengubah blok HTML MEMPELAI.
   ========================================================== */
@media (max-width: 768px) {
  .main-wrapper {
    position: relative;
    isolation: isolate;
  }

  .floral-ornament-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("floral_ornament_blue.png"), url("floral_ornament_blue.png");
    background-repeat: repeat-y, repeat-y;
    background-position: top center, 0 874px;
    background-size: 100% auto, 100% auto;
    opacity: 0.46;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 7px rgba(96, 139, 214, 0.28));
  }

  .main-wrapper>section,
  .main-wrapper>.hero-section,
  .main-wrapper>.acara-section,
  .main-wrapper>.hadiah-section,
  .main-wrapper>.rsvp-section {
    position: relative;
    z-index: 2;
  }

  /* Corner accents hanya untuk section selain MEMPELAI. */
  .hero-section::before,
  .acara-section::before,
  .hadiah-section::before,
  .rsvp-section::before,
  .hero-section::after,
  .acara-section::after,
  .hadiah-section::after,
  .rsvp-section::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 160px;
    height: 220px;
    background-image: url("floral_ornament_blue.png");
    background-size: 430px auto;
    background-repeat: no-repeat;
    opacity: 0.62;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 8px rgba(80, 120, 190, 0.24));
  }

  .hero-section::before,
  .acara-section::before,
  .hadiah-section::before,
  .rsvp-section::before {
    top: 0;
    right: 0;
    background-position: top right;
  }

  .hero-section::after,
  .acara-section::after,
  .hadiah-section::after,
  .rsvp-section::after {
    left: 0;
    bottom: 0;
    background-position: bottom left;
  }

  .quran-quote,
  .top-quran-card,
  .event-card,
  .gift-card,
  .rsvp-card-form,
  .rsvp-wishes-feed,
  .closing-card-premium {
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 480px) {
  .floral-ornament-layer {
    opacity: 0.44;
    background-size: 112% auto, 112% auto;
    background-position: top center, 50% 874px;
  }

  .hero-section::before,
  .acara-section::before,
  .hadiah-section::before,
  .rsvp-section::before,
  .hero-section::after,
  .acara-section::after,
  .hadiah-section::after,
  .rsvp-section::after {
    width: 130px;
    height: 190px;
    background-size: 390px auto;
    opacity: 0.58;
  }

  .stack-on-mobile {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .cover-photo-section {
    height: 38% !important;
  }

  .cover-navy-section {
    padding-top: 20px !important;
    padding-bottom: 15px !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
  }

  .cover-couple-script {
    margin: 5px 0 10px 0 !important;
  }

  .cover-undangan-title {}

  .cover-recipient-section {
    margin-bottom: 5px !important;
  }
}

@media (max-width: 768px) {
  .closing-section-title {
    border-bottom: 1px solid var(--gold-primary);
    box-shadow: 0 10px 10px -10px rgba(244, 192, 75, 0.9);
    padding-bottom: 8px;
    margin-bottom: 25px;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .closing-section-title {
    border-bottom: 1px solid var(--gold-primary);
    box-shadow: 0 10px 10px -10px rgba(244, 192, 75, 0.9);
    padding-bottom: 8px;
    margin-bottom: 25px;
    display: inline-block;
  }
}