body {
    background-color: #faf0e6; /* Hintergrundfarbe */
    color: #552e0c; /* Braune Textfarbe */
    font-family: Arial, sans-serif; /* Einheitliche Schriftart */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Volle Höhe des Viewports */
    margin: 0;
}

/* Inhalt in der Mitte platzieren, aber Text linksbündig */
.centered {
    max-width: 500px;
    padding: 20px;
    text-align: left; /* Links ausgerichtet */
}

/* Logo mit Mindestbreite von 450px auf Desktop und max. 90vw auf Mobile */
.logo {
    width: 100%;
    min-width: 450px; /* Mindestbreite für große Bildschirme */
    max-width: 500px; /* Maximale Breite für große Bildschirme */
    height: auto;
    margin-bottom: 5vh;
}

/* Anpassung für mobile Geräte */
@media (max-width: 600px) {
    .logo {
        min-width: unset; /* Entfernt die Mindestbreite */
        max-width: 90vw; /* Maximal 90% der Bildschirmbreite */
    }
}

body {
    background-color: #faf0e6; /* Hintergrundfarbe */
    color: #552e0c; /* Braune Textfarbe */
    font-family: Arial, sans-serif; /* Einheitliche Schriftart */
    font-size: 18px; /* Einheitliche Schriftgröße */
    line-height: 1.5; /* Angenehmer Zeilenabstand */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Volle Höhe des Viewports */
    margin: 0;
}


/* Links */
a {
    color: #552e0c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Abstand nach "Rafaela Stalder…" */
.person {
    margin-bottom: 1rem;
}

/* "Zellfeld 5" und "Telefon…" ohne Abstand zwischen den Zeilen */
.contact-info p {
    margin: 0;
    padding: 0;
}

/* Abstand nach der letzten Zeile in "contact-info" */
.contact-info {
    margin-bottom: 1rem;
}

/* Vor dem Datenschutz-Link soll Abstand sein */
small {
    display: block;
    margin-top: 2rem;
}

/* Floating Button - Standardgröße (Desktop) */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #5f9310; /* Grün */
    color: white;
    font-size: 16px;
    text-align: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-align: center;
    padding: 10px;
}

/* Stellt sicher, dass der Text korrekt umbricht */
.floating-text {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
}

/* "Freie Plätze!" stärker hervorheben */
.floating-text strong {
    font-size: 18px;
    display: block; /* Damit es sich absetzt */
    margin-top: 5px;
}

/* Kleinere Größe auf Mobilgeräten */
@media (max-width: 600px) {
    .floating-button {
        width: 100px;
        height: 100px;
        font-size: 12px;
        bottom: 15px;
        right: 15px;
    }

    .floating-text {
        font-size: 12px;
        line-height: 1.2;
    }

    .floating-text strong {
        font-size: 14px;
    }
}

/* Hover-Effekt */
.floating-button:hover {
    background-color: #460; /* Dunkleres Grün */
    text-decoration: none;
}

/* Hover-Effekt */
.floating-button:hover {
    background-color: #460; /* Dunkleres Grün */
    text-decoration: none;
}
