/* Allgemeines Styling */
body {
    font-family: Arial, Helvetica, sans-serif; /* Serifenlose Schrift */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #000063;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

/* Hauptbereiche */
main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

h2 {
    border-bottom: 2px solid #DDA000;
    padding-bottom: 5px;
    margin-bottom: 10px;
    color: #000063;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-image {
    max-width: 150px;
    border-radius: 50%;
}

.about-content p {
    flex: 1;
    font-size: 1.1em;
}

/* Spendenziel */
.goal progress {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    background: #f4f4f4;
}

/* Dankeschön-Liste */
.thanks ul {
    list-style: none;
    padding: 0;
}

.thanks li {
    background: #f9f9f9;
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Countdown */
.countdown {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Galerie */
.gallery-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Video */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.video video {
    width: 100%;
    border-radius: 10px;
}

/* Link zum WDR 2 Weihnachtswunder */
.link a {
    color: #2a9d8f;
    text-decoration: none;
    font-weight: bold;
}

/* Datenschutz */
.privacy {
    font-size: 0.9em;
    color: #555;
}

/* Responsives Design */
@media (max-width: 600px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        max-width: 100px;
    }
}

