/* ---------- Hero wrapper ---------- */
    :root {
      --primary: #D97A00;
      --accent: #7A1F25;
      --gold1: #F2D38B;
      --gold2: #F6D1D1;
      --bg-dark: rgba(0, 0, 0, 0.36);
    }

    .wedding-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 1rem;
      color: #fff;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      /* border-radius: 14px; */
      /* subtle perspective for parallax */
      transform-style: preserve-3d;
    }

    .wedding-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), var(--bg-dark));
      pointer-events: none;
      mix-blend-mode: multiply;
      z-index: 2;
    }

    /* gold foil shimmer overlay (animated) */
    .gold-foil {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        radial-gradient(ellipse at 20% 10%, rgba(255, 238, 204, 0.06), transparent 12%),
        linear-gradient(90deg, rgba(217, 122, 0, 0.02), rgba(122, 31, 37, 0.01)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.00));
      mix-blend-mode: screen;
      opacity: 0.95;
      z-index: 4;
      animation: foilShift 8s linear infinite;
    }

    @keyframes foilShift {
      0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
      }

      50% {
        background-position: 30% 10%, 80% 0%, 50% 0%;
      }

      100% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
      }
    }

    .hero-inner {
      position: relative;
      z-index: 6;
      text-align: center;
      max-width: 980px;
      width: 100%;
      padding: 2rem;
      pointer-events: auto;
    }

    /* Names */
    .hero-names {
      font-family: 'Playfair Display', serif;
      font-size: clamp(46px, 9vw, 90px);
      color: #fff;
      line-height: 0.95;
      letter-spacing: .6px;
      margin: 0 0 .6rem;
      text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
      transform-origin: center;
      position: relative;
    }

    .hero-names .amp {
      font-family: 'Great Vibes', cursive;
      color: var(--gold1);
      font-size: clamp(36px, 8vw, 74px);
      margin: 0 .45rem;
      display: inline-block;
    }

    /* shimmering text highlight */
    .hero-names::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
      mix-blend-mode: overlay;
      opacity: 0;
      transform: translateX(-120%);
      transition: none;
      pointer-events: none;
      animation: nameShimmer 4.2s linear infinite;
    }

    @keyframes nameShimmer {
      0% {
        opacity: 0;
        transform: translateX(-120%);
      }

      50% {
        opacity: 1;
        transform: translateX(20%);
      }

      100% {
        opacity: 0;
        transform: translateX(120%);
      }
    }

    .hero-date {
      font-family: 'Playfair Display', serif;
      /* font-family: 'Inter', system-ui, sans-serif; */
      color: rgba(255, 255, 255, 0.94);
      font-size: clamp(18px, 2.8vw, 22px);
      margin-bottom: 1rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }

    .hero-datee {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Inter', sans-serif;
      color: rgba(255, 255, 255, 0.94);
      font-size: clamp(14px, 2.2vw, 18px);
      margin-bottom: 1rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }

    /* The “lollipop” pin */
    .loc-icon {
      flex-shrink: 0;
      animation: pulseGlow 2.4s ease-in-out infinite;
      filter: drop-shadow(0 0 6px rgba(242, 211, 139, 0.6));
    }

    /* Golden glow animation */
    @keyframes pulseGlow {

      0%,
      100% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(242, 211, 139, 0.4));
      }

      50% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 12px rgba(242, 211, 139, 0.8));
      }
    }



    .hero-cta {
      margin-top: 1rem;
    }

    .btn-hero {
      background: linear-gradient(90deg, var(--primary), #c0276b);
      border: none;
      color: #fff;
      padding: .7rem 1.2rem;
      border-radius: 999px;
      box-shadow: 0 10px 28px rgba(210, 120, 12, 0.18);
      font-weight: 600;
      position: relative;
      overflow: visible;
    }

    /* CTA sparkle on hover */
    .btn-hero::before {
      content: '';
      position: absolute;
      inset: -6px -6px auto -6px;
      height: 6px;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.0));
      transform: translateY(8px);
      opacity: 0;
      transition: transform .35s cubic-bezier(.2, .9, .2, 1), opacity .35s;
      border-radius: 999px;
    }

    .btn-hero:hover::before {
      transform: translateY(0);
      opacity: 1;
    }

    /* Garland (top decorative svg) */
    .garland {
      position: absolute;
      top: -6px;
      left: 0;
      right: 0;
      height: 160px;
      pointer-events: none;
      z-index: 6;
      opacity: 0.98;
    }

    /* Hanging lamps / lights */
    .string-lights {
      position: absolute;
      top: 18px;
      left: 0;
      right: 0;
      height: 120px;
      z-index: 6;
      pointer-events: none;
    }

    .light {
      transform-origin: center;
      animation: twinkle 2.8s infinite ease-in-out;
      opacity: .95;
    }

    .light:nth-child(2) {
      animation-delay: .3s
    }

    .light:nth-child(3) {
      animation-delay: .55s
    }

    @keyframes twinkle {
      0% {
        transform: scale(1);
        opacity: .75
      }

      50% {
        transform: scale(1.12);
        opacity: 1
      }

      100% {
        transform: scale(1);
        opacity: .75
      }
    }

    /* floating bokeh dots */
    .bokeh {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(8px);
      opacity: .08;
      z-index: 3;
    }

    /* petals */
    .petal {
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #fff, #FFDAB0);
      opacity: .22;
      transform: translateY(0) rotate(0);
      animation: petalFall linear infinite;
      will-change: transform, opacity;
    }

    @keyframes petalFall {
      0% {
        transform: translateY(-6vh) rotate(0deg);
        opacity: .2;
      }

      50% {
        opacity: .9;
      }

      100% {
        transform: translateY(26vh) rotate(180deg);
        opacity: 0;
      }
    }

    /* decorative corner frames */
    .corner-deco {
      position: absolute;
      z-index: 6;
      width: 84px;
      height: 84px;
      opacity: .86;
    }

    .corner-deco.tl {
      left: 12px;
      top: 12px;
      transform: rotate(-6deg);
    }

    .corner-deco.br {
      right: 12px;
      bottom: 12px;
      transform: rotate(8deg);
    }

    /* Ring sparkle animation */
    .ring-img {
      display: inline-block;
      width: 150px;
      height: auto;
      filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
      transform-origin: center;
      animation: ringFloat 4.6s ease-in-out infinite;
    }

    @keyframes ringFloat {
      0% {
        transform: translateY(0) rotate(-0.6deg);
        filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
      }

      50% {
        transform: translateY(-6px) rotate(0.8deg);
        filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.38));
      }

      100% {
        transform: translateY(0) rotate(-0.6deg);
        filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
      }
    }

    /* tiny sparkle overlay for ring */
    .ring-sparkle {
      position: absolute;
      width: 8px;
      height: 8px;
      background: radial-gradient(circle at 30% 30%, #fff, var(--gold1));
      border-radius: 50%;
      box-shadow: 0 0 10px var(--gold1), 0 0 20px rgba(242, 211, 139, 0.65);
      transform: translate(-40px, -50px) scale(0.6);
      opacity: 0;
      pointer-events: none;
      animation: sparklePuff 2.2s ease-in-out infinite;
    }

    @keyframes sparklePuff {
      0% {
        opacity: 0;
        transform: translate(-40px, -50px) scale(0.2)
      }

      20% {
        opacity: 1;
        transform: translate(-36px, -56px) scale(1.05)
      }

      80% {
        opacity: 0.6;
        transform: translate(-46px, -46px) scale(0.8)
      }

      100% {
        opacity: 0;
        transform: translate(-40px, -50px) scale(0.2)
      }
    }

    /* Confetti canvas */
    #confetti-canvas {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
    }

    /* golden micro-sparkles floating across hero */
    .micro-sparkle {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #fff, var(--gold1));
      box-shadow: 0 0 8px var(--gold1);
      pointer-events: none;
      opacity: 0;
      transform: translateY(-20px) scale(0.6);
      animation: microRise 3.6s linear infinite;
    }

    @keyframes microRise {
      0% {
        opacity: 0;
        transform: translateY(0) scale(0.6);
      }

      10% {
        opacity: 0.9;
      }

      80% {
        opacity: 0.6;
        transform: translateY(-48px) scale(1.1);
      }

      100% {
        opacity: 0;
        transform: translateY(-92px) scale(1.2);
      }
    }

    /* accessibility: reduce motion */
    @media (prefers-reduced-motion: reduce) {

      .gold-foil,
      .ring-img,
      .petal,
      .micro-sparkle,
      .hero-names::after,
      .garland,
      .string-lights {
        animation: none !important;
        transition: none !important;
      }

      #confetti-canvas {
        display: none;
      }
    }

    /* responsive throttles */
    @media (max-width:576px) {
      .garland {
        height: 110px;
        top: -22px;
      }

      .string-lights {
        top: 8px
      }

      .corner-deco {
        display: none
      }

      .hero-inner {
        padding: 1rem;
      }

      .ring-img {
        width: 110px;
      }
    }



    /* Fonts (if not already loaded) */
    /* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Great+Vibes&family=Inter:wght@300;400;600&display=swap'); */

    :root {
      --bgA: #CD2C58;
      --bgB: #30010d;
      --accent: #fff;
      --goldA: #F2D38B;
      --goldB: #D4AF37;
      --rose: #F6D1D1;
      --glass: rgba(255, 255, 255, 0.65);
      --soft-shadow: 0 8px 30px rgba(16, 18, 20, 0.06);
    }

    .animate-section {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-out;
    }

    /* Animated state when in viewport */
    .animate-section.visible {
      opacity: 1;
      transform: translateY(0);
    }


    /* SECTION BASE */
    .welcome-section-adv {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--bgA), var(--bgB));
      /* border-radius: 14px; */
      padding: 64px 0;
      /* margin: 1.6rem 0; */
      isolation: isolate;
      box-shadow: var(--soft-shadow);
    }

    /* moving gradient base */
    .bg-gradient-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(600px 240px at 10% 20%, rgba(242, 211, 139, 0.06), transparent 12%),
        radial-gradient(520px 200px at 90% 80%, rgba(196, 165, 74, 0.05), transparent 12%),
        linear-gradient(120deg, rgba(255, 248, 230, 0.3), rgba(255, 246, 238, 0.1));
      mix-blend-mode: overlay;
      filter: blur(4px);
      transform-origin: center;
      animation: gradientMove 20s infinite linear;
    }

    @keyframes gradientMove {
      0% {
        transform: translate3d(0, 0, 0) scale(1)
      }

      50% {
        transform: translate3d(6%, -3%, 0) scale(1.02)
      }

      100% {
        transform: translate3d(0, 0, 0) scale(1)
      }
    }

    /* large drifting floral svg */
    .floral-svg {
      position: absolute;
      left: -4%;
      right: -4%;
      top: -16px;
      height: 160px;
      z-index: 1;
      opacity: 0.6;
      pointer-events: none;
      transform-origin: center;
      animation: floralDrift 26s ease-in-out infinite;
    }

    @keyframes floralDrift {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-12px)
      }

      100% {
        transform: translateY(0)
      }
    }

    /* small moving blobs to add depth */
    .blob-layer {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }

    .blob-layer::before,
    .blob-layer::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.12;
      mix-blend-mode: screen;
    }

    .blob-layer::before {
      width: 42vmax;
      height: 42vmax;
      left: -8%;
      top: 4%;
      background: radial-gradient(circle at 30% 30%, rgba(242, 211, 139, 0.18), transparent 30%);
      animation: blobA 18s linear infinite;
    }

    .blob-layer::after {
      width: 30vmax;
      height: 30vmax;
      right: -8%;
      bottom: -6%;
      background: radial-gradient(circle at 30% 30%, rgba(246, 209, 209, 0.12), transparent 34%);
      animation: blobB 22s linear infinite;
    }

    @keyframes blobA {
      0% {
        transform: translate(0, 0)
      }

      50% {
        transform: translate(-6%, 6%)
      }

      100% {
        transform: translate(0, 0)
      }
    }

    @keyframes blobB {
      0% {
        transform: translate(0, 0)
      }

      50% {
        transform: translate(6%, -6%)
      }

      100% {
        transform: translate(0, 0)
      }
    }

    /* particle tiny sparkles (JS will add many) */
    .particle-wrap {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    /* petals container */
    .petal-wrap {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    /* CONTENT */
    .welcome-content {
      position: relative;
      z-index: 4;
      max-width: 960px;
      margin: 0 auto;
      padding: 0 18px;
      text-align: center;
    }

    .line {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--accent);
      font-weight: 400;
      font-size: clamp(15px, 1vw, 20px);
      margin: .4rem 0;
      opacity: 0;
      transform: translateY(16px);
      animation: lineIn .8s cubic-bezier(.2, .9, .2, 1) forwards;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }

    .line:nth-of-type(1) {
      animation-delay: .18s;
    }

    .line:nth-of-type(2) {
      animation-delay: .45s;
    }

    .line:nth-of-type(4) {
      animation-delay: 1.05s;
    }

    .line:nth-of-type(5) {
      animation-delay: 1.32s;
    }

    /* HEADLINE with animated gradient + stroke/glow */
    .headline {
      position: relative;
      margin: .8rem 0 0.6rem;
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4.8vw, 56px);
      line-height: 1.02;
      letter-spacing: .2px;
      text-transform: none;
      pointer-events: auto;
      padding: 16px;
    }

    /* fill (animated gradient) */
    .headline-fill {
      /* display:block; */
      background: linear-gradient(90deg, var(--goldA), var(--goldB) 55%, #fff6d9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% 100%;
      animation: headlineGradient 6s linear infinite;
      filter: drop-shadow(0 8px 22px rgba(212, 175, 55, 0.14));
    }

    /* stroke layer for soft outline */
    .headline-stroke {
      position: absolute;
      inset: 0;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      -webkit-text-stroke: 1px rgba(0, 0, 0, 0.06);
      color: transparent;
      filter: blur(.8px);
      opacity: .95;
      pointer-events: none;
    }

    /* CTA */
    .cta-row {
      margin-top: 16px;
      opacity: 0;
      transform: translateY(8px);
      animation: ctaIn .8s 1.2s forwards;
    }

    .cta-btn {
      background: linear-gradient(90deg, var(--goldA), var(--goldB));
      border: none;
      color: #3a2b1a;
      padding: .65rem 1.15rem;
      border-radius: 999px;
      font-weight: 600;
      box-shadow: 0 10px 28px rgba(212, 175, 55, 0.12);
    }

    .map-wrapper {
      position: relative;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 400px;
      border: 0;
      border-radius: 10px;
    }

    /* Big Icon */
    .map-pin {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -100%);
      font-size: 60px;
      /* Change size here */
      color: #ff0000;
      /* Pin color */
      pointer-events: none;
      /* So map still scrolls */
    }


    .modal-gif-bg {

      background: url('../images/modalbg1.gif') center center / cover no-repeat;
      position: relative;
      color: #fff;
    }

    /* small entrance animations */
    @keyframes lineIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes ctaIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes headlineGradient {
      0% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }

      100% {
        background-position: 0% 50%
      }
    }

    /* sparkle elements */
    .spark {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #fff, var(--goldA));
      box-shadow: 0 0 8px var(--goldA);
      opacity: 0;
      transform: translateY(0) scale(.6);
      animation: sparkFloat 2.6s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes sparkFloat {
      0% {
        opacity: 0;
        transform: translateY(8px) scale(.6);
      }

      20% {
        opacity: 1;
        transform: translateY(-8px) scale(1.05);
      }

      60% {
        opacity: .6;
        transform: translateY(-20px) scale(.9);
      }

      100% {
        opacity: 0;
        transform: translateY(-36px) scale(.6);
      }
    }

    /* petal style */
    .petal {
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #fff, #FFD6B2);
      opacity: .9;
      transform-origin: center;
      pointer-events: none;
      animation: petalFall 6s linear infinite;
    }

    @keyframes petalFall {
      0% {
        transform: translateY(-10vh) rotate(0)
      }

      100% {
        transform: translateY(28vh) rotate(240deg);
      }
    }

    /* accessibility */
    @media (prefers-reduced-motion: reduce) {

      .bg-gradient-layer,
      .blob-layer,
      .floral-svg,
      .particle-wrap,
      .petal-wrap,
      .spark,
      .petal,
      .headline-fill {
        animation: none !important;
      }

      .line,
      .headline,
      .cta-row {
        opacity: 1;
        transform: none;
      }

      #welcomeSectionAdv {
        transition: none;
      }
    }

    /* responsive tweaks */
    @media (max-width:768px) {
      .welcome-section-adv {
        padding: 36px 0;
      }

      .headline {
        font-size: clamp(22px, 8vw, 34px);
      }
    }

    /* navbar sits over hero — light transparent look */
    #weddingNav {
      transition: background-color .32s ease, backdrop-filter .32s ease, box-shadow .32s ease, padding .28s;
      padding: 14px 0;
    }

    /* default when over hero: fully transparent with light link colors */
    #weddingNav .navbar-brand small {
      opacity: .95;
    }

    #weddingNav .nav-link {
      color: rgba(255, 255, 255, 0.92);
      margin-left: 6px;
      margin-right: 6px;
    }

    #weddingNav .nav-link.active {
      color: var(--gold1, #F2D38B);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 6px;
    }

    /* scrolled / sticky variant (glass background) */
    #weddingNav.scrolled {
      position: fixed;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
      backdrop-filter: blur(6px) saturate(1.05);
      box-shadow: 0 6px 20px rgba(10, 12, 14, 0.08);
      padding: 8px 0;
    }

    #weddingNav.scrolled .nav-link {
      color: rgba(255, 255, 255, 0.85);
    }

    #weddingNav.scrolled .navbar-brand span {
      color: var(--accent);
    }

    /* RSVP button style override */
    #navRsvpBtn {
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold1, #F2D38B), var(--goldB, #D4AF37));
      color: #3b2b18;
      border: 0;
      padding: .35rem .85rem;
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.12);
    }

    /* mobile collapse background for readability */
    .navbar-collapse {
      backdrop-filter: blur(4px);
    }

    .navbar-collapse .nav-link {
      padding: .45rem .75rem;
    }


    .gallery {
      --s: 350px;
      /* control the size */
      --g: 10px;
      /* control the gap */
      --f: 1.5;
      /* control the scale factor */

      display: grid;
      gap: var(--g);
      width: calc(3*var(--s) + 2*var(--g));
      aspect-ratio: 1;
      grid-template-columns: repeat(3, auto);
    }

    .gallery>img {
      width: 0;
      height: 0;
      min-height: 100%;
      min-width: 100%;
      object-fit: cover;
      cursor: pointer;
      /* filter: grayscale(100%); */
      transition: .35s linear;
    }

    .gallery img:hover {
      width: calc(var(--s)*var(--f));
      height: calc(var(--s)*var(--f));
    }


    .imageContainer {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 0;
      /* optional */

    }

    /* body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-content: center;
  background: #60c4ff;
} */


    .EventHeading img {
      width: 500px;
      max-width: 100%;
    }

    /* Large tablets */
    @media (max-width: 1200px) {
      .EventHeading img {
        width: 220px;
      }
    }

    /* Tablets */
    @media (max-width: 992px) {
      .EventHeading img {
        width: 200px;
      }
    }

    /* Small tablets & large phones */
    @media (max-width: 768px) {
      .EventHeading img {
        width: 170px;
      }

    }

    /* Phones */
    @media (max-width: 576px) {
      .EventHeading img {
        width: 250px;
      }
    }

    /* Extra small phones */
    @media (max-width: 400px) {
      .EventHeading img {
        width: 250px;
      }
    }

    @media (max-width: 768px) {
      .gallery img {
        width: 100% !important;
        height: 100% !important;
        filter: none !important;
        transform: none !important;
        cursor: default;
      }
    }

    .wishes img {
      width: 200px;
      max-width: 100%;
      text-align: center;
    }

    @media (max-width: 1200px) {
      .wishes img {
        width: 180px;
      }
    }

    @media (max-width: 992px) {
      .wishes img {
        width: 180px;
      }
    }

    @media (max-width: 768px) {
      .wishes img {
        width: 180px;
      }

    }

    @media (max-width: 576px) {
      .wishes img {
        width: 200px;
      }
    }


    @media (max-width: 400px) {
      .wishes img {
        width: 200px;
      }
    }



    /* wrapper */
    .mw-app-root {
      min-height: 100vh;
      padding: 0rem 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mw-container {
      max-width: 1200px;
      width: 100%;
    }

    /* cards + look */
    .mw-card {
      background: var(--mw-card-bg);
      border: 1px solid var(--mw-card-border);
      border-radius: 12px;
      padding: 1.25rem;
      transition: transform .18s ease, box-shadow .18s ease;
      box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);

    }

    .mw-card:hover {
      transform: translateY(-6px);
    }

    .mw-card .mw-meta {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: .5rem;
    }

    .mw-card .mw-meta .mw-icons {
      font-size: 1.35rem;
    }

    /* scrolling columns (namespaced animation) */
    @keyframes mw-scroll-t2b {
      0% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(-50%);
      }
    }

    @keyframes mw-scroll-b2t {
      0% {
        transform: translateY(-50%);
      }

      100% {
        transform: translateY(0);
      }
    }

    .mw-scroll-area {
      height: 40rem;
      overflow: hidden;
      border-radius: 18px;
      mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
      padding: 1rem;
    }

    .mw-scroll-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      /* will contain two identical blocks for continuous scroll */
    }

    .mw-animate-t2b {
      animation: mw-scroll-t2b 60s linear infinite;
    }

    .mw-animate-b2t {
      animation: mw-scroll-b2t 60s linear infinite;
    }

    .mw-pair {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    /* modal dialog override */
    .mw-modal .modal-content {
      border-radius: 12px;
      padding: 0;
      overflow: hidden;
    }

    .mw-modal .modal-header {
      border-bottom: 1px solid var(--mw-card-border);
      background: #fff;
    }

    .mw-modal .modal-footer {
      border-top: 1px solid var(--mw-card-border);
      background: #fff;
    }

    /* small helpers */
    .mw-heading-gradient {
      background: linear-gradient(90deg, #ff6fa3, #6f42c1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }

    /* make sure namespaced classes don't conflict with site */
    .mw-open-btn {
      border-radius: 999px;
    }

    /* Responsive tweak */
    @media (max-width: 991.98px) {
      .mw-scroll-area {
        height: 36rem;
      }
    }

    @media (max-width: 767.98px) {
      .mw-scroll-area {
        height: 30rem;
      }
    }

    .wishbtn {
      background: linear-gradient(135deg, var(--bgA), var(--bgB));
      color: #fff;
      padding: 20px 40px;
    }

    .wishbtn:hover {
      background: linear-gradient(135deg, var(--bgB), var(--bgB));
      color: #fff;
      padding: 20px 40px;
    }


  .wedding-footer {
  width: 100%;
  display: block;
  /* padding: 0 !important;
  margin: 0 !important; */
  color: #fff;
       background: linear-gradient(135deg, var(--bgA), var(--bgB));

  
}

.wedding-footer .container-fluid {
  /* padding-left: 0 !important;
  padding-right: 0 !important; */
}

    .wf-couple {
      font-family: "Great Vibes", cursive;
      font-size: 2rem;
      color: #ffffff;
    }

    .wf-tagline {
      font-size: 0.95rem;
      margin-top: 5px;
      color: #ffffff;
    }

    .wf-title {
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .wf-links li {
      margin-bottom: 6px;
    }

    .wf-links li a {
      color: #c5c5c5;
      text-decoration: none;  
      text-align: start; 
    }

    .wf-links li a:hover {
      text-decoration: underline;
      color: #b45363;
    }

    .wf-social {
      width: 40px;
      height: 40px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
      font-size: 1.1rem;
      color: #5a4945;
    }

    .wf-social:hover {
      color: #b45363;
      transform: translateY(-3px);
      transition: 0.2s ease-in-out;
    }

    .wf-line {
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      margin-top: 10px;
    }

    .wf-bottom-text {
      color: #ffffff;
    }

    /* Responsive */
    @media (max-width: 575px) {
      .wf-couple {
        font-size: 1.7rem;
      }
    }
