:root {
    --plum: #2d0a3e;
    --plumdark: #1a0828;
    --plumdeep: #0d0118;
    --plummid: #3d1252;
    --gold: #ff7a02;
    --goldtext: #d4a017;
    --cream: #f8f5f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
     font-family: 'Cormorant Garamond', system-ui, sans-serif;
}
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a0828;
    overflow-x: hidden;
}

body,
.reg-input {
    font-family: 'Inter', Arial, sans-serif;
}

/* Marquee */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Fade in on scroll */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.floating-pearl {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #ffffff, #f3dcc0 58%, #b98755);
    opacity: 0.9;
    animation: pearlFloat 9s ease-in-out infinite;
  }

  .floating-pearl:nth-child(1) { left: 9%; top: 26%; animation-delay: -1s; }
  .floating-pearl:nth-child(2) {left: 17%;top: 72%;width: 22px;height: 22px;animation-delay: -4s;}
  .floating-pearl:nth-child(3) {left: 38%;top: 24%;width: 16px;height: 16px;animation-delay: -2s;}
  .floating-pearl:nth-child(4) {left: 18%;top: 47%;animation-delay: -6s;}
  .floating-pearl:nth-child(5) {left: 44%;top: 15%;width: 25px;height: 25px;animation-delay: -3s;}

  @keyframes pearlFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(18px, -28px, 0); }
  }
/* Video card hover */
.video-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(201, 150, 42, 0.25);
}
.hero-swiper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
  }
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
/* Play pulse */
@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.play-btn {
    animation: pulse 2s ease-in-out infinite;
}

/* Carousel */
.carousel-container {
    scroll-behavior: smooth;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

/* Dots */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s;
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
}

