/* 
================================================================================
DIGITAL MARRIAGE INVITATION: ABITHA WEDS ARIHARAN
STYLE SPECIFICATION - PREMIUM ROYAL PLUM & HERITAGE GOLD
================================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Mukta+Malar:wght@400;700&family=Noto+Sans+Tamil:wght@400;700&display=swap');

/* --- DESIGN TOKENS (HSL PALETTE) --- */
:root {
  /* Colors */
  --plum-deep: hsl(300, 50%, 15%);
  /* #3d0c3d */
  --plum-royal: hsl(300, 48%, 22%);
  /* #541654 */
  --plum-mid: hsl(300, 30%, 35%);
  /* #743e74 */
  --plum-light: hsl(300, 40%, 96%);
  /* #fbf5fb */
  --plum-translucent: hsla(300, 50%, 15%, 0.85);

  --gold-metallic: hsl(43, 62%, 50%);
  /* #cc9933 */
  --gold-bright: hsl(43, 75%, 55%);
  /* #e0a93c */
  --gold-soft: hsl(43, 60%, 75%);
  /* #e8cc8c */
  --gold-pale: hsl(43, 50%, 94%);
  /* #f9f5e8 */
  --gold-translucent: hsla(43, 62%, 50%, 0.15);

  --cream-base: hsl(38, 50%, 98%);
  /* #fffdfa */
  --cream-soft: hsl(38, 40%, 95%);
  /* #fcf8f0 */
  --text-dark: hsl(300, 10%, 15%);
  /* #262126 */
  --text-muted: hsl(300, 8%, 45%);
  /* #7d707d */
  --white: #ffffff;

  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-display: 'Cinzel', serif;
  --font-script: 'Alex Brush', cursive;
  --font-sans: 'Outfit', sans-serif;
  --font-tamil: 'Mukta Malar', 'Noto Sans Tamil', sans-serif;

  /* Shadow & Blur System */
  --shadow-gold: 0 4px 20px hsla(43, 62%, 50%, 0.2);
  --shadow-plum: 0 4px 20px hsla(300, 50%, 15%, 0.1);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --glass-blur: blur(12px);
  --border-gold: 1px solid hsla(43, 62%, 50%, 0.35);
  --border-gold-glow: 1px solid hsla(43, 75%, 55%, 0.6);
  --border-plum-light: 1px solid hsla(300, 30%, 35%, 0.15);

  /* Layout Gaps */
  --container-max: 480px;
  /* Mobile first lock */
}

/* --- BASE & UTILITY CLASSES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-base);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  /* Space for sticky nav */
}

/* Language Display Toggling */
body.lang-ta .en {
  display: none !important;
}

body.lang-en .ta {
  display: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-base);
}

::-webkit-scrollbar-thumb {
  background: var(--plum-mid);
  border-radius: 3px;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatConfetti {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

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

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes wave {

  0%,
  100% {
    height: 4px;
  }

  50% {
    height: 20px;
  }
}

/* --- MUSIC FLOATING SOUNDWAVE BAR --- */
.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.sound-wave span {
  display: block;
  width: 3px;
  background-color: var(--gold-metallic);
  border-radius: 1px;
}

.sound-wave.playing span {
  animation: wave 1.2s infinite ease-in-out;
}

.sound-wave.playing span:nth-child(1) {
  animation-delay: 0.2s;
}

.sound-wave.playing span:nth-child(2) {
  animation-delay: 0.4s;
}

.sound-wave.playing span:nth-child(3) {
  animation-delay: 0.6s;
}

.sound-wave.playing span:nth-child(4) {
  animation-delay: 0.1s;
}

/* --- INTRO GATES SCREEN (GATE OVERLAY) --- */
.gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--plum-royal) 30%, var(--plum-deep) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  color: var(--gold-pale);
  text-align: center;
  padding: 24px;
  overflow: hidden;
}

.gate-overlay.opened {
  transform: scale(0.9) translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.gate-icon {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.5));
  animation: gateIconEntrance 1.6s cubic-bezier(0.19, 1, 0.22, 1) forwards, pulseIconGlow 3s infinite 1.6s ease-in-out;
}

.gate-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: var(--gold-bright);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.gate-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.8;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out 0.7s both;
}

/* Cinematic Golden Progress Bar */
.gate-loader-container {
  width: 220px;
  margin-top: 36px;
  text-align: center;
  animation: fadeIn 1s ease-out 1s both;
}

.gate-loader-bar {
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-metallic), var(--gold-bright), var(--gold-soft));
  border-radius: 4px;
  box-shadow: 0 0 10px var(--gold-bright);
  animation: fillLoader 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.gate-loader-text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-top: 12px;
  color: var(--gold-soft);
  opacity: 0.75;
  text-transform: uppercase;
}

