
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-image 0.5s ease;
    background: radial-gradient(circle at 30% 30%, #a3d5ff 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, #ffffff33 0%, transparent 50%),
                #0b1d30;
}

.centered {
    text-align: center;
    padding: 20px;
    color: #2e2e2e;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    margin: 20px;
    text-shadow: 0 0 6px rgba(253, 253, 253, 0.3), 0 0 12px rgba(147, 239, 248, 0.3);
}

#season-buttons {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    gap: 6px;
}

#text-size-switch {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#text-size-switch button,
#season-buttons button {
    background: white;
    border: 2px solid #ccc;
    border-radius: 50%;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: background 0.2s ease;
}

#text-size-switch button:hover,
#season-buttons button:hover {
    background: #f0f0f0;
}

.news-item {
    font-weight: bold;
    cursor: pointer;
    margin: 20px 0 5px;
    font-size: 1.2em;
}

.news-content {
    display: none;
    margin-bottom: 20px;
}

.news-content img {
    max-width: 90%;
    height: auto;
    margin-top: 10px;
}

.news-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
}

.news-box img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.news-box div {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .news-box {
        flex-direction: column;
    }
    .news-box img {
        width: 80%;
    }
}

.raum-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px;
}

.raum-container img {
    width: 200px;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.raum-container img:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}
.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.flyer-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 10px auto;
}

.flyer-gallery img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flyer-gallery img:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .flyer-gallery img {
        width: 180px;
    }
}

#spenden-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    color: #2e2e2e;
    text-shadow: 0 0 6px rgba(71, 205, 255, 0.6), 0 0 12px rgba(255, 77, 77, 0.8);
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #ffffffcc;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.popup-content button:hover {
    background: #ffffff;
}

.lieferanten-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.lieferant-card {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.lieferant-card:hover {
    transform: translateY(-4px);
}

.lieferant-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.lieferant-card button {
    margin-top: 10px;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: bold;
}

.lieferant-card button:hover {
    background: #f2f2f2;
}

#copyright {
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    color: #444;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

#logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 10px;
}

#logo-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
