/* ========================================= */
/*             POLICE POPPINS                */
/* ========================================= */

@font-face {

    font-family: 'Poppins';

    src: url('../fonts/Poppins-Regular.woff2') format('woff2');

    font-weight: 400;

    font-style: normal;

    font-display: swap;

}


@font-face {

    font-family: 'Poppins';

    src: url('../fonts/Poppins-Medium.woff2') format('woff2');

    font-weight: 500;

    font-style: normal;

    font-display: swap;

}


@font-face {

    font-family: 'Poppins';

    src: url('../fonts/Poppins-Bold.woff2') format('woff2');

    font-weight: 700;

    font-style: normal;

    font-display: swap;

}


/* ========================================= */
/*              STYLE GENERAL                */
/* ========================================= */

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

/* ========================================= */
/*          ESPACEMENT SECTIONS              */
/* ========================================= */

section {

    scroll-margin-top: 90px;

}
/* ========================================= */
/*                BODY                       */
/* ========================================= */

body {

    font-family: 'Poppins', sans-serif;

    background: #f5f5f5;

    color: #333;

    line-height: 1.6;

}


/* ========================================= */
/*                NAVBAR                     */
/* ========================================= */

.navbar {

    background: #2c3e50;

    padding: 12px 0;

    transition: 0.3s;

}


/* Logo */

.logo-text {

    color: white;

    font-size: 28px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: 0.3s;

}


.navbar-brand:hover .logo-text {

    color: #ffc107;

}


/* Liens */

.nav-link {

    position: relative;

    color: white !important;

    font-size: 17px;

    font-weight: 500;

    margin-left: 25px;

    padding: 10px 5px !important;

    transition: color 0.3s ease;

}


/* Petite ligne sous le lien */

.nav-link::after {

    content: "";

    position: absolute;

    left: 5px;

    bottom: 2px;

    width: 0;

    height: 2px;

    background: #ffc107;

    transition: width 0.3s ease;

}


.nav-link:hover {

    color: #ffc107 !important;

}


.nav-link:hover::after {

    width: calc(100% - 10px);

}


/* Lien actif */

.nav-link.active {

    color: #ffc107 !important;

}


.nav-link.active::after {

    width: calc(100% - 10px);

}


/* Bouton contact */

.nav-contact {

    display: inline-block;

    background: #ffc107;

    color: #2c3e50 !important;

    padding: 9px 22px;

    border-radius: 30px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s;

}


.nav-contact:hover {

    background: white;

    color: #2c3e50 !important;

    transform: translateY(-2px);

}


/* Mobile */

@media (max-width: 991px) {

    .nav-link {

        margin-left: 0;

        padding: 12px 0 !important;

    }


    .nav-contact {

        margin-top: 8px;

    }

}

/* ========================================= */
/*                BANNIÈRE                   */
/* ========================================= */

.banner {

    position: relative;

    height: 550px;

    width: 100%;

    background-image: url("/static/images/banner.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

}


/* Assombrissement de l'image */

.banner::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.35);

}


/* Contenu */

.banner-content {

    position: relative;

    z-index: 2;

    text-align: center;

    color: white;

    padding: 20px;

}


/* MGM */

.banner-content h1 {

    font-size: clamp(55px, 8vw, 90px);

    font-weight: 700;

    letter-spacing: 10px;

    margin: 0;

    text-shadow: 0 4px 15px rgba(0,0,0,0.4);

}


/* Sous-titre */

.banner-content p {

    font-size: clamp(18px, 3vw, 27px);

    margin-top: 20px;

    margin-bottom: 0;

    text-shadow: 0 3px 10px rgba(0,0,0,0.5);

}


/* Mobile */

@media (max-width: 768px) {

    .banner {

        height: 450px;

    }


    .banner-content h1 {

        letter-spacing: 6px;

    }

}

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

.section-title {

    position: relative;

    text-align: center;

    margin-top: 70px;

    margin-bottom: 55px;

    font-size: 42px;

    color: #2c3e50;

    font-weight: 700;

    letter-spacing: 0.5px;

}


/* Petite ligne jaune sous le titre */

.section-title::after {

    content: "";

    display: block;

    width: 55px;

    height: 4px;

    background: #ffc107;

    border-radius: 5px;

    margin: 18px auto 0;

}
/* ========================================= */
/*        TEXTES D'INTRODUCTION              */
/* ========================================= */

.section-intro {

    max-width: 800px;

    margin: -25px auto 50px;

    text-align: center;

    font-size: 18px;

    line-height: 1.8;

    color: #666;

}

