/* HERO */
.hero {
    /* Image de fond + overlay teinte rouge UNIET atténuée */
    background-image: linear-gradient(rgba(165,28,48,0.35), rgba(165,28,48,0.35)), url('../img/elements/exterieurUniet.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}

.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
}

.hero-btn { 
    background: #fff; 
    color: #A51C30;
    font-weight: 600;
}

.hero-btn:hover {
    background: #f0f0f0;
}

/* SECTIONS */
section { 
    padding: 4rem 2rem; 
}

h2 { 
    text-align: center; 
    margin-bottom: 2rem; 
    color: #A51C30; 
    font-size: 2rem;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    color: #A51C30;
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
}

.card a {
    color: #A51C30;
    text-decoration: none;
    font-weight: 600;
}

.card a:hover {
    text-decoration: underline;
}

/* PROGRAMMES SECTION */
.programmes {
    background: #fff;
}

/* NEWS SECTION */
.news {
    background: #f9f9f9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .cards { 
        flex-direction: column; 
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 1.5rem 1rem;
    }
}

