/* ==========================================================================
   Kerala Malayalam Hindu Wedding Website - Stylesheet
   Designed for Sachin Krishna & Nandhana Prakashan
   Theme: Soft Watercolor Floral, Cream (#FAF8F5), Deep Gold (#B58A4A)
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Malayalam:wght@400;500;600;700;800&family=Noto+Sans+Malayalam:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700;800&family=Great+Vibes&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Primary Color Palette */
  --bg-cream: #FAF8F5;
  --card-bg: #FFFDF8;
  --gold-primary: #B58A4A;
  --gold-light: #E2C889;
  --gold-accent: #D4AF37;
  --gold-dark: #8C662B;

  /* Text Colors */
  --text-dark: #2F2F2F;
  --text-secondary: #6A533E;
  --text-muted: #8E7B68;

  /* Soft Floral Accents */
  --soft-pink: #F8DCE5;
  --rose-accent: #E89BA7;
  --deep-rose: #B85271;
  --leaf-green: #7A9A6B;
  --green-accent: #5E7A50;

  /* Layout Dimensions */
  --container-max-width: 520px;

  /* Shadows & Borders */
  --card-shadow: 0 10px 30px rgba(181, 138, 74, 0.12), 0 2px 8px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 15px 35px rgba(181, 138, 74, 0.2), 0 5px 15px rgba(0, 0, 0, 0.05);
  --gold-border: 1px solid rgba(181, 138, 74, 0.35);
  --gold-border-solid: 1.5px solid #B58A4A;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html,
body {
  width: 100%;
  height: 100%;
  background-color: #EFE9E0;
  /* Outer background on wide desktop screens */
  font-family: 'Noto Sans Malayalam', sans-serif;
  color: var(--text-dark);
  overflow: hidden;
  /* Screen-locking container handles scroll snap */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- MAIN MOBILE-FIRST CONTAINER (Centered on Desktop) --- */
.app-container {
  width: 100%;
  max-width: var(--container-max-width);
  height: 100vh;
  height: 100dvh;
  background-color: var(--bg-cream);
  position: relative;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  border-left: var(--gold-border);
  border-right: var(--gold-border);
}

/* Hide Scrollbar for clean luxury presentation */
.app-container::-webkit-scrollbar {
  display: none;
}

.app-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --- BACKGROUND CANVAS FOR FLOATING PETALS --- */
#petalsCanvas {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max-width);
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
  z-index: 15;
}

/* --- FIXED FLORAL CORNER OVERLAYS --- */
.corner-decor {
  position: fixed;
  z-index: 12;
  pointer-events: none;
  opacity: 0.92;
  transition: opacity 0.5s ease;
}

.corner-decor.top-left {
  top: 0;
  left: max(0px, calc(50% - (var(--container-max-width) / 2)));
  width: 110px;
  height: 110px;
}

.corner-decor.top-right {
  top: 0;
  right: max(0px, calc(50% - (var(--container-max-width) / 2)));
  width: 110px;
  height: 110px;
  transform: scaleX(-1);
}

.corner-decor.bottom-left {
  bottom: 0;
  left: max(0px, calc(50% - (var(--container-max-width) / 2)));
  width: 100px;
  height: 100px;
  transform: scaleY(-1);
}

.corner-decor.bottom-right {
  bottom: 0;
  right: max(0px, calc(50% - (var(--container-max-width) / 2)));
  width: 100px;
  height: 100px;
  transform: scale(-1);
}

