/* ==========================================================================
   hero.css — Centered overlay style, radial gradient, centered content
   ========================================================================== */

.rz-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    overflow: hidden;
}

.rz-hero--small {
    min-height: 40vh;
}

.rz-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rz-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rz-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(10,11,14,0.75) 0%, rgba(10,11,14,0.92) 70%);
}

.rz-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: var(--s-48) var(--s-16);
}

.rz-hero__eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-accent-hover);
    margin-bottom: var(--s-16);
}

.rz-hero__title {
    font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: var(--s-16);
}

.rz-hero__desc {
    font-size: 1.0625rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: var(--s-24);
}

.rz-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-16);
    justify-content: center;
}

.rz-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-12);
    justify-content: center;
    margin-top: var(--s-32);
}

/* Hero buttons — don't override non-btn links */
.rz-hero a:not(.rz-btn) {
    color: var(--c-accent-hover);
}
