:root {
    --neos-pink: #cb1967;
    --neos-pink-ink: #b80066;
    --ink: #0e0e0f;
    --bg: #ffffff;
    --muted: #6b7280; /* slate-500 */
    --surface: #f8fafc; /* slate-50 */
    --border: #e5e7eb; /* slate-200 */
    --radius: 16px;
    --maxw: 1100px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        "Apple Color Emoji",
        "Segoe UI Emoji";
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
}
/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neos-pink);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/images/hero.jpg") center/cover no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.band {
    width: 100%;
    background: var(--neos-pink);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    padding: 32px 20px;
}
.band-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    font-size: clamp(22px, 3vw, 32px);
    color: #fff;
}
.band-sub {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 6px;
}
.band-inner a {
    color: #fff;
    text-decoration: none;
}
.band-inner a:hover {
    color: #ffd1ea;
}
.section {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 28px 20px 48px;
}
.contact {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
}
.list {
    margin: 0;
    padding-left: 18px;
}
.socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 28px 20px;
    margin-top: 32px;
    background: #cb1967;
    color: #fff;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px; /* Abstand nach unten */
}

.footer-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
}

.footer-social svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    transition: fill 0.2s ease;
}

.footer-social a:hover svg {
    fill: #ffd1ea;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-copywrap {
    margin-top: 16px;
    display: flex;
    justify-content: space-between; /* links Copy, rechts Links */
    align-items: center;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffd1ea;
}

/* Small screens */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 56px;
    }
    .grid-2,
    .grid-3,
    .contact {
        grid-template-columns: 1fr;
    }
    .hero::before {
        background-position: 35% center; /* oder z.B. 70% top */
    }
    .btn-row {
        display: flex;
        justify-content: center; /* mittig */
    }
}
/* Social Icons Reihe */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}
.social-icons a {
    display: inline-flex;
    width: 32px;
    height: 32px;
}
.social-icons svg {
    width: 100%;
    height: 100%;
    fill: #cb1967;
}
.social-icons a:hover {
    transform: translateY(-1px);
}
.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-align: center;
    color: var(--muted);
}
#ueber-mich ul li {
    margin-bottom: 12px; /* Abstand nach unten */
    line-height: 1.5;
}
#ueber-mich ul li:last-child {
    margin-bottom: 0; /* kein Extra-Abstand beim letzten Punkt */
}
.marquee {
    --gap: 20px;
    overflow: hidden;
    width: 100%;
    display: flex;
}

.marquee__group {
    display: flex;
    flex-shrink: 0;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.marquee img {
    height: 300px; /* oder aspect-ratio: 1/1 für quadratisch */
    aspect-ratio: 3/4;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation: none;
    }
}

.contact-note {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 28px 20px;
}
.contact-note p {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 0 0 14px 0;
}
.btn-mail {
    display: inline-block;
    padding: 12px 18px;
    font-weight: 700;
    border: 2px solid #cb1967;
    background: #cb1967;
    color: #fff;
    text-decoration: none;
}
.btn-mail:hover {
    filter: brightness(0.96);
}
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 22px;
    font-weight: 700;
    border-radius: 999px;
    background: #cb1967;
    color: #fff;
    text-decoration: none;
    border: 2px solid #cb1967;
    text-transform: uppercase;
    text-align: center;
}
.btn-primary:hover {
    filter: brightness(0.95);
}
.mitglied-box ul li {
    margin-bottom: 12px; /* Abstand nach unten */
    line-height: 1.5; /* bessere Lesbarkeit */
}
.mitglied-box ul li:last-child {
    margin-bottom: 0; /* kein Extra-Abstand beim letzten Punkt */
}
.normal-link {
    color: var(--neos-pink);
    text-decoration: none;
}
