/* =================================================================
   VICIOUS FUN — HOMEPAGE HERO
   Dark, edgy hero section inspired by HextaUI Hero 1.
   Adapted for WordPress/Porto with no JS framework dependencies.
   ================================================================= */

.vf-hero {
    position: relative;
    min-height: 420px;
    background: #0c0414;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 30px;
}

/* Angled gradient light streaks — top right */
.vf-hero::before,
.vf-hero::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.vf-hero::before {
    top: -40rem;
    right: -30rem;
    width: 50rem;
    height: 50rem;
    background: linear-gradient(
        -20deg,
        rgba(161, 21, 21, 0.3) 0%,
        rgba(120, 15, 15, 0.15) 40%,
        transparent 70%
    );
    transform: rotate(-20deg) skewX(-40deg);
    filter: blur(60px);
}

.vf-hero::after {
    top: -50rem;
    right: -50rem;
    width: 60rem;
    height: 60rem;
    background: linear-gradient(
        -20deg,
        rgba(161, 21, 21, 0.18) 0%,
        rgba(100, 10, 10, 0.1) 40%,
        transparent 70%
    );
    transform: rotate(-20deg) skewX(-40deg);
    filter: blur(80px);
}

/* Content wrapper */
.vf-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge pill */
.vf-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.vf-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a11515;
    animation: vf-pulse 2s ease-in-out infinite;
}

@keyframes vf-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* Headline */
.vf-hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: none;
}

.vf-hero__title em {
    font-style: normal;
    color: #a11515;
}

/* Subtitle */
.vf-hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA button */
.vf-hero__cta {
    display: inline-block;
    background: #a11515;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    border-radius: 9999px;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vf-hero__cta:hover {
    background: #c41a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(161, 21, 21, 0.4);
    color: #fff !important;
}

/* -----------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------- */

@media screen and (max-width: 768px) {
    .vf-hero {
        min-height: 320px;
        padding: 40px 16px;
    }

    .vf-hero__title {
        font-size: 32px;
    }

    .vf-hero__subtitle {
        font-size: 16px;
    }
}

@media screen and (min-width: 1200px) {
    .vf-hero__title {
        font-size: 56px;
    }
}
