/* Spenden Seite */
.spenden {
    max-width: 1200px;
    margin: 15px auto;
    padding: 20px;
    margin-top: -100px !important;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
}

.spenden h1 {
    font-size: 2em;
}

.spenden h1, 
.spenden h2, 
.spenden h3 {
    color: #08351cea;
    text-align: center; /* Zentriert die Überschriften */
    margin-bottom: 20px;
}

.spenden p {
    margin-bottom: 15px;
    color: #555;
}

.spenden ul {
    list-style-type: none; /* keine Aufzählungspunkte */
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.spenden ul li {
    margin-bottom: 10px;
}

/* PayPal und GoFundMe Buttons */
.donation-button-container {
    display: flex;          /* Verwende Flexbox, um die Buttons nebeneinander auszurichten */
    justify-content: center; /* Zentriert die Buttons horizontal */
    gap: 50px;              /* Fügt einen Abstand zwischen den Buttons hinzu */
}

.paypal-button, .gofundme-button {
    display: inline-flex;   /* Verwendet Flexbox, um das Bild und den Text nebeneinander anzuordnen */
    align-items: center;    /* Vertikal ausrichten */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.paypal-button {
    background-color: #005c8e;
    color: #ffffff;
}

.paypal-logo {
    width: auto; /* Die Größe des Logos */
    height: 25px; /* Damit das Logo seine Proportionen behält */
    margin-right: 10px; /* Abstand zwischen dem Logo und dem Text */
}

.paypal-button:hover {
    background-color: #0083c0;
}

.paypal-button:active {
    background-color: #0070ba;
}

.gofundme-button {
    background-color: #07a95c;
    color: #ffffff;
}

.gofundme-logo {
    width: auto; /* Die Größe des Logos */
    height: 35px; /* Damit das Logo seine Proportionen behält */
    margin-right: 10px; /* Abstand zwischen dem Logo und dem Text */
}

.gofundme-button:hover {
    background-color: #00d16c;
}

.gofundme-button:active {
    background-color: #00b15b;
}

/* Mobile Ansicht (maximale Breite 768px) */
@media (max-width: 768px) {
    .donation-button-container {
        flex-direction: column; /* Buttons untereinander anordnen */
        align-items: center;    /* Zentriert die Buttons */
        gap: 15px;              /* Abstand zwischen den Buttons */
    }

    .paypal-button, .gofundme-button {
        width: 80%;            /* Buttons breiter machen */
        max-width: 300px;      /* Eine maximale Breite festlegen */
    }
}

/* Formatierung des Winke-Bildes */
.spenden .team-photo {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
