/* =========================================================
   STARTSEITE HERO
========================================================= */

.hero {
    min-height: 760px;
    background:
            linear-gradient(
                    rgba(18, 45, 28, 0.35),
                    rgba(18, 45, 28, 0.35)
            ),
            url("../img/hero/sommer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 90px;
}

.hero-content {
    max-width: 980px;
    text-align: center;
    color: #ffffff;
}

.hero-logo {
    display: block;
    max-width: 360px;
    width: 80%;
    height: auto;
    margin: 0 auto 28px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.hero-subtitle {
    display: inline-block;
    padding: 14px 30px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-text {
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 22px 34px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

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

.btn-main,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 30px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-main {
    background: var(--kgv-green);
    color: #ffffff;
}

.btn-main:hover {
    background: var(--kgv-green-dark, #245632);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.20);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================================
   Mobile: grauen Schleier entfernen
   Betrifft nur öffentliche Hero-/Startseitenbereiche
   ========================================================= */

@media (max-width: 1100px) {
    .hero-overlay,
    .page-hero-overlay,
    .intro-overlay,
    .section-overlay {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hero::before,
    .hero::after,
    .page-hero::before,
    .page-hero::after {
        background: transparent !important;
        opacity: 0 !important;
        display: none !important;
    }
}
