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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

.header {
    background-image: 
        /*linear-gradient(135deg, rgba(102, 126, 234, 0.75) 0%, rgba(118, 75, 162, 0.75) 100%),*/
        url('img/header.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

.header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.header p {
    color: white;
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem 1rem;
}

.notification-banner {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
padding: 1rem;
border-radius: 15px;
margin-bottom: 2rem;
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
from {
    transform: translateY(-20px);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}

.notification-banner h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.notification-banner p {
font-size: 1rem;
opacity: 0.95;
}

.map-container {
background: white;
border-radius: 20px;
padding: 1.5rem;
margin-bottom: 2rem;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.map-container h2 {
color: #667eea;
margin-bottom: 1rem;
font-size: 1.8rem;
}

#map {
height: 400px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.project-card {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}

.project-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #667eea, #764ba2);
}

.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.project-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}

.flag-icon {
font-size: 2.5rem;
}

.project-card h3 {
color: #667eea;
font-size: 1.5rem;
}

.project-item {
margin: 1rem 0;
padding: 1rem;
background: #f8f9fa;
border-radius: 10px;
border-left: 4px solid #667eea;
}

.project-item h4 {
color: #333;
margin-bottom: 0.5rem;
font-size: 1.1rem;
}

.progress-bar {
width: 100%;
height: 25px;
background: #e0e0e0;
border-radius: 15px;
overflow: hidden;
margin-top: 0.5rem;
position: relative;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
border-radius: 15px;
transition: width 1s ease-out;
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 10px;
color: white;
font-weight: bold;
font-size: 0.9rem;
box-shadow: 0 2px 8px rgba(79, 172, 254, 0.4);
}

.cta-section {
text-align: center;
margin: 3rem 0;
}

.donate-btn {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
border: none;
padding: 1.5rem 3rem;
font-size: 1.3rem;
border-radius: 50px;
cursor: pointer;
box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
transition: all 0.3s ease;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}

.donate-btn:hover {
transform: scale(1.05);
box-shadow: 0 15px 40px rgba(245, 87, 108, 0.6);
}

.donate-btn:active {
transform: scale(0.98);
}

@media (max-width: 768px) {
    .header {
        padding: 4rem 1.5rem;
        min-height: 300px;
    }
    
    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1.1rem;
    }

.projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

#map {
    height: 300px;
}

.donate-btn {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.container {
    padding: 1rem 0.5rem;
}

.project-card {
    padding: 1.5rem;
}
}

.footer {
background: rgba(255, 255, 255, 0.95);
padding: 2rem;
text-align: center;
margin-top: 3rem;
color: #666;
}

.stats-banner {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 1rem;
margin: 2rem 0;
}

.stat-item {
background: white;
padding: 1.5rem;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
flex: 1;
min-width: 200px;
text-align: center;
}

.stat-number {
font-size: 2.5rem;
font-weight: bold;
color: #667eea;
margin-bottom: 0.5rem;
}

.stat-label {
color: #666;
font-size: 1rem;
}

.calculate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    /*width: 100%;
    margin: 1rem 0;*/
}

.calculate-btn:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.6);
}

.header-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.header-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.header-btn {
    background: white;
    color: #667eea;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.header-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.news-feed {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.news-feed h2 {
    color: #667eea;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-date {
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.news-date .day {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.news-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.news-content p {
    color: #666;
    line-height: 1.6;
}

.voir-plus-btn {
    display: block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.voir-plus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}