/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Futura, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #162A70;
    padding: 0;
    position: relative;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

.logo {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 90px;
    height: 90px;
	align-items: center;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 74, 139, 0.3), rgba(44, 74, 139, 0.3)), url('assets/img/rollstuhl-hero.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-content {
    max-width: 600px;
    margin-left: auto;
    margin-right: 100px;
}

.hero-title {
    background-color: rgba(74, 144, 226, 0.95);
    color: white;
    padding: 30px 40px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Support Section */
.support-section {
    background-color: #ECF1FA;
    margin: 0 -40px 0px -40px;
    padding: 60px 80px;
    text-align: left;
}

.support-section h2 {
    color: #162A70;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 1px;
	text-align: center;
}

.support-text {
    max-width: 800px;
    margin: 0 auto;
}

.support-text p {
    color: #162A70;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.support-text .highlight {
    font-size: 18px;
    font-weight: bold;
    color: #0162A70;
    margin-top: 30px;
	text-align: center;
}

/* News Section */
.news-section {
    background-color: #3F75CC;
    margin: 0 -40px;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.news-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.news-cards {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.news-card {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    width: 280px;
    text-align: center;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card a {
    text-decoration: none;
    color: white;
    display: block;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #ddd;
    margin-bottom: 20px;
    /* Platzhalter falls Bild nicht lädt */
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.news-card h3 {
    padding: 0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Sponsors Section */
.sponsors-section {
    background-color: #f5f5f5;
    margin: 40px -40px;
    padding: 60px 40px;
    text-align: center;
}

.sponsors-section h2 {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-link {
    display: block;
    height: 120px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.sponsor-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sponsor-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sponsor-placeholder {
    height: 120px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border: 2px dashed #bbb;
}


/* Footer */
.footer {
    background-color: #162A70;
    color: white;
    padding: 40px;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    margin-right: 40px;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.4;
}

.footer-links {
    text-align: right;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content {
        margin: 0;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 20px;
        padding: 20px;
    }
    
    .support-section {
        margin: 40px -20px;
        padding: 40px 20px;
    }
    
    .news-section {
        margin: 40px -20px;
        padding: 40px 20px;
    }
    
    .news-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .main-content {
        padding: 0 20px;
    }
}