body{
    background-color: #DFDFDF;
    line-height: 1.6;
}

.main-content {
    padding-top: 120px;
}

.c{
    color: #ff0000;
    font-size: clamp(1.5rem, 5vw, 3rem);
    text-align: center;
    margin: 2rem 1rem;
}

/* Quote Section */
.quote-section {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.parent{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
}

.container1{
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

.container1 blockquote {
    font-style: italic;
    margin: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.container1 blockquote footer {
    margin-top: 1rem;
    font-size: 0.85em;
    font-style: normal;
}

.container2{
    display: flex;
    justify-content: center;
}

.Bild {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}

.Bild img {
    width: 100%;
    height: auto;
    display: block;
}

/* Peace Section */
.peace-section {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.peace-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.peace-image {
    position: sticky;
    top: 140px;
}

.peace-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.peace-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.peace-questions {
    display: grid;
    gap: 2rem;
}

.question-block h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #ff0000;
    margin-bottom: 0.75rem;
}

.question-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.question-block li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.question-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

/* Message Section */
.message-section {
    margin: 4rem auto;
    max-width: 900px;
    padding: 0 1rem;
}

.message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.message-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.signature {
    font-weight: bold;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #ff0000;
    margin-top: 2rem !important;
}

/* Calendar Section */
.calendar-section {
    text-align: center;
    margin: 3rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.calendar-section .cta-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.calendar-section .cta-link:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
}

/* News Section */
.news-section {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 2rem 1rem;
    background: url(../assets/images/pages/calendar2.png);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}

.news-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: bolder;
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.news-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

.news-item h3 {
    color: #ff0000;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.news-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item a:hover {
    color: #ff0000;
}

.news-item time {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.no-news {
    text-align: center;
    font-size: 1.25rem;
    padding: 2rem;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

/* Footer */
#ganzunten {
    width: 100%;
    padding: 2rem 0;
    background-color: #2E2E2E;
    text-align: center;
    margin-top: 4rem;
}

#ganzunten a{
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#ganzunten a:hover {
    color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-top: 80px;
    }
    
    .peace-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .peace-image {
        position: static;
        text-align: center;
    }
    
    .peace-image img {
        max-width: 300px;
    }
    
    .message-content {
        padding: 1.5rem;
    }
    
    .news-items {
        grid-template-columns: 1fr;
    }
} 

