/* assets/css/hero.css */
.hero-bg {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: 70% center;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-family: 'Inter', sans-serif;
    border-radius: 24px;
    margin: 16px auto 16px auto;
    width: min(1200px, calc(100% - 40px));
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.18) 45%, rgba(15, 23, 42, 0.05) 100%);
}

.hero-bg.is-home {
    min-height: 380px;
    height: auto;
    padding: 40px 0 36px;
    align-items: flex-end;
    background-position: 68% 30%;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px 0;
    max-width: 640px;
}

.hero-kicker {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #fecaca;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-lead {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0 0 22px;
    color: #f8fafc;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 16px;
    align-items: center;
}

.hero-ctas a {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    line-height: 1.2;
}

.hero-ctas a.hero-cta-main {
    background-color: #C83739;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(200, 55, 57, 0.35);
}

.hero-ctas a.hero-cta-main:hover {
    background-color: #a62b2d;
}

.hero-ctas a.hero-cta-alt {
    background-color: #ffffff;
    color: #C83739 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.hero-ctas a.hero-cta-alt:hover {
    background-color: #f8fafc;
}

@media (max-width: 700px) {
    .hero-bg {
        margin: 14px auto 16px auto;
        width: min(1200px, calc(100% - 32px));
        border-radius: 18px;
    }
    .hero-bg.is-home {
        min-height: 320px;
        padding: 28px 0 24px;
        align-items: flex-end;
        background-position: 60% 25%;
    }
    .hero-content {
        padding: 0 20px;
    }
    .hero-ctas a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
