/* Grundstil mit Hintergrundbild */
body {
    margin: 0;
    padding: 0;
    background: #000 url("background-desktop.jpg") no-repeat center center;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

/* Abdunklung über dem Bild */
.overlay {
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.45);
}

/* Seite als Spalte: Header oben, Footer unten */
.page {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Logo-Bereich */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 220px;
    height: auto;
}

/* Hauptbereich */
.content {
    flex: 1; /* schiebt Footer nach unten */
}

/* Überschrift */
h1 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    text-align: center;
}

h2 {
    font-size: 1.0rem;
    margin-bottom: 25px;
    text-align: center;
}
/* Zweispaltiger Text */
.text-columns {
    column-count: 2;
    column-gap: 40px;
    font-size: 1.0rem;
    line-height: 1.6;
}

.text-columns p {
    margin: 0 0 1.2em 0; /* kein Abstand oben, normaler Abstand unten */
}

.text-columns p:first-child {
    margin-top: 0; /* Sicherheitshalber explizit */
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
    opacity: 0.9;
}

/* Mobile: alles einspaltig */
/* Mobile-Hintergrund */
@media (max-width: 900px) {
    body {
        background-image: url("background-mobile.jpg");
        background-position: center top;
        background-attachment: scroll;
    }

    h1 {
        font-size: 1.8rem;
    }

    .text-columns {
        column-count: 1;
        font-size: 1.2rem;
    }

    .logo {
        max-width: 180px;
    }
}
