.event2026-lp,
.event2026-lp * {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}


:root {
    --brand-primary: #2E9291;
    --brand-secondary: #195E77;
    --brand-dark: #0f3a4a;
}
/* Global font changed to Helvetica family */
#event-page {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif!important;
    scroll-behavior: smooth;
}

.event2026-lp h1,
.event2026-lp h2,
.event2026-lp h3,
.event2026-lp h4 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
}

/* Ensure sections stop correctly below the fixed header */
section {
    scroll-margin-top: 80px;
}
.hero-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
}
.bg-brand-gradient {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}
.text-brand-primary { color: var(--brand-primary); }
.bg-brand-primary { background-color: var(--brand-primary); }
.border-brand-primary { border-color: var(--brand-primary); }

.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Video Background styling */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}

/* Wave Divider Styling */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}
.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
@media (min-width: 768px) {
    .wave-divider svg {
        height: 100px;
    }
}

/* Circular Image Styling */
.circular-frame {
    border: 6px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Section Background Image Styling */
.section-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: filter, transform;
    transform: scale(1.15); 
}
.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 250, 251, 0.3); 
    z-index: 1;
}

/* Circular Content Box Styling */
.circle-box {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border: 1px solid rgba(46, 146, 145, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}
.circle-box:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px -15px rgba(46, 146, 145, 0.2);
    border-color: var(--brand-primary);
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16 / 10;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--brand-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    border: none;
}
.carousel-btn:hover {
    background: white;
    color: var(--brand-secondary);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: white;
    width: 20px;
    border-radius: 4px;
}

/* Support Section Specific */
.support-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    border-radius: 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem;
    color: white;
    transition: transform 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.support-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 58, 74, 0.1) 0%, rgba(15, 58, 74, 0.95) 90%);
    z-index: 1;
}
.support-card:hover {
    transform: translateY(-8px);
}
.support-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* Logo Styling in Card */
.card-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Partnership X Decoration */
.partnership-x {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    display: none;
}
@media (min-width: 768px) {
    .partnership-x { display: block; }
}
.partnership-x line {
    stroke: #2E9291;
    stroke-width: 3;
    opacity: 0.9;
}

/* Capsule Label Style */
.capsule-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.support-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* Vertical Parallax Background setup */
#supportBg, #powerBg {
    width: 100%;
    will-change: transform;
}


/* add */
.flex {
    flex-wrap: nowrap;
}