/* Progress bar */
.progress-fill {
    background: linear-gradient(90deg, var(--gold), #e8613a);
    transition: width 1.5s ease;
    border-radius: 999px;
}

/* Pearl shimmer */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.pearl-shimmer {
    background-image: linear-gradient(90deg, transparent 0%, rgba(201, 150, 42, 0.03) 25%, rgba(201, 150, 42, 0.06) 50%, rgba(201, 150, 42, 0.03) 75%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 6s linear infinite;
}

/* Gold underline */
.gold-underline {
    display: inline-block;
    position: relative;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* Feature card hover */
.feature-card {
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.feature-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Gallery card hover */
.gallery-card {
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
}

/* FAQ accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s ease;
}

.faq-content.open {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-chevron {
    transition: transform 0.3s ease;
}

.faq-chevron.open {
    transform: rotate(180deg);
}

/* Seal badge */
.seal-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--plum);
    border: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

/* Diamond divider */
.diamond-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    max-width: 260px;
}

.diamond-divider .line {
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.diamond-divider .diamond {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Nav link hover */
.nav-link-a {
    position: relative;
    color: var(--dark) !important;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-link-a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link-a:hover::after {
    width: 100%;
}

/* Countdown pill */
.countdown-pill {
    color: var(--gold);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
  

/* Register form inputs */
.reg-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.reg-input:focus {
    border-color: var(--gold);
}

.reg-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.reg-input {
    appearance: none;
    cursor: pointer;
}

/* Gold glow for donate */
.gold-glow {
    box-shadow: 0 0 25px rgba(201, 150, 42, 0.3), 0 0 50px rgba(201, 150, 42, 0.1);
    border: 2px solid var(--gold);
}

@media (max-width: 767px) {
    .diamond-divider{max-width: 100%;}
    .seal-badge {
        width: 60px;
        height: 60px;
    }

    .seal-badge .seal-year {
        font-size: 0.9rem !important;
    }

    .seal-badge .seal-label {
        font-size: 0.22rem !important;
    }
}

.ks-bg-infobg {
    background-color: #111;
}

.ks-bg-cream {
    background-color: var(--cream);
}

.ks-bg-gold {
    background-color: var(--gold);
}

.ks-bg-gold-soft {
    background-color: rgba(201, 150, 42, 0.1);
}

.ks-bg-gold-strong {
    background-color: rgba(201, 150, 42, 0.9);
}

.ks-bg-plum {
    background-color: var(--plum);
}

.ks-bg-plum-soft {
    background-color: rgba(45, 10, 62, 0.1);
}

.ks-bg-plum-strong {
    background-color: rgba(45, 10, 62, 0.8);
}

.ks-bg-plumdark {
    background-color: var(--plumdark);
}

.ks-bg-white-soft {
    background-color: rgba(255, 255, 255, 0.05);
}

.ks-bg-black-strong {
    background-color: rgba(0, 0, 0, 0.7);
}

.ks-text-gold {
    color: var(--goldtext);
}

.ks-text-plum {
    color: var(--plum);
    border:0 ;
}

.ks-text-plumdark {
    color: var(--plumdark);
}

.ks-text-plum-50 {
    color: rgba(26, 8, 40, 0.5);
}

.ks-text-plum-60 {
    color: rgba(26, 8, 40, 0.6);
}

.ks-text-plum-70 {
    color: rgba(26, 8, 40, 0.7);
}

.ks-text-white-30 {
    color: rgba(255, 255, 255, 0.3);
}

.ks-text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.ks-text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.ks-border-gold {
    border-color: var(--gold) !important;
}

.ks-border-gold-30 {
    border-color: rgba(201, 150, 42, 0.3) !important;
}

.ks-border-plum-5 {
    border-color: rgba(45, 10, 62, 0.05) !important;
}

.ks-border-plum-10 {
    border-color: rgba(45, 10, 62, 0.1) !important;
}

.ks-border-transparent {
    border-color: transparent !important;
}

.ks-border-white-5 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.ks-border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.ks-border-white-50 {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.ks-border-top-4 {
    border-top-width: 4px !important;
}

.ks-hover-bg-gold:hover {
    background-color: var(--gold);
}

.ks-hover-bg-golddark:hover {
    background-color: #a87a1e;
}

.ks-hover-bg-gold-soft:hover {
    background-color: rgba(201, 150, 42, 0.2);
}

.ks-hover-bg-white:hover {
    background-color: #fff;
}

.ks-hover-text-gold:hover {
    color: var(--gold);
}

.ks-hover-text-goldtext:hover {
    color: var(--goldtext);
}

.ks-hover-text-plumdark:hover {
    color: var(--plumdark) !important;
}

.ks-hover-text-white:hover {
    color: #fff !important;
}

.ks-hover-border-gold:hover {
    border-color: var(--gold) !important;
}

.ks-tracking-wide {
    letter-spacing: .025em;
}

.ks-tracking-wider {
    letter-spacing: .05em;
}

.ks-tracking-widest {
    letter-spacing: .1em;
}

.ks-tracking-eyebrow {
    letter-spacing: .2em;
}

.ks-text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.ks-text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.ks-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.ks-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.ks-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.ks-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.ks-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.ks-text-nav {
    font-size: .75rem;
}

.ks-text-info {
    font-size: .75rem;
}

.ks-leading-tight {
    line-height: 1.25;
}

.ks-leading-relaxed {
    line-height: 1.625;
}

.ks-leading-hero {
    line-height: 0.8;
    margin: 20px 0 10px 0;
}

.ks-max-2xl {
    max-width: 42rem;
}

.ks-max-3xl {
    max-width: 48rem;
}

.ks-max-5xl {
    max-width: 64rem;
}

.ks-max-6xl {
    max-width: 72rem;
}

.ks-max-7xl {
    max-width: 80rem;
}

.ks-max-md {
    max-width: 28rem;
}

.ks-max-hero-copy {
    max-width: 480px;
}

.ks-max-svg {
    max-width: 360px;
}

.ks-grid-1 {
    grid-template-columns: 1fr;
}

.ks-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ks-hero-grid {
    grid-template-columns: 1fr;
}

.ks-icon-4 {
    width: 1rem;
    height: 1rem;
}

.ks-icon-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.ks-icon-6 {
    width: 1.5rem;
    height: 1.5rem;
}

.ks-icon-7 {
    width: 1.75rem;
    height: 1.75rem;
}

.ks-size-8 {
    width: 2rem;
}

.ks-size-9 {
    width: 2.25rem;
    height: 2.25rem;
}

.ks-size-14 {
    width: 3.5rem;
    height: 3.5rem;
}

.ks-video-card-width {
    width: 280px;
}

.ks-video-thumb {
    height: 180px;
}

.ks-aspect-gallery {
    aspect-ratio: 4 / 3;
}

.ks-cursor-pointer {
    cursor: pointer;
}

.ks-z-10 {
    z-index: 10;
}

.ks-z-50 {
    z-index: 50;
}

.ks-z-60 {
    z-index: 60;
}

.ks-top-4 {
    top: 1rem;
}

.ks-end-4 {
    right: 1rem;
}

.ks-bottom-2 {
    bottom: .5rem;
}

.ks-end-2 {
    right: .5rem;
}

.ks-top-neg-3 {
    top: -.75rem;
}

.ks-blur-sm {
    backdrop-filter: blur(4px);
}

.ks-transition {
    transition: all .15s ease;
}

.ks-p-2-5 {
    padding: .625rem;
}

.ks-py-0-5 {
    padding-top: .125rem;
    padding-bottom: .125rem;
}

.ks-py-3-5 {
    padding-top: .875rem;
    padding-bottom: .875rem;
}

.ks-donor-mask-left {
    inset: 0 auto 0 0;
    width: 2rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent);
}

.ks-donor-mask-right {
    inset: 0 0 0 auto;
    width: 2rem;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.4), transparent);
}

.ks-gradient-video-1 {
    background: linear-gradient(to bottom right, rgba(147, 51, 234, .3), rgba(201, 150, 42, .1), var(--plumdark));
}

.ks-gradient-video-2 {
    background: linear-gradient(to bottom right, rgba(201, 150, 42, .2), var(--plumdark), rgba(107, 33, 168, .2));
}

.ks-gradient-video-3 {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, .3), var(--plumdark), rgba(201, 150, 42, .15));
}

.ks-gradient-video-4 {
    background: linear-gradient(to bottom right, rgba(79, 70, 229, .3), var(--plumdark), rgba(168, 85, 247, .15));
}

.ks-gradient-video-5 {
    background: linear-gradient(to bottom right, rgba(201, 150, 42, .25), rgba(126, 34, 206, .2), var(--plumdark));
}

.ks-social-link {
    color: rgba(255, 255, 255, .5);
}

.ks-social-link:hover {
    color: var(--goldtext);
    background-color: rgba(201, 150, 42, .2);
}

.ks-footer-link {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}

.ks-footer-link:hover {
    color: var(--goldtext);
}

.nav-link-a,
.mobile-nav-link,
footer a {
    text-decoration: none;
}
footer {
    background: #111;
    color: rgba(255, 255, 255, 0.65);
    padding: 70px 0 0;
}

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--gold);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(45, 10, 62, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
    color: #fff;
    background: var(--goldtext);
}

.scroll-top-btn:focus-visible {
    outline: 3px solid rgba(255, 122, 2, 0.35);
    outline-offset: 3px;
}

.footer-event-item .fi {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
#mobile-menu-btn-z5a6,
#mobile-menu-close-e0f1,
.faq-toggle {
    background: transparent;
    border: 0;
}

@media (min-width: 576px) {
    .ks-grid-sm-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .ks-grid-md-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ks-grid-md-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ks-grid-md-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ks-text-info {
        font-size: .8rem;
    }

    .ks-md-text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .ks-md-text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .ks-md-text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .ks-md-text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .ks-video-card-width {
        width: 320px;
    }
}

@media (min-width: 992px) {
    .ks-grid-lg-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ks-hero-grid {
        grid-template-columns: 55% 45%;
    }
}