.gate-loader-text.ta {
  font-family: var(--font-tamil);
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.gate-flowers {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M0,0 Q25,20 50,0 T100,0 L100,10 L0,10 Z" fill="%23cc9933" opacity="0.15"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  animation: fadeIn 2s ease-in;
}

/* --- KEYFRAMES FOR WELCOME INTRO --- */
@keyframes fillLoader {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes gateIconEntrance {
  from {
    opacity: 0;
    transform: scale(0.65) translateY(50px);
  }

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

@keyframes pulseIconGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4));
  }

  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 22px rgba(212, 175, 55, 0.75));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4));
  }
}

/* --- THE BACKGROUND FLOATING DECORATIONS --- */
.background-petal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.petal {
  position: absolute;
  background-color: var(--plum-mid);
  width: 12px;
  height: 18px;
  border-radius: 0 50% 50% 50%;
  opacity: 0;
  animation: floatConfetti 12s linear infinite;
}

.petal:nth-child(even) {
  background-color: var(--gold-soft);
  width: 10px;
  height: 15px;
}

/* --- MOBILE RESPONSIVE WRAPPER (MOBILE FIRST LIMIT) --- */
.mobile-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  background-color: var(--cream-base);
  box-shadow: var(--shadow-plum);
  min-height: 100vh;
  position: relative;
  border-left: 1px solid hsla(300, 30%, 35%, 0.05);
  border-right: 1px solid hsla(300, 30%, 35%, 0.05);
}

/* --- FLOATING HEADER CONTROL BAR --- */
.floating-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 253, 250, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid hsla(300, 30%, 35%, 0.08);
}

.floating-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--plum-royal);
  letter-spacing: 1px;
}

.floating-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Toggle Button */
.lang-btn {
  background: var(--plum-royal);
  color: var(--gold-pale);
  border: 1px solid var(--gold-metallic);
  font-family: var(--font-sans);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:active {
  transform: scale(0.9);
}

/* --- STICKY FOOTER NAVIGATION --- */
.sticky-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  background: rgba(84, 22, 84, 0.96);
  /* Plum Translucent */
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--gold-metallic);
  display: flex;
  justify-content: space-around;
  padding: 8px 0 12px 0;
  z-index: 998;
}

.nav-item {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.72rem;
  font-family: var(--font-sans);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.75;
  transition: all 0.2s ease;
  width: 25%;
}

.nav-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-item.active,
.nav-item:active {
  color: var(--gold-bright);
  opacity: 1;
  transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-divine-header {
  font-size: 0.78rem;
  color: var(--plum-mid);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.divine-deities-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 20px 0;
}

.deity-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-metallic);
  padding: 2px;
  box-shadow: var(--shadow-plum);
}

.deity-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-image-frame {
  position: relative;
  width: 280px;
  height: 380px;
  margin: 0 auto 28px auto;
  border-radius: 140px 140px 20px 20px;
  /* Arch shape */
  padding: 4px;
  background: linear-gradient(135deg, var(--gold-metallic) 0%, var(--gold-bright) 50%, var(--gold-soft) 100%);
  box-shadow: var(--shadow-gold);
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 136px 136px 16px 16px;
  overflow: hidden;
  position: relative;
  background-color: var(--plum-deep);
}

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

.hero-names {
  margin-top: 16px;
}

.hero-names h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--plum-royal);
  margin-bottom: 2px;
  font-weight: 700;
}

.hero-names h1.ta {
  font-family: var(--font-tamil);
  font-size: 2rem;
}

.hero-script-amp {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--gold-metallic);
  display: block;
  line-height: 0.6;
  margin: 8px 0;
}

.hero-date {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 8px;
  text-transform: uppercase;
}

.decor-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gold-bright);
}

.decor-divider span {
  width: 40px;
  height: 1px;
  background-color: var(--gold-soft);
}

.decor-divider svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- COUNTDOWN TIMER --- */
.countdown-box {
  background: linear-gradient(135deg, var(--plum-royal), var(--plum-deep));
  border: var(--border-gold);
  border-radius: 16px;
  padding: 16px;
  margin: 12px 16px 32px 16px;
  color: var(--gold-pale);
  text-align: center;
  box-shadow: var(--shadow-plum);
}

.countdown-box h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.countdown-grid {
  display: flex;
  justify-content: space-around;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  width: 22%;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.countdown-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--gold-pale);
  opacity: 0.8;
  letter-spacing: 1px;
}

/* --- CORE SECTIONS (DETAILS, EVENTS, RSVP) --- */
.section-container {
  padding: 32px 16px;
  margin: 0 16px 28px 16px;
  border-radius: 20px;
  background: var(--white);
  border: var(--border-plum-light);
  box-shadow: var(--shadow-soft);
  animation: fadeInUp 0.8s ease;
}

.section-container.gold-theme {
  background: var(--gold-pale);
  border: var(--border-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--plum-royal);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.section-title.ta {
  font-family: var(--font-tamil);
  font-size: 1.5rem;
}

/* Main Invite Message Card */
.invite-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-family: var(--font-sans);
}

.invite-text.ta {
  font-family: var(--font-tamil);
  font-size: 0.92rem;
  text-align: justify;
}

