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

/* ===================== BASE ===================== */
body {
    background: #7ec8ff;
    color: #1f2933;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.hero img {
    width: 95%;
    max-width: 1600px;
    height: 180px;
    object-fit: contain;
    display: block;
}

/* ===================== MENU ===================== */
.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    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, color 0.3s;
}

.menu a:hover,
.menu a.active {
    background: #ffb703;
    color: #1f2933;
}

/* ===================== 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;
}

/* ===================== CONTENU PRINCIPAL ===================== */
.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================== TEXTE ===================== */
.content-left {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.content-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-left p {
    font-size: 20px;
    max-width: 700px;
}

/* ===================== IMAGE ===================== */
.content-right {
    flex: 1;
    text-align: right;
}

.content-right img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

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

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

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

.legal-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #023047;
    border-bottom: 2px solid #ffb703;
    padding-bottom: 5px;
}
/* ===================== 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;
}

/* ===================== MOBILE ===================== */
@media screen and (max-width: 768px) {

    .menu {
        flex-direction: column;
    }

    .menu a {
        font-size: 18px;
        padding: 15px;
    }

    .menu-banner {
        padding: 10px 0;
    }

    .menu-banner img {
        width: 100%;
        border-radius: 0;
    }

    .main-content {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .content-left,
    .content-right {
        width: 100%;
        text-align: center;
    }

    .content-left h2 {
        font-size: 24px;
    }

    .content-left p {
        font-size: 15px;
    }

    .legal {
        padding: 30px 20px;
        margin: 30px auto;
    }
}