/* --- FLOATING CONTROLS BAR --- */
/* Top-Right Floating Music Button */
.music-toggle-btn {
  position: fixed;
  top: 18px;
  right: max(18px, calc(50% - (var(--container-max-width) / 2) + 18px));
  z-index: 99;
  background: rgba(255, 253, 248, 0.92);
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(181, 138, 74, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.music-toggle-btn:active {
  transform: scale(0.92);
}

.music-toggle-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
  transition: fill 0.3s ease;
}

.music-playing {
  animation: goldPulse 2.5s infinite ease-in-out;
  border-color: var(--gold-accent);
}

@keyframes goldPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(181, 138, 74, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(181, 138, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(181, 138, 74, 0);
  }
}

/* Bottom-Left Floating WhatsApp Share Button */
.whatsapp-share-btn {
  position: fixed;
  bottom: 22px;
  left: max(18px, calc(50% - (var(--container-max-width) / 2) + 18px));
  z-index: 99;
  background: rgba(255, 253, 248, 0.94);
  border: 1.5px solid #25D366;
  border-radius: 25px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  backdrop-filter: blur(8px);
  font-family: 'Noto Sans Malayalam', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #128C7E;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-share-btn:active {
  transform: scale(0.95);
}

.whatsapp-share-btn svg {
  width: 18px;
  height: 18px;
  fill: #25D366;
}

/* Bottom-Right Floating Scroll Indicator / Scroll-to-Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 22px;
  right: max(18px, calc(50% - (var(--container-max-width) / 2) + 18px));
  z-index: 99;
  background: rgba(255, 253, 248, 0.94);
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(181, 138, 74, 0.2);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
  opacity: 0.85;
}

.scroll-top-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

/* --- TAP TO BEGIN / WELCOME SPLASH OVERLAY --- */
.splash-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max-width);
  height: 100vh;
  height: 100dvh;
  background: radial-gradient(circle at center, #FFFDF8 0%, #FAF8F5 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-mandala {
  width: 110px;
  height: 110px;
  animation: rotateMandala 20s linear infinite;
}

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

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

.splash-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.splash-title {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.splash-names {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.tap-begin-btn {
  background: linear-gradient(135deg, #B58A4A 0%, #8C662B 100%);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Noto Sans Malayalam', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(181, 138, 74, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  animation: pulseButton 2s infinite alternate;
}

@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(181, 138, 74, 0.35);
  }

  100% {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(181, 138, 74, 0.5);
  }
}

/* --- CSS SCROLL SNAP SECTIONS (100vh) --- */
.snap-section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* --- SECTION 1: HERO --- */
.hero-section {
  background: radial-gradient(circle at 50% 30%, #FFFDF8 0%, #FAF8F5 100%);
}

.hero-ganesha-wrapper {
  width: 65px;
  height: 65px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(181, 138, 74, 0.2));
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.hero-heading {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(181, 138, 74, 0.1);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 16px 0;
  width: 80%;
}

.hero-divider .line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.hero-names {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-names .ampersand {
  color: var(--gold-primary);
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  display: block;
  margin: 2px 0;
}

.hero-details-pill {
  background: var(--card-bg);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: var(--card-shadow);
  width: 90%;
  margin-bottom: 24px;
}

.hero-date {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.hero-time {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 4px;
}

.hero-venue-name {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.scroll-indicator {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gold-primary);
  font-size: 0.78rem;
  cursor: pointer;
  animation: bounceArrow 2s infinite;
}

.scroll-indicator svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-primary);
}

@keyframes bounceArrow {

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

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

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

/* --- SECTION 2: WEDDING INVITATION TEXT --- */
.invitation-section {
  background: #FFFDF8;
}

.section-decor-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
}

.invitation-card-frame {
  background: var(--bg-cream);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--card-shadow);
  width: 100%;
  position: relative;
}

.invitation-card-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px dashed rgba(181, 138, 74, 0.3);
  border-radius: 14px;
  pointer-events: none;
}

.invitation-salutation {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.invitation-text-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 18px;
}

.invitation-text-body strong {
  color: var(--gold-dark);
  font-size: 1.02rem;
}

.peacock-divider {
  width: 120px;
  height: 30px;
  margin: 12px auto;
  opacity: 0.9;
}

/* --- SECTION 3: WEDDING DETAILS CARDS --- */
.details-section {
  background: var(--bg-cream);
}