.invite-highlight-box {
  background: var(--gold-translucent);
  border-left: 3px solid var(--gold-bright);
  padding: 12px;
  border-radius: 4px;
  margin: 18px 0;
  font-weight: 500;
  color: var(--plum-deep);
}

/* --- THE COUPLE LINEAGE SECTION --- */
.lineage-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.person-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: var(--plum-deep);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--plum-royal);
  font-weight: 700;
  margin-bottom: 4px;
}

.person-name.ta {
  font-family: var(--font-tamil);
  font-size: 1.35rem;
}

.person-degree {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.lineage-details {
  border-top: 1px dashed hsla(300, 30%, 35%, 0.15);
  padding-top: 12px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.lineage-details.ta {
  font-family: var(--font-tamil);
  font-size: 0.85rem;
}

.lineage-row {
  margin-bottom: 8px;
}

.lineage-label {
  font-weight: 700;
  color: var(--plum-mid);
}

/* --- EVENTS SECTION --- */
.event-card {
  background: var(--white);
  border: var(--border-gold);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--plum-royal);
}

.event-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.event-icon-circle {
  width: 38px;
  height: 38px;
  background: var(--plum-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--plum-royal);
}

.event-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--plum-royal);
  font-weight: 700;
}

.event-name.ta {
  font-family: var(--font-tamil);
  font-size: 1.15rem;
}

.event-details-list {
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.event-details-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.event-details-list svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-metallic);
  margin-top: 4px;
  flex-shrink: 0;
}

.action-btn-group {
  display: flex;
  gap: 12px;
}

.action-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gold-metallic);
  color: var(--plum-royal);
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.action-btn:active {
  background: var(--gold-pale);
  transform: scale(0.97);
}

.action-btn.primary {
  background: linear-gradient(135deg, var(--plum-royal), var(--plum-deep));
  border: 1px solid var(--gold-metallic);
  color: var(--gold-pale);
}

.action-btn.primary:active {
  background: var(--plum-deep);
}

/* --- ORIGINAL CARD CALL TO ACTION --- */
.card-cta-box {
  text-align: center;
  padding: 16px;
  background: var(--plum-light);
  border: 1px solid var(--plum-mid);
  border-radius: 12px;
  margin-top: 12px;
}

.card-cta-box h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--plum-royal);
  margin-bottom: 8px;
}

.card-cta-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 16px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 95%;
  max-height: 85%;
  position: relative;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid var(--gold-bright);
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* --- HOSTS / FAMILY GRID --- */
.hosts-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.host-column {
  background: var(--plum-light);
  border-radius: 12px;
  padding: 16px;
  border: var(--border-plum-light);
}

.host-heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--plum-royal);
  font-weight: 700;
  border-bottom: 1px solid hsla(300, 30%, 35%, 0.1);
  padding-bottom: 8px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.host-heading.ta {
  font-family: var(--font-tamil);
  font-size: 0.92rem;
}

.host-list {
  list-style: none;
  font-size: 0.85rem;
  line-height: 1.7;
}

.host-list li {
  margin-bottom: 8px;
}

.host-member-name {
  font-weight: 700;
  color: var(--text-dark);
}

.host-member-detail {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

.contact-card-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--white);
  color: var(--plum-royal);
  border: 1px solid var(--plum-mid);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.contact-card-btn:active {
  background: var(--plum-royal);
  color: var(--gold-pale);
}

/* --- DIGITAL GUESTBOOK WISH WALL --- */
.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.input-field {
  width: 100%;
  padding: 12px;
  border: 1px solid hsla(300, 30%, 35%, 0.2);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.input-field:focus {
  border-color: var(--plum-royal);
  box-shadow: 0 0 0 1px var(--plum-royal);
}

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

.submit-btn {
  background: linear-gradient(135deg, var(--plum-royal), var(--plum-deep));
  border: 1px solid var(--gold-bright);
  color: var(--gold-pale);
  font-family: var(--font-display);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.submit-btn:active {
  transform: scale(0.97);
}

.wishes-wall {
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid hsla(300, 30%, 35%, 0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wish-card {
  background: var(--plum-light);
  border: var(--border-plum-light);
  padding: 12px;
  border-radius: 8px;
  animation: fadeInUp 0.4s ease-out;
}

.wish-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--plum-royal);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}

.wish-date {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
}

.wish-text {
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.5;
  font-style: italic;
}

/* --- FOOTER SECT --- */
.wedding-footer {
  text-align: center;
  padding: 32px 16px 20px 16px;
  background: var(--plum-deep);
  color: var(--gold-pale);
  border-top: 2px solid var(--gold-bright);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.footer-blessing {
  font-size: 0.8rem;
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.footer-credit {
  font-size: 0.65rem;
  opacity: 0.6;
  letter-spacing: 1px;
}

/* --- UTILS --- */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 16px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

/* Large screen support (centered mobile viewport) */
@media (min-width: 480px) {
  body {
    background-color: var(--cream-soft);
  }
}