/* ==========================================================================
   Split Parallax Hero Section - SIMPLIFIED
   ========================================================================== */

.split-parallax-hero {
    min-height: 60vh;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: url(/wp-content/themes/bf2022/images/hero.png);
    background-blend-mode: color-burn;
    background-color: #ffffffba;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-container {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-content-side {
    text-align: center;
}

.hero-content-inner {
    max-width: 700px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: #1B1B1B;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-slogan {
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 700;
    color: #e0192e;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    color: #495057;
    margin: 0 0 30px 0;
}

.hero-description p {
    margin: 0 auto;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   Alpine Button System
   ========================================================================== */

.alpine-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: linear-gradient(135deg, #e0192e, #c01729);
    color: #fff;
    border-color: #e0192e;
}

.alpine-button:hover {
    background: linear-gradient(135deg, #ff1f3d, #d0162b);
    box-shadow: 0 8px 25px rgba(224, 25, 46, 0.4);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.alpine-button.button-secondary {
    background: #ffffff;
    color: #1B1B1B;
    border-color: #e0192e;
}

.alpine-button.button-secondary:hover {
    background: #e0192e;
    color: #fff;
    transform: translateY(-2px);
}

.alpine-button.button-outline {
    background: transparent;
    color: #e0192e;
    border-color: #e0192e;
}

.alpine-button.button-outline:hover {
    background: #e0192e;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .split-parallax-hero {
        min-height: 50vh;
        max-height: 600px;
    }

    .hero-split-container {
        padding: 30px 20px;
    }

    .alpine-button {
        padding: 10px 24px;
        font-size: 15px;
        min-width: 140px;
    }
}

@media (max-width: 767px) {
    .split-parallax-hero {
        min-height: 50vh;
        max-height: 500px;
    }

    .hero-split-container {
        padding: 25px 15px;
    }

    .hero-main-title {
        margin-bottom: 12px;
    }

    .hero-slogan {
        margin-bottom: 12px;
    }

    .hero-description {
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .alpine-button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 130px;
    }
}

@media (max-width: 575px) {
    .split-parallax-hero {
        min-height: 45vh;
    }

    .hero-split-container {
        padding: 20px 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

}

/* RTL Support */
[dir="rtl"] .split-parallax-hero {
    direction: rtl;
}

[dir="rtl"] .hero-content-side,
[dir="rtl"] .hero-content-inner {
    text-align: center;
}
