/* ============================================================
   Sectiunea HERO ("Bun venit în iStoma!").
   Design 1:1 din Figma (frame 8114:4719).
   ============================================================ */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 500px;
    padding: 60px 100px;
    border-radius: 16px;
    overflow: hidden;
}

/* Imaginea de fundal */
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

/* Overlay subtil peste imagine (5% alb in design) */
.hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    color: #fafafa;
}

.hero__eyebrow {
    font-size: 20px;
    font-weight: var(--font-weight-regular);
    color: #fafafa;
}

.hero__eyebrow strong {
    font-weight: var(--font-weight-semibold);
}

.hero__title {
    font-family: var(--font-family-heading);
    font-size: 42px;
    font-weight: var(--font-weight-medium);
    color: #fafafa;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero__title-accent {
    font-weight: var(--font-weight-semibold);
    color: var(--color-cta);
}

.hero__desc {
    font-size: 20px;
    color: #fafafa;
    line-height: 1.4;
}

.hero__brand {
    font-weight: var(--font-weight-semibold);
    color: var(--color-cta);
}

/* ─── Butoane ────────────────────────────────────────────────── */
.hero__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: var(--font-family-heading);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
}

.hero__btn--primary {
    min-width: 200px;
    background-color: var(--color-cta);
    color: #fff;
}

.hero__btn--primary:hover {
    background-color: var(--color-cta-hover);
    color: #fff;
}

.hero__btn--primary .material-symbols-rounded {
    font-size: 24px;
}

.hero__btn--outline {
    width: 190px;
    border: 1px solid #fff;
    color: #fff;
}

.hero__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero {
        padding: 50px 40px;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__eyebrow,
    .hero__desc {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 24px;
        min-height: 0;
    }

    .hero__content {
        gap: 32px;
    }

    .hero__text {
        gap: 20px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero__btn--primary,
    .hero__btn--outline {
        width: 100%;
        min-width: 0;
    }
}
