/* RESET PRO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ===================== RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ===================== BODY ===================== */
body {
    background: #7ec8ff; /* fond bleu joyeux */
    color: #1f2933;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===================== BANDEROLE ===================== */
.hero {
    background: #7ec8ff;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.hero img {
    width: 95%;
    max-width: 1600px;
    height: 180px;  /* fine mais large */
    object-fit: contain;
}
/* ===================== MENU ===================== */
.menu {
    display: flex;
	flex-wrap:wrap;
	width: 100%;
    justify-content: center;
    background: #fb8500;
    position: sticky;
    top: 0;
    z-index: 10;
}

.menu a {
    padding: 20px 45px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.3s;
	box-sizing: border-box;
	text-align: center;
}

.menu a:hover {
    background: #ffb703;
    color: #1f2933;
    transform: translateY(-2px);
}
/* ===================== BANNIÈRE SOUS MENU ===================== */
.menu-banner {
    width: 100%;
    padding: 0;
    background: #7ec8ff;
}

.menu-banner img {
    width: 100%;
    height: 140px;      /* ← plus fin ici */
    object-fit: cover;
    display: block;
}


/* ===================== SECTIONS ===================== */
.section {
    background: white;
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.section-alt {
    background: #f4faff;
}

.intro {
    text-align: center;
}

.section h1,
.section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #023047;
    text-transform: uppercase;
}

.section p {
    font-size: 18px;
    line-height: 1.7;
}
/* ===================== SECTIONS BLANCHES UNIFORMES ===================== */
section {
    width: 95%;
    max-width: 1200px;
    min-height: 300px;        /* hauteur minimale uniforme */
    margin: 40px auto;        /* centrage et espace vertical */
    padding: 40px;             /* espace intérieur */
    background: white;         /* fond blanc */
    border-radius: 20px;       /* arrondi uniforme */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* ombre */
}

/* TITRES DANS LES SECTIONS */
section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #023047;
    text-transform: uppercase;
}

/* TEXTE DANS LES SECTIONS */
section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media(max-width:1024px){
    section { padding: 30px; min-height: 250px; }
    section h2 { font-size: 28px; }
    section p { font-size: 16px; }
}

@media(max-width:768px){
    section { padding: 25px; min-height: 220px; }
    section h2 { font-size: 26px; }
    section p { font-size: 15px; }
}

@media(max-width:480px){
    section { padding: 20px; min-height: 180px; }
    section h2 { font-size: 24px; }
    section p { font-size: 14px; }
}

/* ===================== BLOCS ANIMATION ===================== */
.animation-block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.animation-block img {
    width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.animation-block div {
    flex: 1;
}

.animation-block p {
    font-size: 17px;
    line-height: 1.6;
}

/* ===================== FOOTER ===================== */
footer {
    background: #fb8500;
    color: #ffffff;
    text-align: center;
    padding: 12px 10px; /* ← plus fin */
    margin-top: auto;
    font-size: 14px;    /* texte un peu plus petit */
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #ffb703;
}


/* ===================== MENTIONS LEGALES ===================== */
.legal {
    background: #e9f5ff;
    padding: 40px 20px;
    font-size: 14px;
    text-align: left;       
    max-width: 900px;       
    margin: 50px auto;      
}

.legal h3 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #1f2933;
}
/* ===================== MENTIONS LEGALES PRO ===================== */
.legal {
    background: #f9f9f9;        
    padding: 50px 30px;         
    max-width: 900px;           
    margin: 50px auto;          
    border-radius: 15px;        
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    font-size: 16px;
    line-height: 1.8;
    color: #1f2933;
}

.legal h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #fb8500;
    letter-spacing: 1px;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #023047;
    border-bottom: 2px solid #ffb703;  /* sous-ligne */
    padding-bottom: 5px;
}

.legal-section p {
    text-align: left;
    margin-top: 8px;
}
/* ===================== MOBILE ===================== */
@media screen and (max-width: 768px) {

    /* Sections blanches */
    section,
    .contact-section {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
        min-height: auto;
    }

/* Menu */

    nav ul {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
    }

    nav a {
        font-size: 18px;
    }

    /* Titres */
    h2 {
        font-size: 24px;
    }

    /* Texte */
    p {
        font-size: 15px;
    }

    /* Formulaire */
    input,
    textarea,
    button {
        width: 100%;
        font-size: 16px;
    }

    textarea {
        height: 180px;
    }

}

