/* ------------------------------
RESET MODERNE
------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
*{font-family:"Raleway";box-sizing:border-box;}
}

body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #222;
        margin: 0;
        padding: 0;
}
/* ------------------------------
    STRUCTURE GLOBALE
------------------------------ */
header, main, section, footer {
        max-width: 1200px;
        margin: auto;
        padding: 1rem;
}
/* ------------------------------
    TITRES
------------------------------ */
h1, h2, h3 {
    color: #003366;
    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 PREMIUMS
------------------------------ */
.menu {
    background: linear-gradient(90deg, #1a00b0, #aca7ff);    /* Couleurs de fond du bandeau en degrade */
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.menu-logo img {
    height: 48px;
    width: auto;
    display: block;           /* Évite le petit décalage inline */
}
.menu-links {
    list-style: none;
    display: flex;
    align-items: center;      /* CENTRAGE VERTICAL DES LIENS */
    gap: 1.4rem;
}
.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;
    line-height: 1;           /* Évite les décalages verticaux */
    display: flex;            /* Permet un centrage parfait */
    align-items: center;
    height: 40px;
}
.menu-links a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
}
/* Menu mobile */
@media (max-width: 800px) {
    .menu-links {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #003366;
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 6px;
    }

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

    .menu-toggle {
            display: block;
    }
}

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

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

}
/* ------------------------------
BOUTONS CTA
------------------------------ */
.cta-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.8rem 1.6rem;
    background: #0055a5;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    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: #f2f7fc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dce6f5;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font:normal .950em "Verdana","Helvetica","Arial";color:#000fff;
}
/* ------------------------------
    SERVICESM
------------------------------ */
.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: 6px;
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ------------------------------
FOOTER PREMIUM
------------------------------ */
.footer {
    background: #002b55;
    color: #e6eef7;
    padding: 0.2rem 1rem;
    margin-top: 3rem;
    text-align: center;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.25);
    font-family: "Segoe UI", Arial, sans-serif;
    position: relative;
    overflow: hidden;
    font-size: 0.88rem;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 70%);
    pointer-events: none;
}

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

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

.footer a {
    color: #9cd0ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
}

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

#cookie-accept-all { background: #4CAF50; color: white; }
#cookie-refuse-all { background: #c62828; color: white; }
#cookie-customize { background: #ff9800; color: white; }
#cookie-save { background: #003366; color: white; }
#cookie-close { background: #777; color: white; }

.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #003366; color: white; padding: 18px; text-align: center; font-size: 15px; z-index: 9999; display: none; }
.cookie-banner p { margin: 0 0 10px 0; line-height: 1.4; }
.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: 8px; text-align: left;}
.cookie-category { margin-bottom: 15px;}
.cookie-settings-buttons button { margin: 10px 5px 0 0; padding: 10px 18px; border: none; cursor: pointer; border-radius: 4px;}


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

div#photoflot10 img{margin:0;padding:0;text-align:justify;background-color:none;border:1px solid red;margin:0 0 10px 10px;padding:0;border-radius:50%;width:100%;}
div#photoflot11 img{margin:0;padding:0;text-align:justify;background-color:none;border:1px solid red;margin:0 0 10px 10px;padding:0;border-radius:50%;width:100%;}
div#photoflot12 img{margin:0;padding:0;text-align:justify;background-color:none;border:1px solid red;margin:0 0 10px 10px;padding:0;border-radius:50%;width:100%;}
div#photoflot13 img{margin:0;padding:0;text-align:justify;background-color:none;border:1px solid red;margin:0 0 10px 10px;padding:0;border-radius:50%;width:100%;}
div#photoflot14 img{margin:0;padding:0;text-align:justify;background-color:none;border:1px solid red;margin:0 0 10px 10px;padding:0;border-radius:50%;width:100%;}
div#photoflot15 img{margin:0;padding:0;text-align:justify;background-color:none;border:1px solid red;margin:0 0 10px 10px;padding:0;border-radius:50%;width:100%;}
div#photoflot16 img{margin:0;padding:0;text-align:justify;background-color:none;border:1px solid red;margin:0 0 10px 10px;padding:0;border-radius:50%;width:100%;}

.td15tab-acenter{font:bold 1.70em "Verdana","Helvetica","Arial";color:#000080;text-align:center;}


