/* =====================================================
   HERO SECTIONS
   Hero banners, landing sections
===================================================== */

/* ===============================
   HERO SECTION
================================ */

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background:
        radial-gradient(circle at center, rgba(255,26,26,0.25), rgba(0,0,0,0.95) 70%),
        linear-gradient(180deg, rgba(255,68,0,0.08), transparent);
    text-align: center;
}

.hero-container {
    max-width: 1000px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255,26,26,0.5);
}

.hero p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 44px;
}

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

/* ===============================
   HERO – CONTENT (KLEIN)
================================ */

.hero--content {
    min-height: unset;
    height: auto;
    padding: 2.5rem 0 2rem;
    display: block;
}

.hero--content .hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero--content h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.hero--content p {
    margin: 0;
    opacity: 0.8;
}

.cms-page .hero {
    min-height: 0;
    height: auto;
    padding: 3rem 0 2rem;
    margin-bottom: 0;
    background-position: center top;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero.engels-bg {
        background-position: center 20%;
    }
}