.section-title {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold-primary);
  margin: 6px auto 0 auto;
  border-radius: 2px;
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.detail-card {
  background: var(--card-bg);
  border: var(--gold-border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

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

.detail-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(248, 220, 229, 0.35);
  border: 1px solid var(--rose-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.detail-content .label {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 2px;
}

.detail-content .value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.detail-content .sub-value {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- SECTION 4: BRIDE & GROOM --- */
.couple-section {
  background: #FFFDF8;
}

.couple-portrait-container {
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
  position: relative;
}

.couple-frame {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(181, 138, 74, 0.25);
  border: 4px solid #FFFFFF;
  outline: 1.5px solid var(--gold-primary);
  background: var(--bg-cream);
  position: relative;
}

.couple-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.couple-frame:hover img {
  transform: scale(1.03);
}

.couple-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.person-card {
  background: var(--bg-cream);
  border: var(--gold-border);
  border-radius: 14px;
  padding: 14px 10px;
  box-shadow: var(--card-shadow);
}

.person-tag {
  font-size: 0.72rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.person-name {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.person-parents {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.couple-jasmine {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatJasmine 3s infinite ease-in-out alternate;
  filter: drop-shadow(0 2px 6px rgba(181, 138, 74, 0.25));
}

@keyframes floatJasmine {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.15) rotate(10deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* --- SECTION 5: VENUE & LOCATION --- */
.venue-section {
  background: var(--bg-cream);
}

.venue-card {
  background: var(--card-bg);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: var(--card-shadow);
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.venue-temple-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.venue-name {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.venue-address {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.venue-time-badge {
  display: inline-block;
  background: rgba(248, 220, 229, 0.4);
  border: 1px solid var(--rose-accent);
  color: var(--deep-rose);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 15px;
}

.action-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #B58A4A 0%, #8C662B 100%);
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 28px;
  font-family: 'Noto Sans Malayalam', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(181, 138, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.btn-secondary {
  background: var(--card-bg);
  color: var(--gold-dark);
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 28px;
  font-family: 'Noto Sans Malayalam', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border: var(--gold-border-solid);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

/* --- SECTION 6: SCHEDULE TIMELINE --- */
.schedule-section {
  background: #FFFDF8;
}

.timeline-container {
  width: 100%;
  position: relative;
  padding-left: 24px;
  text-align: left;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary), var(--rose-accent));
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(181, 138, 74, 0.15);
}

.timeline-time {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 2px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.timeline-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- SECTION 7: FAMILY & HOSTS --- */
.family-section {
  background: var(--bg-cream);
}

.family-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.family-card {
  background: var(--card-bg);
  border: var(--gold-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.family-card-title {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.family-members-list {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.host-phone {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* --- SECTION 8: BLESSINGS & GRATITUDE --- */
.blessings-section {
  background: radial-gradient(circle at 50% 50%, #FFFDF8 0%, #FAF8F5 100%);
}

.quote-card {
  background: var(--card-bg);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: var(--card-shadow);
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: -15px;
}

.blessings-quote {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Countdown Timer Box */
.countdown-box {
  width: 100%;
  margin-bottom: 18px;
}

.countdown-title {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.timer-grid {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.time-unit-card {
  background: linear-gradient(135deg, #B58A4A 0%, #8C662B 100%);
  color: #FFFFFF;
  padding: 8px 10px;
  border-radius: 10px;
  min-width: 58px;
  box-shadow: 0 4px 12px rgba(181, 138, 74, 0.25);
}

.time-num {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
}

.time-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
  text-transform: uppercase;
}

.gratitude-title {
  font-family: 'Noto Serif Malayalam', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.lotus-icon {
  width: 44px;
  height: 44px;
  margin-top: 4px;
}

/* --- FOOTER --- */
.app-footer {
  padding-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px dashed rgba(181, 138, 74, 0.3);
  width: 90%;
  margin-top: 10px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 380px) {
  .hero-heading {
    font-size: 1.8rem;
  }

  .hero-names {
    font-size: 1.45rem;
  }

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

  .person-name {
    font-size: 0.95rem;
  }

  .snap-section {
    padding: 30px 16px;
  }
}

@media (min-width: 768px) {

  /* Enhanced luxury border frame for desktop displays */
  .app-container {
    height: 92vh;
    border-radius: 28px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }
}