/* ------------------------------
   PALETTE & TYPOGRAPHIE
--------------------------------*/
body {
    font-family: "Montserrat", Arial, sans-serif;
    color: #333;
    background: #fafafa;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    color: #005fcc;
}

/* ------------------------------
   LAYOUT GLOBAL
--------------------------------*/
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ------------------------------
   MODULE HERO
--------------------------------*/
.modular-hero {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(135deg, #e8f2ff, #f7fbff);
    border-bottom: 2px solid #d0e6ff;
}

.modular-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: #003366;
}

.modular-hero p {
    font-size: 1.4rem;
    opacity: 0.85;
}

/* ------------------------------
   MODULE TEXT
--------------------------------*/
.modular-text {
    padding: 70px 20px;
    background: #ffffff;
}

.modular-text .text-content {
    max-width: 800px;
    margin: 0 auto;
}

.modular-text h2 {
    margin-bottom: 20px;
    color: #003366;
}

/* ------------------------------
   MODULE CTA
--------------------------------*/
.modular-cta {
    padding: 90px 20px;
    text-align: center;
    background: #e8f4ff;
    border-top: 2px solid #cfe4ff;
    border-bottom: 2px solid #cfe4ff;
}

.modular-cta h2 {
    margin-bottom: 20px;
    color: #003366;
}

.modular-cta a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #007bff;
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s;
}

.modular-cta a:hover {
    background: #005fcc;
}

/* ------------------------------
   TABLEAUX DE TARIFS
--------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

table th, table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

table th {
    background: #f0f7ff;
    color: #003366;
    font-weight: 700;
}

/* ------------------------------
   FORMULAIRE DE CONTACT
--------------------------------*/
form {
    max-width: 600px;
    margin: 40px auto;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

form button, form input[type="submit"] {
    background: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

form button:hover, form input[type="submit"]:hover {
    background: #005fcc;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    text-align: center;
    padding: 30px;
    background: #003366;
    color: white;
    margin-top: 50px;
}


/* Style spécifique pour vos images appelées avec ?classes=img-800 */
.img-800 {
    display: block;
    margin: 20px auto;      /* Centre l'image */
    height: auto;
    border-radius: 20px;    /* Coins arrondis */
    max-width: 100%;        /* Adaptable sur mobile */
}

/* Sur PC (écrans larges) */
@media (min-width: 961px) {
    .img-800 {
        width: 800px;       /* Force la taille à 800px sur PC */
    }
}

/* Sur Mobile */
@media (max-width: 960px) {
    .img-800 {
        max-width: 95%;     /* S'adapte à la largeur du téléphone */
        border-radius: 15px;
    }
}


 
/* -----------------------------
	BURGER
--------------------------------*/
<style>
#emy-burger {
    display: none; /* Caché sur PC */
    width: 35px;
    height: 35px;
    cursor: pointer;
    border: 2px solid red; /* ON GARDE LE ROUGE POUR LE TEST */
    flex-direction: column;
    justify-content: space-around;
    padding: 5px;
}

#emy-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333 !important;
}

@media (max-width: 960px) {
    #emy-burger {
        display: flex !important; /* On force le flex pour voir les barres */
    }

    #emy-nav {
        display: none;
        width: 100%;
        background: white;
        position: absolute;
        top: 70px; /* Ajustez selon la hauteur de votre header */
        left: 0;
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    #emy-nav.is-active {
        display: block !important;
    }

    #emy-nav ul {
        flex-direction: column;
        list-style: none;
        padding: 20px;
        margin: 0;
    }

    #emy-nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}
</style>