body.page-1 .footer-section-content {
    display: none;
}

.elfatec-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #222;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #d9d9d9;
}

.elfatec-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/fileadmin/Media/Website/elfatec-startseite.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Heller Verlauf hinter dem Content */
.elfatec-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.18) 18%,
            rgba(255, 255, 255, 0.42) 36%,
            rgba(255, 255, 255, 0.62) 52%,
            rgba(255, 255, 255, 0.50) 68%,
            rgba(255, 255, 255, 0.18) 82%,
            rgba(255, 255, 255, 0.00) 100%
        );
}

/* optional: zusätzlicher weicher Spotlight-Effekt hinter Text */
.elfatec-hero__overlay::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: min(1100px, 92vw);
    height: min(650px, 70vh);
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.22) 45%,
        rgba(255, 255, 255, 0.00) 75%
    );
    pointer-events: none;
}

.elfatec-hero__content {
    position: relative;
    z-index: 3;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.elfatec-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e88ff;
}

.elfatec-hero__divider {
    width: min(100%, 820px);
    height: 2px;
    margin: 0 auto 1.75rem;
    background: rgba(0, 0, 0, 0.45);
}

.elfatec-hero__subtitle {
    margin: 0 auto 2rem;
    max-width: 1200px;
    font-size: clamp(1rem, 1.4vw, 1.7rem);
    line-height: 1.4;
    font-weight: 400;
    text-transform: uppercase;
    color: #333;
}

.elfatec-hero__text {
    max-width: 980px;
    margin: 0 auto;
    font-size: clamp(1.05rem, 1.35vw, 1.6rem);
    line-height: 1.65;
    color: #333;
}

.elfatec-hero__text p {
    margin-bottom: 1rem;
}

.elfatec-hero__text strong,
.elfatec-hero__highlight {
    font-weight: 700;
    color: #222;
}

.elfatec-hero__highlight {
    font-size: clamp(1.15rem, 1.5vw, 1.85rem);
    margin-top: 1.5rem;
}

.elfatec-hero__cta {
    margin-top: 2rem;
}

.elfatec-hero__button {
    display: inline-block;
    min-width: 280px;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #2f98ff 0%, #167dff 100%);
    border: 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

.elfatec-hero__button:hover,
.elfatec-hero__button:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.elfatec-hero__footer {
    position: relative;
    z-index: 3;
    background: rgba(24, 24, 24, 0.88);
    color: #fff;
    padding: 2rem 0;
}

.elfatec-hero__address {
    font-size: 1.15rem;
    line-height: 1.7;
}

.elfatec-hero__address a {
    color: #fff;
    text-decoration: none;
}

.elfatec-hero__address a:hover,
.elfatec-hero__meta-nav a:hover {
    text-decoration: underline;
}

.elfatec-hero__meta-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.elfatec-hero__meta-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
}

@media (max-width: 991.98px) {
    .elfatec-hero {
        min-height: auto;
    }

    .elfatec-hero__content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .elfatec-hero__meta-nav {
        align-items: flex-start;
        margin-top: 1rem;
    }

    .elfatec-hero__button {
        min-width: 240px;
    }
}

@media (max-width: 575.98px) {
    .elfatec-hero__content {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .elfatec-hero__subtitle {
        font-size: 0.95rem;
    }

    .elfatec-hero__text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .elfatec-hero__footer {
        padding: 1.5rem 0;
    }

    .elfatec-hero__address,
    .elfatec-hero__meta-nav a {
        font-size: 1rem;
    }
}