/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    margin-top: -140px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-text {
    flex: 0 0 42%;
    text-align: left;
}

.hero-title {
    font-size: 64px;
    margin: 0 0 25px 0;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 4px;
    color: #f47b20;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 38px;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-description {
    color: #ccc;
    font-size: 19px;
    line-height: 1.8;
    margin: 25px 0 40px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    min-width: 177.77vh;
    min-height: 56.25vw;
    pointer-events: none;
    filter: brightness(0.7) contrast(1.1) saturate(0.9);
}

.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(192, 126, 3, 0.45) 100%
    );
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 968px) {
    .hero-section {
        margin-top: -110px;
        padding: 100px 20px 80px 20px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0;
    }

    .hero-text {
        flex: 1;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 80px 16px 60px 16px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-image {
        max-width: 320px;
    }
}
