/* =================================
   MRC Home Hero Section
   Background: Dark (image overlay)
   ================================= */

.mrc-home-hero {
    background-image: url('/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 8rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}

/* Gradient overlay */
.mrc-home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 17, 23, 0.93) 0%,
        rgba(15, 17, 23, 0.78) 40%,
        rgba(15, 17, 23, 0.6) 100%
    );
    z-index: 1;
}

.mrc-home-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.mrc-home-hero-content {
    max-width: 720px;
}

/* Badge - yellow accent */
.mrc-home-hero-badge {
    display: inline-block;
    background-color: rgba(235, 186, 55, 0.12);
    color: var(--mrc-yellow, #EBBA37);
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 3px;
    border: 1px solid rgba(235, 186, 55, 0.25);
    margin-bottom: 1.5rem;
}

/* Title */
.mrc-home-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Red underline */
.mrc-home-hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--mrc-red, #d42b2e);
    margin-top: 1rem;
    border-radius: 2px;
}

.mrc-home-hero-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(240, 240, 240, 0.85);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

/* Button - red */
.mrc-home-hero-button {
    display: inline-block;
    background-color: var(--mrc-red, #d42b2e);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mrc-home-hero-button:hover {
    background-color: var(--mrc-red-hover, #b82426);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 43, 46, 0.35);
}

/* =================================
   Tablet
   ================================= */
@media (max-width: 992px) {
    .mrc-home-hero {
        min-height: 70vh;
        padding: 5rem 1.5rem 7rem;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    }

    .mrc-home-hero-title {
        font-size: 3.2rem;
    }
}

/* =================================
   Mobile
   ================================= */
@media (max-width: 768px) {
    .mrc-home-hero {
        min-height: 75vh;
        padding: 4rem 1rem 6rem;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
    }

    .mrc-home-hero-content {
        max-width: 100%;
    }

    .mrc-home-hero-title {
        font-size: 2.5rem;
    }

    .mrc-home-hero-text {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .mrc-home-hero-button {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .mrc-home-hero {
        min-height: 80vh;
        padding: 3rem 0.75rem 5rem;
    }

    .mrc-home-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .mrc-home-hero-title {
        font-size: 2rem;
    }

    .mrc-home-hero-text {
        font-size: 1rem;
    }
}