/* ========================================= */
/*             PRESENTATION                  */
/* ========================================= */

.presentation {
    max-width: 1100px;

    margin: auto;

    text-align: center;

    line-height: 35px;

    font-size: 20px;
}


/* ========================================= */
/*               CARTES                      */
/* ========================================= */

./* ========================================= */
/*               CARTES                      */
/* ========================================= */

.card {

    border: none;

    border-radius: 18px;

    overflow: hidden;

    background: white;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

}


.card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 35px rgba(0,0,0,0.16);

}


.card img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;

}


.card:hover img {

    transform: scale(1.04);

}


.card-body {

    padding: 22px;

}


.card-body h5 {

    color: #2c3e50;

    font-size: 21px;

    font-weight: 700;

    margin: 0;

}

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


.gallery img {

    width: 100%;

    border-radius: 18px;

    display: block;

    box-shadow: 0 8px 25px rgba(0,0,0,0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

}


.gallery img:hover {

    transform: scale(1.025);

    box-shadow: 0 15px 30px rgba(0,0,0,0.18);

}


/* ========================================= */
/*               BOUTONS                     */
/* ========================================= */

.btn-mgm {
    background: #2c3e50;

    color: white;

    padding: 12px 35px;

    border-radius: 50px;

    text-decoration: none;

    transition: 0.3s;

    font-weight: bold;
}

.btn-mgm:hover {
    background: #34495e;

    color: #ffc107;
}


/* ========================================= */
/*          BARRE DE RECHERCHE               */
/* ========================================= */

.search-box {
    width: 70%;

    margin: auto;
}

.search-box input {
    border-radius: 40px;

    padding: 15px;
}

.search-box button {
    border-radius: 40px;
}


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

footer {
    background: #2c3e50;

    color: white;

    text-align: center;

    margin-top: 80px;

    padding: 40px;
}

footer a {
    color: #ffc107;

    text-decoration: none;
}

footer a:hover {
    color: white;
}


/* ========================================= */
/*          INFORMATIONS                     */
/* ========================================= */

.info-box {
    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* ========================================= */
/*             ANIMATIONS                    */
/* ========================================= */

.fade {
    animation: fade 1.2s;
}

@keyframes fade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* ========================================= */
/*             GALERIE LIGHTBOX              */
/* ========================================= */

.gallery-image {
    cursor: pointer;
}


/* Fenêtre */

.lightbox {

    display: none;

    position: fixed;

    z-index: 9999;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.9);

    justify-content: center;
    align-items: center;
}


/* Fenêtre ouverte */

.lightbox.active {

    display: flex;

}


/* Image */

.lightbox img {

    max-width: 85%;
    max-height: 85%;

    object-fit: contain;

    border-radius: 10px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

}


/* Bouton fermer */

.lightbox-close {

    position: absolute;

    top: 20px;
    right: 35px;

    color: white;

    font-size: 50px;

    font-weight: bold;

    cursor: pointer;

    z-index: 10000;

}


/* Flèches */

.lightbox-prev,
.lightbox-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.15);

    border: none;

    color: white;

    font-size: 40px;

    width: 60px;
    height: 70px;

    cursor: pointer;

    border-radius: 10px;

    transition: 0.3s;

}


.lightbox-prev:hover,
.lightbox-next:hover {

    background: rgba(255, 193, 7, 0.8);

    color: #2c3e50;

}


.lightbox-prev {

    left: 30px;

}


.lightbox-next {

    right: 30px;

}
/* ========================================= */
/*          PRESENTATION MGM                 */
/* ========================================= */

.presentation-mgm {

    display: flex;

    align-items: center;

    gap: 50px;

    max-width: 1100px;

    margin: auto;

}


/* Photo */

.presentation-image {

    flex: 1;

}

.presentation-image img {

    width: 100%;

    height: 400px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}


/* Texte */

.presentation-text {

    flex: 1;

}

.presentation-text h3 {

    color: #2c3e50;

    font-size: 32px;

    margin-bottom: 25px;

}

.presentation-text p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 20px;

}


/* ========================================= */
/*          VERSION MOBILE                   */
/* ========================================= */

@media (max-width: 768px) {

    .presentation-mgm {

        flex-direction: column;

        gap: 30px;

    }

    .presentation-image {

        width: 100%;

    }

    .presentation-image img {

        height: 300px;

    }

    .presentation-text {

        text-align: center;

    }

}
/* ========================================= */
/*        INFORMATIONS & CONTACT             */
/* ========================================= */

