[16/01/2026 09:18:22] Maurane EF: }
[16/01/2026 09:20:18] Maurane EF: /* RESET */
•⁠  ⁠{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BASE */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
.top-header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.logo {
    max-width: 220px;
}

/* BANNIÈRE */
.banner {
    background-image: url("../image/images.png");
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    background-color: rgba(255, 140, 0, 0.9);
    color: #ffffff;
    padding: 30px 40px;
    text-align: center;
    border-radius: 10px;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BOUTONS */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e65100;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #bf360c;
}

/* MENU NAVIGATION */
.main-nav {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.main-nav a {
    text-decoration: none;
    font-weight: bold;
    color: #0d47a1;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #e65100;
}

/* CONTENEUR PRINCIPAL */
.container {
    max-width: 1100px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* SECTIONS */
.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #0d47a1;
    margin-bottom: 15px;
    border-left: 5px solid #ff8f00;
    padding-left: 10px;
}

/* LISTES */
ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* CARTES PROGRAMME */
.cards {
    display: grid;
    grid-template-columns: repeat auto-fit, minmax (180px, 1fr);
    gap: 15px;
}

.card {
    background-color: #e3f2fd;
    padding: 18px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

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

/* ESPACE ENTREPRISE */
#entreprise {
    background-color: #fff3e0;
    padding: 30px;
    border-radius: 8px;
}

/* CONTACT */
.contact {
    background-color: #f1f1f1;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #e0e0e0;
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .banner {
        height: 280px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .container {
        padding: 25px;
        margin: 20px;
    }
}