/* next.kirche Teaser – Responsive Stylesheet */

:root {
    --color-bg: #1E2244;
    --color-accent: #ED7269;
    --color-text-light: rgba(255, 255, 255, 0.65);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: #fff;
}

/* ── Hero: Fullscreen ── */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.hero-content {
    width: 100%;
    max-width: 940px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── Headline ── */

.headline {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-accent);
    line-height: 1.0;
    letter-spacing: 0;
}

/* ── Einladung + Details ── */

.einladung {
    font-weight: 700;
    color: var(--color-accent);
}

.details {
    font-weight: 400;
    color: var(--color-accent);
    margin-top: 0.3em;
}

/* ── Logo ── */

.logo {
    color: var(--color-accent);
    margin-top: auto;
    padding-top: 3rem;
}

.logo-next {
    font-weight: 700;
}

.logo-kirche {
    font-weight: 300;
}

/* ══════════════════════════════════
   Mobile (default, ab 260px)
   ══════════════════════════════════ */

.headline {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
}

.einladung {
    font-size: 1rem;
    line-height: 1.4;
}

.details {
    font-size: 0.95rem;
    line-height: 1.5;
}

.logo {
    font-size: 1.4rem;
}

/* ══════════════════════════════════
   Tablet (ab 560px)
   ══════════════════════════════════ */

@media (min-width: 560px) {
    .hero {
        padding: 4rem 3rem;
    }

    .headline {
        font-size: clamp(4rem, 8vw, 5.5rem);
    }

    .einladung {
        font-size: 1.2rem;
    }

    .details {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 1.6rem;
    }
}

/* ══════════════════════════════════
   Desktop (ab 940px)
   ══════════════════════════════════ */

@media (min-width: 940px) {
    .hero {
        padding: 4rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .headline {
        font-size: 6.875rem; /* 110px wie im Mockup */
        line-height: 1.0;
    }

    .einladung {
        font-size: 30px;
        line-height: 36px;
    }

    .details {
        font-size: 30px;
        line-height: 36px;
    }

    .logo {
        font-size: 2rem;
        padding-top: 5rem;
    }
}