.contact-section {

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 40px;

    max-width: 1200px;

    margin: auto;

}


/* Informations */

.contact-info {

    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}


/* Chaque information */

.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid #eee;

}


.contact-item:last-child {

    border-bottom: none;

}


/* Icônes */

.contact-icon {

    font-size: 28px;

    min-width: 40px;

    text-align: center;

}


/* Titres */

.contact-item h4 {

    margin: 0 0 6px 0;

    color: #2c3e50;

    font-size: 20px;

}


/* Texte */

.contact-item p {

    margin: 0;

    color: #555;

    line-height: 1.6;

}


/* Carte */

.contact-map {

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}


/* ========================================= */
/*              VERSION MOBILE              */
/* ========================================= */

@media (max-width: 768px) {

    .contact-section {

        grid-template-columns: 1fr;

    }

    .contact-map iframe {

        height: 350px;

    }

}
/* ========================================= */
/*             BOUTON CONTACT                */
/* ========================================= */

.nav-contact {

    display: inline-block;

    background: #ffc107;

    color: #2c3e50;

    padding: 8px 22px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;

}


.nav-contact:hover {

    background: white;

    color: #2c3e50;

    transform: translateY(-2px);

}


@media (max-width: 991px) {

    .nav-contact {

        margin-left: 20px;

        margin-bottom: 10px;

    }

}
/* ========================================= */
/*          RÉSULTAT DE RECHERCHE            */
/* ========================================= */

.no-result {

    text-align: center;

    padding: 40px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}


.search-suggestion {

    margin-top: 30px;

    font-size: 18px;

    font-weight: bold;

    color: #2c3e50;

}


.search-suggestions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 20px;

}


.search-suggestions button {

    border: none;

    background: #2c3e50;

    color: white;

    padding: 10px 25px;

    border-radius: 30px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}


.search-suggestions button:hover {

    background: #ffc107;

    color: #2c3e50;

    transform: translateY(-2px);

}

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

.cookie-banner {

    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    background: white;

    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);

    padding: 25px;

    z-index: 10000;

    display: none;

}


.cookie-banner.active {

    display: block !important;

}


.cookie-content {

    max-width: 1100px;

    margin: auto;

}


.cookie-content h3 {

    color: #2c3e50;

    margin-bottom: 10px;

    font-size: 22px;

}


.cookie-content p {

    margin-bottom: 20px;

    line-height: 1.6;

}


.cookie-buttons {

    display: flex;

    justify-content: flex-end;

    gap: 15px;

}


.cookie-button {

    border: none;

    padding: 10px 25px;

    border-radius: 30px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}


/*
   Les deux boutons restent volontairement
   simples et facilement accessibles.
*/

.cookie-refuse {

    background: #2c3e50;

    color: white;

}


.cookie-accept {

    background: #ffc107;

    color: #2c3e50;

}


.cookie-refuse:hover,
.cookie-accept:hover {

    transform: translateY(-2px);

}


/* ========================================= */
/*          MAPS BLOQUÉ                      */
/* ========================================= */

.map-blocked {

    height: 450px;

    background: #e9ecef;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 30px;

}


.map-blocked-icon {

    font-size: 50px;

    margin-bottom: 15px;

}


.map-blocked h3 {

    color: #2c3e50;

    margin-bottom: 15px;

}


.map-blocked p {

    max-width: 500px;

    margin-bottom: 25px;

}


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

