/* ══════════════════════════════════════════════════
   Symposium Hero — Elementor Widget Styles
   ══════════════════════════════════════════════════ */

.symp-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* ── Image Wrapper ─────────────────────────────── */
.symp-hero__image-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.symp-hero__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(76, 175, 80, 0.08);
}

/* ── Overlay ───────────────────────────────────── */
.symp-hero__overlay {
    position: absolute;
    top: 40px;
    left: 24px;
    right: 24px;
    bottom: 40px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

/* ── Background glow ──────────────────────────── */
.symp-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(76, 175, 80, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: sympGlow 4s ease-in-out infinite alternate;
}

@keyframes sympGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ── CTA (overlaid on image) ──────────────────── */
.symp-hero__cta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: sympFadeUp 1s ease 0.4s both;
}

@keyframes sympFadeUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ── Register Button ──────────────────────────── */
.symp-hero__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 52px;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    background-size: 200% 200%;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    box-shadow:
        0 8px 32px rgba(46, 125, 50, 0.5),
        0 0 0 0 rgba(76, 175, 80, 0.4);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: sympShimmer 3s ease-in-out infinite, sympPulse 2s ease-in-out infinite;
    z-index: 1;
    overflow: hidden;
}

/* Shine sweep */
.symp-hero__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.symp-hero__btn:hover::before {
    left: 100%;
}

.symp-hero__btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 16px 48px rgba(46, 125, 50, 0.6),
        0 0 0 6px rgba(76, 175, 80, 0.25);
    background-position: right center;
    color: inherit;
}

.symp-hero__btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Arrow */
.symp-hero__arrow {
    display: inline-flex;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.symp-hero__btn:hover .symp-hero__arrow {
    transform: translateX(6px);
}

@keyframes sympShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes sympPulse {
    0% {
        box-shadow: 0 8px 32px rgba(46, 125, 50, 0.5), 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    50% {
        box-shadow: 0 8px 32px rgba(46, 125, 50, 0.5), 0 0 0 14px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 8px 32px rgba(46, 125, 50, 0.5), 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* ── Subtext ──────────────────────────────────── */
.symp-hero__subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .symp-hero__image-wrap {
        padding: 24px 16px;
    }

    .symp-hero__overlay {
        top: 24px;
        left: 16px;
        right: 16px;
        bottom: 24px;
    }

    .symp-hero__btn {
        padding: 16px 36px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .symp-hero__subtext {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .symp-hero__btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .symp-hero__arrow {
        width: 18px;
        height: 18px;
    }
}