/* ========================================
   HHM Hero Section Styles
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image/video */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
/*    background: linear-gradient(
        180deg,
        rgba(247, 247, 250, 0.5) 0%,
        rgba(247, 247, 250, 0.75) 50%,
        rgba(247, 247, 250, 0.98) 100%
    );*/
    z-index: 1;
}

/* Default gradient bg when no image */
.hero__gradient-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(223, 162, 91, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(203, 90, 105, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(145, 90, 139, 0.08) 0%, transparent 60%),
        var(--gradient-dark);
    z-index: 0;
    background: url(https://mysamay-production-public.s3.ap-south-1.amazonaws.com/events/64b1b570-36f4-4897-a5df-1e85382eaeec.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Particle canvas */
.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Content */
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl);
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(223, 162, 91, 0.1);
    border: 1px solid rgba(223, 162, 91, 0.3);
    border-radius: var(--radius-full);
    color: var(--theme-pink);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xl);
}

.hero__title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--white-70);
    font-weight: var(--weight-regular);
    margin-bottom: var(--space-sm);
}

.hero__tagline {
    font-size: var(--text-md);
    color: var(--white-50);
    margin-bottom: var(--space-2xl);
}

.hero__countdown {
    margin-bottom: var(--space-2xl);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA with pulse */
.hero__cta {
    position: relative;
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-md);
    margin-top:16rem
}

.hero__cta::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    background: var(--theme-pink);
    opacity: 0;
    z-index: -1;
    animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white-30);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--white-30), transparent);
}

/* Carousel dots */
.hero__carousel-dots {
    position: absolute;
    bottom: calc(var(--space-2xl) + 60px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: var(--space-xs);
}

.hero__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--white-30);
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), width var(--transition-base);
}

.hero__carousel-dot--active {
    background: var(--theme-pink);
    width: 24px;
}
