
  /* ============================================================
   VARIABLES CSS — PALETTE ANTEOS 2026
============================================================ */
:root {
    --bleu-fonce: #003366;
    --bleu-moyen: #0055a5;
    --bleu-clair: #9cd0ff;
    /*
    --gradient-1: #1a00b0;
    --gradient-2: #aca7ff;
    */
    --gradient-1: #008d00;
    --gradient-2: #c2dd9d;


    --fond-section: #f2f7fc;
    /*--fond-footer: #002b55;*/
    --fond-footer: #008d00;

    --cookie-accept: #4CAF50;
    --cookie-refuse: #c62828;
    --cookie-custom: #ff9800;
    --cookie-save: #003366;
    --cookie-close: #777;

    --font-main: "Raleway", Arial, sans-serif;
    --font-alt: "Segoe UI", Arial, sans-serif;

    --radius: 8px;
    --shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ============================================================
   RESET MODERNE
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #222;
    padding-top: 80px;
    padding-bottom: 120px;
}

/* ============================================================
   STRUCTURE GLOBALE
============================================================ */

header, main, section, footer {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

/* ============================================================
   TITRES
============================================================ */

h1, h2, h3 {
    color: var(--bleu-fonce);
    font-weight: 700;
}

h1 { font-size: 2rem; margin-bottom: 0.8rem; }
h2 { font-size: 1.6rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }

/* ============================================================
   PARAGRAPHES & LISTES
============================================================ */

p { margin-bottom: 1rem; }
ul { margin-left: 1.2rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ============================================================
   MENU PREMIUM — VERSION 2026
============================================================ */

.menu {
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center; /* Alignement vertical parfait */
    gap: 0.5rem;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 9999;

    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* --- Bouton burger mobile --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
}

/* --- Flèches PC (alignées en hauteur avec les liens) --- */
.menu-left,
.menu-right {
    height: 40px;              /* même hauteur que les liens */
    min-width: 40px;           /* largeur équilibrée */
    display: flex;
    align-items: center;       /* centrage vertical */
    justify-content: center;

    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    color: #ffffff;

    border: none;
    font-size: 1.4rem;         /* taille visuelle équilibrée */
    cursor: pointer;

    border-radius: 6px;
    transition: 0.2s;
    z-index: 10000;
}

.menu-left:hover,
.menu-right:hover {
    background: rgba(255,255,255,0.25);
}

/* --- Menu horizontal scrollable --- */
.menu-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.4rem;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
    flex: 1;
}

.menu-links::-webkit-scrollbar {
    display: none;
}

.menu-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.45rem 0.7rem;
    border-radius: 4px;
    transition: 0.25s ease;
    font-size: 0.80rem;

    display: flex;
    align-items: center;  /* centrage vertical */
    justify-content: center;
    height: 40px;         /* hauteur fixe */
    text-align: center;
    white-space: nowrap;
}

.menu-links a:hover {
    background: rgba(255,255,255,0.25);
}

/* ============================================================
   MENU MOBILE
============================================================ */

@media (max-width: 800px) {

    .menu-left,
    .menu-right {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--bleu-fonce);
        padding: 1rem;
        border-radius: var(--radius);

        position: absolute;
        top: 70px;
        left: 0;
        max-height: 75vh;
        overflow-y: auto;
        z-index: 99999;
    }

    .menu-links.show {
        display: flex;
    }
}

/* ============================================================
   HERO
============================================================ */

.hero {
    text-align: center;
    padding: 2rem 1rem;
}

.hero img {
    max-width: 260px;
    height: auto;
    margin-bottom: 1rem;
}

/* ============================================================
   CTA
============================================================ */

.cta-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.8rem 1.6rem;
    background: var(--bleu-moyen);
    color: #fff;
    font-weight: bold;
    border-radius: var(--radius);
    text-decoration: none;
    transition: 0.25s ease;
}

.cta-btn:hover {
    background: #003f7d;
}

/* ============================================================
   BLOCS SECTIONS
============================================================ */

.section-highlight,
.service-box,
.section-box,
.contact-box,
.rgpd-box,
.legal-box,
.sitemap-box {
    background: var(--fond-section);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #dce6f5;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    color: var(--bleu-fonce);
    font-size: 0.95em;
}

/* ============================================================
   SERVICES
============================================================ */

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-box {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: var(--radius);
    background: #fafafa;
    box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER PREMIUM
============================================================ */

.footer {
    background: var(--fond-footer);
    color: #e6eef7;
    padding: 0.2rem 1rem;
    margin-top: 3rem;
    text-align: center;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.25);
    font-size: 0.88rem;
    overflow: hidden;
}

.footer-separator {
    width: 80%;
    height: 1px;
    margin: 0 auto 1.2rem auto;
    background: linear-gradient(90deg, transparent, var(--bleu-clair), transparent);
    opacity: 0.6;
}

.footer-small {
    font-size: 0.78rem;
    opacity: 0.85;
}

.footer a {
    color: var(--bleu-clair);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================================================
   COOKIES
============================================================ */

#cookie-accept-all { background: var(--cookie-accept); color: white; }
#cookie-refuse-all { background: var(--cookie-refuse); color: white; }
#cookie-customize { background: var(--cookie-custom); color: white; }
#cookie-save { background: var(--cookie-save); color: white; }
#cookie-close { background: var(--cookie-close); color: white; }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bleu-moyen);
    color: white;
    padding: 18px;
    text-align: center;
    font-size: 15px;
    z-index: 9998;
    display: none;
}

.cookie-banner-buttons button {
    margin: 5px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 10000;
}

.cookie-settings-box {
    background: #fff;
    width: 90%;
    max-width: 480px;
    margin: 80px auto;
    padding: 20px;
    border-radius: var(--radius);
}

/* ============================================================
   GALERIE PHOTOS
============================================================ */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid-container img {
    margin: 0 0 10px 10px;
    border: 1px solid red;
    border-radius: 50%;
    width: 100%;
}

/* ============================================================
   CLASSES ANCIENNES (inchangées)
============================================================ */

.sp-1{font:normal .90em "Verdana","Helvetica","Arial";color:#000080;text-decoration:none;}

.tab-7forbluea{font:bold .80em "Verdana","Helvetica","Arial";text-decoration:none;color:#ff0080;text-align:justify;}
.tab-8forbluea{font:bold 1.50em "Verdana","Helvetica","Arial";text-decoration:none;color:#ff0080;text-align:justify;}
.td15tab-acenter {font: bold 1.70em var(--font-alt); color: #000080; text-align: center;}
.td30r{width:30%;text-align:right;font:normal 1.20em "Verdana","Helvetica","Arial";text-decoration:none;color:#000050;}
.td40c{width:40%;text-align:center;}
.td30l{width:30%;text-align:left;}

#table-0forbluea{width:100%;font:normal .90em "Verdana','Helvetica','Arial";text-decoration:none;text-align:justify;background:none;color:#000080;padding:0;border:1px solid #fff;}

/* ============================================================
    CLASSES CONTACT)
============================================================ */
.tel-link {
    text-decoration: none;
    color: inherit;
}
