* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      color: #ffece0;
      overflow-x: hidden;
      background: #050003;
      position: relative;
      -webkit-touch-callout: none;
      background: transparent !important; /* Let the index.html bg show */
    }

    /* Fullscreen Unsplash background image */
    .bg-image {
      position: fixed;
      inset: 0;
      z-index: -4;
      background: url("../images/main-background/main-background.png?auto=format&fit=crop&w=2400&q=80")
        center center / cover no-repeat;
      filter: saturate(1.18) contrast(1.08);
      display: none;
    }

    /* Very light dark overlay so image stays strong */
    .video-overlay {
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at top, rgba(0, 0, 0, 0.14), transparent 55%),
        radial-gradient(circle at bottom, rgba(0, 0, 0, 0.22), transparent 55%);
      mix-blend-mode: multiply;
      z-index: -2;
      pointer-events: none;
    }

    /* Almost no color tint, just a hint of red */
    .color-morph {
      position: fixed;
      inset: 0;
      z-index: -3;
      pointer-events: none;
      background: radial-gradient(circle at top, rgba(40, 0, 8, 0.18), rgba(10, 0, 3, 0.22));
    }

    /* Hearts canvas */
    #particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
    }

    main {
      position: relative;
      z-index: 1;
      max-width: 820px;
      margin: 0 auto;
      padding: 0 12px 56px;
    }

    section.full-page {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 0;
      opacity: 0;
      transform: translateY(40px) scale(0.98);
      transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    }

    section.full-page.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Card – solid, glowing border */
    .card {
  width: 100%;
  max-width: 500px;
  /* allow card to grow with content */
  min-height: 70vh;
  /* remove hard cap so content isn’t cut */
  max-height: none;
  border-radius: 30px;
  padding: 22px 18px 18px;
  background: radial-gradient(circle at top left, rgba(5, 0, 3, 0.2), rgba(2, 0, 1, 0.16));
  border: 1px solid rgba(255, 214, 170, 0.8);
  box-shadow:
    0 0 16px rgba(255, 190, 150, 0.7),
    0 0 34px rgba(255, 150, 110, 0.4),
    0 16px 46px rgba(0, 0, 0, 0.8);
  position: relative;
  /* let content show fully */
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  animation:
    card-pop 0.9s ease-out,
    cardGlow 4s ease-in-out 0.8s infinite alternate;
}

    @keyframes card-pop {
      from {
        transform: translateY(18px) scale(0.96);
        opacity: 0;
      }
      to {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
    }

    @keyframes cardGlow {
      0% {
        border-color: rgba(255, 214, 170, 0.7);
        box-shadow:
          0 0 14px rgba(255, 200, 160, 0.7),
          0 0 30px rgba(255, 160, 120, 0.4),
          0 16px 46px rgba(0, 0, 0, 0.8);
      }
      50% {
        border-color: rgba(255, 238, 210, 1);
        box-shadow:
          0 0 22px rgba(255, 220, 190, 1),
          0 0 46px rgba(255, 170, 120, 0.7),
          0 20px 60px rgba(0, 0, 0, 0.95);
      }
      100% {
        border-color: rgba(255, 214, 170, 0.85);
        box-shadow:
          0 0 18px rgba(255, 205, 170, 0.8),
          0 0 38px rgba(255, 160, 120, 0.5),
          0 18px 52px rgba(0, 0, 0, 0.9);
      }
    }

    @keyframes logoFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 3px rgba(255, 210, 180, 0.5));
    opacity: 0.96;
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 230, 200, 0.95));
    opacity: 1;
  }
  100% {
    filter: drop-shadow(0 0 4px rgba(255, 210, 180, 0.6));
    opacity: 0.98;
  }
}


    /* Single source of truth: card-inner pinned to top */
    .card-inner {
      flex: 0 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start; /* top-align contents */
      align-items: stretch;
      gap: 16px;
      position: relative;
      z-index: 1;
      padding-top: 10px; /* breathing space from top border */
    }

    .card-footer {
      flex: 0 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Floral corners */
    .flower-corner {
      position: absolute;
      width: 80px;
      height: 80px;
      opacity: 0.9;
      pointer-events: none;
      z-index: 0;
    }

    .flower-top-left {
      top: -18px;
      left: -18px;
      background:
        radial-gradient(circle at 60% 40%, #ffdede, transparent 60%),
        radial-gradient(circle at 20% 80%, #ffb3b3, transparent 55%);
      border-radius: 50%;
      box-shadow: 0 0 18px rgba(255, 200, 200, 0.8);
    }

    .flower-top-right {
      top: -14px;
      right: -10px;
      background:
        radial-gradient(circle at 40% 30%, #ffe9c0, transparent 60%),
        radial-gradient(circle at 80% 80%, #ffcba0, transparent 55%);
      border-radius: 50%;
      box-shadow: 0 0 16px rgba(255, 220, 170, 0.9);
    }

    .flower-bottom-left {
      bottom: -16px;
      left: -10px;
      background:
        radial-gradient(circle at 40% 60%, #ffb0c8, transparent 60%),
        radial-gradient(circle at 80% 20%, #ff7b9c, transparent 55%);
      border-radius: 50%;
      box-shadow: 0 0 16px rgba(255, 150, 180, 0.9);
    }

    .flower-bottom-right {
      bottom: -18px;
      right: -18px;
      background:
        radial-gradient(circle at 50% 40%, #ffe7c0, transparent 60%),
        radial-gradient(circle at 30% 80%, #ffb86b, transparent 55%);
      border-radius: 50%;
      box-shadow: 0 0 18px rgba(255, 210, 150, 0.9);
    }

    .garland-top {
      position: absolute;
      left: 50%;
      top: -6px;
      transform: translateX(-50%);
      width: 80%;
      height: 24px;
      background:
        radial-gradient(circle at 10% 100%, #ffb3b3, transparent 60%),
        radial-gradient(circle at 50% 100%, #ffd39c, transparent 60%),
        radial-gradient(circle at 90% 100%, #ff9fb6, transparent 60%);
      border-radius: 50%;
      opacity: 0.85;
      filter: blur(0.2px);
      z-index: 0;
    }

    /* Hero */
    .hero {
      text-align: center;
      padding: 4px 6px 4px;
    }

    /* Couples logo between title and names */
    .couple-logo {
      margin: 10px auto 14px;
      max-width: 120px;
      width: 40%;
      display: block;
      mix-blend-mode: multiply;
      /* animation */
      animation: logoFloat 4s ease-in-out infinite, logoGlow 4s ease-in-out infinite;
      transform-origin: center center;
    }

    .tagline {
      font-size: 0.75rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255, 248, 240, 0.96);
      margin-bottom: 8px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    .names {
      /* font-family: Copperplate, Papyrus, fantasy; */
      font-family: "Lucida Handwriting", cursive !important;
      font-size: 1.7rem;
      letter-spacing: 0.2em;
      /* text-transform: uppercase; */
      color: #fffefb;
      text-shadow: 0 2px 7px rgba(0, 0, 0, 0.75);
      position: relative;
      overflow: hidden;
      display: inline-flex;
      gap: 0.1em;
    }

    .names .word {
      display: inline-flex;
      gap: 0.05em;
    }

    .names .space {
      width: 0.4em;
    }

    .amp {
      font-style: italic;
      color: #ffbfa5;
      margin: 0 0.35em;
      display: inline-block;
    }

    /* letter-by-letter fade from left */
    .names span.letter,
    .names .amp {
      opacity: 0;
      transform: translateX(-20px);
      animation: letterFadeIn 0.5s ease-out forwards;
    }

    @keyframes letterFadeIn {
      0% {
        opacity: 0;
        transform: translateX(-20px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hashtag-line {
      margin-top: 6px;
      font-size: 1.2rem;
      font-weight: bold;
      color: pink;
      letter-spacing: 0.18em;
      /* text-transform: uppercase; */
      opacity: 0;
      transform: translateY(6px);
      animation: hashtagFadeIn 0.25s ease-out forwards;
    }

    .hashtag-line-last {
      margin-top: 6px;
      font-size: 1.4rem;
      font-weight: bold;
      color: pink;
      letter-spacing: 0.18em;
      /* text-transform: uppercase; */
      opacity: 0;
      transform: translateY(6px);
      animation: hashtagFadeIn 0.25s ease-out forwards;
    }

    @keyframes hashtagFadeIn {
      0% {
        opacity: 0;
        transform: translateY(6px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-subtitle {
      margin-top: 10px;
      font-size: 1.2rem;
      color: rgba(255, 240, 232, 0.94);
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    .hero-divider {
      width: 80%;
      height: 2px;
      border-radius: 999px;
      margin: 14px auto 14px;
      background: linear-gradient(90deg, #ffb3a0, #ffe8bf, #ffb3a0);
      box-shadow: 0 0 12px rgba(255, 225, 170, 0.8);
    }

    .hero-date-place {
      font-size: 1rem;
      color: rgba(255, 240, 232, 0.94);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    /* Countdown */
    .countdown {
      margin-top: 16px;
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .time-box {
      min-width: 64px;
      padding: 9px 8px;
      border-radius: 16px;
      background: radial-gradient(circle at top, rgba(0, 0, 0, 0.6), transparent 65%);
      border: 1px solid rgba(255, 220, 190, 0.95);
      text-align: center;
      box-shadow:
        0 0 10px rgba(255, 210, 170, 0.9),
        0 0 22px rgba(255, 160, 120, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.9);
      animation: countdownGlow 3.5s ease-in-out infinite alternate;
    }

    @keyframes countdownGlow {
      0% {
        box-shadow:
          0 0 8px rgba(255, 200, 160, 0.8),
          0 0 18px rgba(255, 150, 110, 0.5),
          0 6px 16px rgba(0, 0, 0, 0.85);
      }
      100% {
        box-shadow:
          0 0 14px rgba(255, 225, 190, 1),
          0 0 26px rgba(255, 170, 130, 0.85),
          0 10px 24px rgba(0, 0, 0, 0.95);
      }
    }

    .time-value {
      font-size: 1.2rem;
      font-weight: 600;
      color: #ffffff;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    .time-label {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 240, 232, 0.94);
      margin-top: 2px;
    }

    .scroll-hint {
      margin-top: 14px;
      font-size: 1rem;
      color: rgba(255, 240, 232, 0.94);
      text-align: center;
      opacity: 0.9;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    /* Events */
    .event-tag {
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 248, 240, 0.96);
      text-align: center;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    .event-title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 1.5rem;
      color: #fffefb;
      text-align: center;
      margin-top: 4px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-shadow: 0 2px 7px rgba(0, 0, 0, 0.75);
    }

    .event-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 240, 232, 0.94);
      text-align: center;
      margin-top: 8px;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    .event-divider {
      width: 60px;
      height: 2px;
      border-radius: 999px;
      margin: 10px auto 8px;
      background: linear-gradient(90deg, #ffb3a0, #ffe8bf, #ffb3a0);
      box-shadow: 0 0 10px rgba(255, 215, 160, 0.9);
    }

    .event-meta {
  display: flex;
  flex-direction: column;  /* rows stacked vertically */
  gap: 0.8rem;
  justify-content: left;
}

.event-row {
  display: flex;           /* icon + text in one horizontal line */
    justify-content: center;
  align-items: left;
  gap: 0.6rem;
}

.event-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.event-label-text {
  font-weight: 600;
}

    .event-label {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 248, 240, 0.96);
      margin-top: 6px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    .event-value {
      font-size: 1.3rem;
      font-weight: bold;
      color: rgba(255, 248, 240, 0.96);
      margin-top: 2px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    .event-text {
      margin-top: 10px;
      font-size: 1.1rem;
      color: rgba(255, 240, 232, 0.94);
      line-height: 1.6;
      text-align: center;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    /* Venue / CTA */
    .venue-block {
      margin-top: 10px;
      text-align: center;
    }

    .venue-title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 1.05rem;
      color: #fffefb;
      margin-bottom: 4px;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    .venue-text {
      font-size: 0.88rem;
      color: rgba(255, 240, 232, 0.94);
      line-height: 1.4;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
    }

    .cta {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 0.99rem;
      text-decoration: none;
      cursor: pointer;
      border: 1px solid rgba(255, 220, 190, 0.9);
      outline: none;
      background: radial-gradient(circle at 0% 0%, #ffe8bf, #ffb3a0);
      color: #400000;
      box-shadow:
        0 0 10px rgba(255, 210, 170, 0.9),
        0 0 22px rgba(255, 170, 130, 0.7),
        0 10px 26px rgba(0, 0, 0, 0.9);
      transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        filter 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px) scale(1.03);
      box-shadow:
        0 0 16px rgba(255, 230, 190, 1),
        0 0 32px rgba(255, 180, 140, 0.9),
        0 16px 34px rgba(0, 0, 0, 0.95);
      filter: saturate(1.08);
    }

    .btn:active {
      transform: translateY(0) scale(0.98);
      box-shadow:
        0 0 10px rgba(255, 210, 170, 0.8),
        0 0 20px rgba(255, 170, 130, 0.7),
        0 9px 20px rgba(0, 0, 0, 0.9);
    }

    /* Outline style but still glowing */
    .btn-secondary {
      background: transparent;
      border: 1px solid rgba(255, 220, 190, 0.9);
      color: #400000;
      font-weight: bold;
      font-size: 1rem;
      box-shadow:
        0 0 8px rgba(255, 210, 170, 0.85),
        0 0 18px rgba(255, 170, 130, 0.6);
      background: radial-gradient(circle at 0% 0%, #ffe8bf, #ffb3a0);
    }

    .btn-secondary:hover {
      color:white;
      background: rgba(255, 210, 170, 0.12);
      box-shadow:
        0 0 14px rgba(255, 230, 190, 1),
        0 0 26px rgba(255, 180, 140, 0.85);
    }

    .btn-row {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .rsvp {
      font-size: 0.78rem;
      color: rgba(255, 240, 232, 0.94);
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    .footer-note {
      margin-top: 10px;
      font-size: 0.78rem;
      color: rgba(255, 240, 232, 0.94);
      text-align: center;
      opacity: 0.9;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    /* Story navigation dots */
/* ================================================================
   NAVIGATION DOTS (FIXED & HIGH Z-INDEX TO PREVENT OVERLAP)
   ================================================================ */

.nav-dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    /* Higher z-index ensures it stays above cards and floral elements */
    z-index: 2000; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Semi-transparent background for better visibility on scannable scrolling */
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 10px;
    border-radius: 30px;
    /* Blurs the content behind the nav bar for better readability */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 214, 170, 0.2);
    pointer-events: auto;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 214, 170, 0.8);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-dot.active {
    background: radial-gradient(circle, #ffe8bf, #ffb3a0);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 214, 170, 1);
    border-color: #ffffff;
}

/* Tooltip Labels - Fixed Positioning */
.nav-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 40px; /* Increased distance from the dot to avoid clutter */
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffe0cf;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dot:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

/* Mobile Adjustments for Navigation */
@media (max-width: 520px) {
    .nav-dots {
        right: 10px; /* Closer to edge on small screens */
        padding: 10px 6px;
        gap: 12px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .nav-dot::after {
        display: none; /* Hide text tooltips on mobile to prevent overlapping card */
    }
}

    /* Floating Back to Top button */
    .back-to-top {
      position: fixed;
      right: 16px;
      bottom: calc(16px + env(safe-area-inset-bottom));
      z-index: 999;
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 210, 170, 0.85);
      background: rgba(20, 0, 2, 0.9);
      color: #ffd7aa;
      font-size: 0.8rem;
      cursor: pointer;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .back-to-top.hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
    }

    @media (max-height: 700px) {
  section.full-page {
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

    @media (max-width: 480px) {
      main {
        padding: 0 8px 52px;
      }
      .card {
        max-width: 360px;
        border-radius: 26px;
      }
      .names {
        font-size: 1.7rem;
      }
      .event-title {
        font-size: 1.35rem;
      }
      .btn {
        width: 100%;
        justify-content: center;
      }
      .nav-dots {
        right: 8px;
      }
      .nav-dot::after {
        display: none;
      }
      .back-to-top {
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        font-size: 0.78rem;
        padding: 8px 12px;
      }
    }

    /* ===== PAGE 2 – Canva Style Couple Split ===== */

.couple-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

/* Watermark image */
.couple-split::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("b13e1005-27fa-4f5b-8904-bd267322fb1f.png")
    center / 85% no-repeat; */
  opacity: 0.08;
  filter: blur(1px);
  pointer-events: none;
}

/* Canva-style layered card */
.couple-card {
  position: relative;
  padding: 16px 14px;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 235, 220, 0.18),
      rgba(255, 200, 170, 0.08)
    );
  border: 1px solid rgba(255, 220, 190, 0.6);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 18px rgba(255, 200, 160, 0.6),
    0 18px 40px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

/* soft layered edge */
.couple-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(255, 210, 170, 0.45),
    transparent 60%
  );
  opacity: 0.5;
  pointer-events: none;
}

/* Animations */
.bride-card {
  animation: slideInLeft 1s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.groom-card {
  animation: slideInRight 1s cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: 0.25s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.couple-name {
  font-family: "Lucida Handwriting", cursive;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: #fffefb;
  text-align: center;
  margin-bottom: 6px;
}

.couple-role {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: pink;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 520px) {
  .couple-split {
    grid-template-columns: 1fr;
  }

  .groom-card {
    animation-delay: 0.15s;
  }
}

.calendar-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffd1c4, #fff2d9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 200, 170, 0.6);
}

.cal-month {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: #9a3f2d; /* dark rose */
}

.cal-day {
  font-size: 1.1rem;
  line-height: 1;
  color: #6b2a1f; /* deeper contrast */
}

@font-face {
    font-family: 'Best Signature Font';
    font-style: normal;
    font-weight: 400;
    src: local('Best Signature Font'), url('../woff/Best\ Signature\ Font\ -\ Reguler.woff') format('woff');
}

/* Signature Glow & Bounce Animation */
.signature-glow {
  display: inline-block; /* Required for transform animations to work */
  animation: 
    whiteGlow 3s ease-in-out infinite alternate, 
    softBounce 4s ease-in-out infinite;
  text-shadow: 0 0 5px #fff; /* Initial state */
}

/* White glowing effect */
@keyframes whiteGlow {
  0% {
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.8),
      0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 1),
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 35px rgba(255, 255, 255, 0.6);
  }
}

/* Elegant vertical bounce */
@keyframes softBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px); /* Moves up 8 pixels */
  }
}

button,
a,
.nav-dot {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
