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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #ffffff;
    color: #000;
}


/* ========== HEADER ========== */

header {
    background: #ffffff;
    border-bottom: 3px solid #1E3A8A;
    /* bleu principal */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-box img {
    height: 60px;
    margin-bottom: 5px;
}

.logo-box h1 {
    font-size: 16px;
    color: #1E3A8A;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #1E3A8A;
    transition: all 0.3s ease;
    position: relative;
}


/* Effet soulignement cool */

nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #16A34A;
    /* vert secondaire */
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
    background: #FACC15;
    /* jaune accent */
}

nav ul li a:hover {
    color: #16A34A;
}


/* Bouton menu mobile (hamburger) */

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #1E3A8A;
    cursor: pointer;
}


/* Responsive */

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #1E3A8A;
        border-bottom: #ffffff;
        position: absolute;
        top: 70px;
        right: 10px;
        width: 200px;
        border-radius: 10px;
        padding: 10px;
    }
    nav ul li a {
        color: white;
        padding: 10px;
        display: block;
    }
    nav ul li a:hover {
        background: #16A34A;
        border-radius: 5px;
        color: #fff;
    }
    .menu-toggle {
        display: block;
    }
}


/* ========== BOUTONS ANIMÉS ========== */

.btn {
    background: #16A34A;
    /* vert */
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #FACC15;
    /* jaune accent */
    color: #000;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.4);*/
    transition: left 0.3s;
}

.btn:hover::after {
    left: 100%;
}


/* ========== MENU DETAILLE ========== */

.menu-detaille {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 10%;
    flex-wrap: wrap;
}

.menu-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item h3 {
    color: #1E3A8A;
    margin-bottom: 10px;
}


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

footer {
    background: #6a7aa5ff;
    color: #1E3A8A;
    padding: 30px 5%;
    margin-top: 50px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.NGT {
    text-decoration: none;
}

footer h3 {
    color: #FACC15;
    margin-bottom: 10px;
    text-align: left;
}

footer p {
    margin: 5px 0;
}

footer span {
    color: #16A34A;
    font-weight: bold;
}

/* CSS */

.footer {
    padding: 40px 20px;
    font-family: montserrat, sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo,
.footer-contact,
.footer-links,
.footer-departments {
    flex: 1 1 200px;
}

.footer h2,
.footer h3 {
    margin-bottom: 10px;
}

.footer p,
.footer li {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links ul,
.footer-departments ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.footer-logo {
    text-align: center;
    /* centre tout le contenu horizontalement */
}

.footer-logo img {
    width: 120px;
    /* adapte la taille */
    height: auto;
    display: inline-block;
}


/* Style général pour le lien email */

.footer a {
    color: #1E3A8A;
    /* couleur du texte */
    text-decoration: none;
    /* enlève le soulignement */
    font-weight: bold;
    /* met en gras */
    transition: color 0.3s, transform 0.3s;
    /* effet fluide */
}


/* Effet au survol */

.footer a:hover {
    color: #16A34A;
    /* change la couleur au survol */
    text-decoration: underline;
    /* ajoute un soulignement */
    transform: scale(1.05);
    /* léger zoom */
}


/**/


#mini-galerie {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px 0;
}

#mini-galerie .mini-photo img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}