/* Mobile-first Layout */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Fade-In Effekt */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom-In Animation für Hero-Bild */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    0% {
        background-size: 110%;
    }
    100% {
        background-size: 100%;
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Glassmorphism Effekt */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Verstärkter Glassmorphism für Footer */
.glass-strong {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Content Sections */
section {
    padding: 2.5rem 1.5rem;
    max-width: 900px;
    margin: 2rem auto;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #222;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.cta {
    text-align: center;
    padding: 3rem 1.5rem;
}

.cta-button {
    background-color: #006b5c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: #00917c;
    transform: scale(1.06);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 18px rgba(0, 255, 200, 0.35);
}

.cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Domain footer */
.domains {
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.domains h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Neue horizontale Domainliste */
.domain-list {
    font-size: 1rem;
    line-height: 1.6;
    display: inline-block;
    opacity: 0.9;
}

.domain-list a {
    color: #222222;
    text-decoration: none;
    font-weight: 400;
}

.domain-list a:hover {
    text-decoration: underline;
}

≈/* Desktop Enhancements */
@media (min-width: 900px) {
    .hero {
        padding: 10rem 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.15rem;
    }
}
