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

/* ==================================================
   STRUCTURE GÉNÉRALE
================================================== */
body {
    background: #7ec8ff;
    color: #1f2933;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

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


/* ==================================================
   SECTION CONTACT ET TARIFS
================================================== */
.contact-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* TITRE PRINCIPAL */
.contact-section h2 {
    font-size: 30px;
    margin-bottom: 45px;
    color: #023047;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;    /* TITRE CENTRÉ */
}

/* ==================================================
   TEXTE DESCRIPTION CONTACT
================================================== */
.contact-description {
    font-size: 22px;
    line-height: 1.7;
    color: #1f2933;
    margin-top: 20px;
    text-align: left;       /* TEXTE À GAUCHE */
}

.contact-description a {
    color: #fb8500;
    text-decoration: none;
    font-weight: 600;
}

.contact-description a:hover {
    text-decoration: underline;
}

.contact-description strong {
    font-weight: 700;
}
/* IMAGE DANS LA SECTION CONTACT */
.contact-image {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.contact-image img {
    max-width: 30%;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

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


/* ==================================================
   RESPONSIVE TABLETTE
================================================== */
@media (max-width: 1024px) {
    .contact-section {
        padding: 40px 30px;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .contact-description {
        font-size: 20px;
    }
}

/* ==================================================
   RESPONSIVE MOBILE
================================================== */
@media (max-width: 768px) {
    .menu a {
        padding: 14px 25px;
        font-size: 18px;
    }

    .contact-section {
        margin: 40px 15px;
        padding: 30px 20px;
    }

    .contact-section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .contact-description {
        font-size: 18px;
    }
}