@media (max-width: 768px) {

    .cookie-banner {

        padding: 20px;

    }


    .cookie-buttons {

        flex-direction: column;

    }


    .cookie-button {

        width: 100%;

    }


    .map-blocked {

        height: 350px;

    }

}
```css
/* ========================================= */
/*        PAGE ATELIER & ÉQUIPE              */
/* ========================================= */

.atelier-header {

    text-align: center;

    padding: 70px 20px 50px;

}


.atelier-header p {

    max-width: 800px;

    margin: 0 auto;

    font-size: 20px;

    line-height: 1.8;

}


.atelier-section {

    padding: 80px 0;

}


.atelier-section-alt {

    background: white;

}


.atelier-image {

    width: 100%;

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}


.atelier-image img {

    width: 100%;

    height: 430px;

    object-fit: cover;

    display: block;

    transition: 0.5s;

}


.atelier-image:hover img {

    transform: scale(1.04);

}


.atelier-text {

    padding: 20px;

}


.atelier-number {

    display: inline-block;

    font-size: 18px;

    font-weight: bold;

    color: #ffc107;

    margin-bottom: 15px;

}


.atelier-text h2 {

    color: #2c3e50;

    font-size: 36px;

    font-weight: bold;

    margin-bottom: 25px;

}


.atelier-text p {

    font-size: 18px;

    line-height: 1.8;

    color: #555;

}


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

@media (max-width: 768px) {

    .atelier-section {

        padding: 50px 0;

    }


    .atelier-image img {

        height: 300px;

    }


    .atelier-text {

        padding: 10px;

    }


    .atelier-text h2 {

        font-size: 28px;

    }


    .atelier-text p {

        font-size: 16px;

    }

}

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

.site-footer {

    background: #2c3e50;

    color: white;

    margin-top: 100px;

    padding: 65px 0 25px;

}


/* ====================== */
/* IDENTITÉ MGM */
/* ====================== */

.footer-logo {

    font-size: 38px;

    font-weight: 700;

    letter-spacing: 5px;

    color: white;

    margin-bottom: 15px;

}


.footer-brand p {

    max-width: 420px;

    color: #d8dde1;

    line-height: 1.8;

    margin: 0;

}


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

.site-footer h3 {

    color: white;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 22px;

}


/* ====================== */
/* NAVIGATION */
/* ====================== */

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-links li {

    margin-bottom: 12px;

}


.footer-links a {

    color: #d8dde1;

    text-decoration: none;

    transition: 0.3s;

}


.footer-links a:hover {

    color: #ffc107;

    padding-left: 5px;

}


/* ====================== */
/* INFORMATIONS */
/* ====================== */

.footer-info {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-info li {

    display: flex;

    gap: 12px;

    margin-bottom: 15px;

    color: #d8dde1;

    line-height: 1.6;

}


.footer-info li span:first-child {

    min-width: 25px;

}


/* ====================== */
/* SÉPARATION */
/* ====================== */

.footer-separator {

    height: 1px;

    background: rgba(255,255,255,0.15);

    margin: 45px 0 25px;

}


/* ====================== */
/* BAS */
/* ====================== */

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}


.footer-bottom p {

    margin: 0;

    color: #bfc6cb;

    font-size: 14px;

}


.footer-bottom-links {

    display: flex;

    gap: 25px;

}


.footer-bottom-links a {

    color: #bfc6cb;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;

}


.footer-bottom-links a:hover {

    color: #ffc107;

}


/* ====================== */
/* CNIL */
/* ====================== */

.footer-cnil {

    text-align: center;

    margin-top: 25px;

}


.footer-cnil p {

    margin: 0;

    color: #9fa8ad;

    font-size: 13px;

}


.footer-cnil a {

    color: #ffc107;

    text-decoration: none;

}


.footer-cnil a:hover {

    color: white;

}


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

@media (max-width: 768px) {

    .site-footer {

        padding: 50px 0 25px;

    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }


    .footer-bottom-links {

        flex-direction: column;

        gap: 10px;

        align-items: center;

    }

}
/* ========================================= */
/*          PRÉSENTATION ACCUEIL              */
/* ========================================= */

.presentation {

    max-width: 950px;

    margin: 0 auto;

    text-align: center;

    line-height: 1.9;

    font-size: 18px;

    color: #555;

}


.presentation p {

    margin-bottom: 25px;

}


.presentation p:last-child {

    margin-bottom: 0;

}
/* =====================================================
   PAGE NOS PROJETS
   ===================================================== */

.project-section {
    padding: 40px 0;
}


/* Numéro du projet */

.project-number {
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.7;
}


/* Titres des projets */

.project-section h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}


/* Texte d'introduction */

.project-section > .text-center p:not(.project-number) {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}


/* AVANT / APRÈS */

.project-section h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
}


/* Images des projets */

.project-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;

    transition: transform 0.4s ease,
                box-shadow 0.4s ease;
}


/* Effet au survol */

.project-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}


/* Grande image du projet 2 */

.project-main-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease,
                box-shadow 0.5s ease;
}


.project-main-image:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}


/* Texte final des projets */

.project-description {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}


.project-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}


/* Séparation entre les projets */

.project-section + hr {
    opacity: 0.15;
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}


/* =====================================================
   VERSION MOBILE
   ===================================================== */

@media (max-width: 768px) {

    .project-section {
        padding: 20px 0;
    }

    .project-section h2 {
        font-size: 1.8rem;
    }

    .project-image {
        height: 300px;
    }

    .project-main-image {
        height: 400px;
    }

}