/* Grundlegende Stile */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: whitesmoke;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Altdeutsche Überschrift */
.altdeutsch {
    font-family: 'UnifrakturCook', cursive;
}

/* Header-Bereich */
header {
    background-color: crimson;
    padding: 2rem 1rem 1rem 1rem; /* Oben 2rem, unten nur 1rem */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0; /* Verhindert Abstand zur Sektion */
}

header h1 {
    font-size: 2.8rem;
    color: whitesmoke;
    margin: 0; /* Entfernt Standardabstand oben/unten */
}

.motto {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #f5f5f5;
    margin: 0.5rem 0 0 0; /* Nur oben etwas Luft */
    font-style: italic;
    letter-spacing: 1px;
}

/* Hauptbereich */
section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    text-align: left;
}

section h2 {
    font-size: 1.8rem;
    color: #ffcccb;
    margin-bottom: 1rem;
    text-align: center;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.6rem;
    background-color: crimson;
    color: whitesmoke;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: darkred;
    transform: scale(1.05);
}

/* Footer */
footer {
    margin-top: 3rem;
    padding: 1rem;
    background-color: #111;
    font-size: 0.9rem;
    color: #ccc;
}

.wappen {
    width: 120px;
    height: auto;
    margin-top: 10px;
}