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

body{
    background:#000000;
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
}

/* EN-TÊTE */

header{
    min-height:120px;
    padding:25px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    border-bottom:1px solid #333333;
}

.identite{
    display:flex;
    flex-direction:column;
    text-decoration:none;
}

.nom{
    color:#ffffff;
    font-size:32px;
    font-weight:300;
    letter-spacing:1px;
}

.metiers{
    margin-top:4px;
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
}

nav{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    flex-wrap:wrap;
    gap:22px;
}

nav a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

nav a:hover,
nav a.actif{
    color:#f4b52c;
}

/* PAGE D'ACCUEIL */

.accueil{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:60px 0;
}

.presentation{
    min-height:580px;
    display:grid;
    grid-template-columns:380px 1fr;
    align-items:center;
    gap:70px;
    padding:60px;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(
            rgba(35, 36, 40, 0.85),
            rgba(35, 36, 40, 0.90)
        ),
        url("images/fond.jpg");
    background-size:cover;
    background-position:center;
}

/* Décoration jaune */

.presentation::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:#f4b52c;
}

/* PORTRAIT */

.portrait{
    width:340px;
    height:460px;
    padding:7px;
    border:2px solid #f4b52c;
    border-radius:180px 180px 20px 20px;
}

.portrait img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    border-radius:170px 170px 14px 14px;
    filter:grayscale(15%);
}

/* TEXTE */

.texte-accueil{
    max-width:750px;
}

.introduction{
    color:#f4b52c;
    font-size:15px;
    font-weight:bold;
    letter-spacing:2px;
    margin-bottom:20px;
}

.texte-accueil h1{
    font-size:68px;
    font-weight:300;
    line-height:1.05;
    margin-bottom:30px;
}

.texte-accueil h1 span{
    color:#f4b52c;
}

.description{
    max-width:700px;
    color:#e2e2e2;
    font-size:18px;
    line-height:1.7;
    margin-bottom:35px;
}

/* BOUTONS */

.boutons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.bouton{
    display:inline-block;
    padding:15px 24px;
    border:1px solid #f4b52c;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.bouton-jaune{
    background:#f4b52c;
    color:#111111;
}

.bouton-jaune:hover{
    background:#ffffff;
    border-color:#ffffff;
}

.bouton-transparent{
    background:transparent;
    color:#ffffff;
}

.bouton-transparent:hover{
    background:#f4b52c;
    color:#111111;
}

/* DOMAINES */

/* DOMAINES AVEC IMAGES */

.domaines{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    margin-top:35px;
}

.domaine{
    min-height:320px;
    position:relative;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    color:#ffffff;
    text-decoration:none;
    background-size:cover;
    background-position:center;
    border:1px solid #333333;
    isolation:isolate;
}

/* Voile sombre sur les images */

.domaine::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.65) 55%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index:-1;
    transition:0.4s;
}

/* Bordure jaune au survol */

.domaine::after{
    content:"";
    position:absolute;
    inset:0;
    border:0 solid #f4b52c;
    transition:0.3s;
}

.domaine-contenu{
    width:100%;
    position:relative;
    z-index:2;
    padding:28px;
    transition:0.4s;
}

.domaine span{
    display:inline-block;
    margin-bottom:55px;
    color:#f4b52c;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.domaine h2{
    margin-bottom:12px;
    color:#ffffff;
    font-size:24px;
}

.domaine p{
    color:#d3d3d3;
    font-size:15px;
    line-height:1.6;
}

/* Images de fond */

.domaine-sfx{
    background-image:url("images/domaine-sfx.jpg");
}

.domaine-video{
    background-image:url("images/domaine-video.jpeg");
}

.domaine-photo{
    background-image:url("images/domaine-photo.jpg");
}

.domaine-creation{
    background-image:url("images/domaine-creation.png");
}

/* Effets au survol */

.domaine:hover::before{
    background:linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.10) 100%
    );
}

.domaine:hover::after{
    border-width:4px;
}

.domaine:hover .domaine-contenu{
    transform:translateY(-8px);
}

/* TABLETTES */

@media (max-width:1000px){

    .domaines{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* TELEPHONES */

@media (max-width:600px){

    .domaines{
        grid-template-columns:1fr;
    }

    .domaine{
        min-height:280px;
    }
}

/* PIED DE PAGE */

footer{
    padding:30px 5%;
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-top:1px solid #333333;
    color:#999999;
    font-size:13px;
}

/* TABLETTES */

@media (max-width:1000px){

    header{
        flex-direction:column;
        text-align:center;
    }

    nav{
        justify-content:center;
    }

    .presentation{
        grid-template-columns:1fr;
        text-align:center;
    }

    .portrait{
        width:280px;
        height:370px;
        margin:0 auto;
    }

    .texte-accueil{
        margin:0 auto;
    }

    .texte-accueil h1{
        font-size:52px;
    }

    .boutons{
        justify-content:center;
    }

    .domaines{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* TÉLÉPHONES */

@media (max-width:600px){

    .nom{
        font-size:25px;
    }

    .metiers{
        font-size:11px;
    }

    nav{
        gap:13px;
    }

    nav a{
        font-size:13px;
    }

    .accueil{
        width:94%;
        padding:25px 0;
    }

    .presentation{
        padding:40px 20px;
        gap:35px;
    }

    .portrait{
        width:220px;
        height:290px;
    }

    .texte-accueil h1{
        font-size:38px;
    }

    .description{
        font-size:16px;
    }

    .domaines{
        grid-template-columns:1fr;
    }

    footer{
        flex-direction:column;
        text-align:center;
    }
}

/* ==================================================
   FENETRES DES DOMAINES
   SFX - VIDEO - PHOTO - CREATION VISUELLE
================================================== */

.modal-domaine{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.90);
    z-index:9999;
    justify-content:center;
    align-items:center;
    padding:30px;
}

/* Classe ajoutée par le JavaScript */

.modal-domaine.ouverte{
    display:flex;
}


/* FENETRE */

.modal-contenu{
    position:relative;
    display:grid;
    grid-template-columns:40% 60%;
    width:100%;
    max-width:1000px;
    max-height:85vh;
    overflow-y:auto;
    background:#232428;
    border:1px solid #444444;
    border-left:6px solid #f4b52c;
}


/* IMAGE */

.modal-image{
    min-height:550px;
    background:#111111;
}

.modal-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}


/* TEXTE */

.modal-texte{
    padding:45px;
}

.modal-texte .introduction{
    margin-bottom:15px;
    color:#f4b52c;
    font-size:12px;
    font-weight:bold;
    letter-spacing:2px;
}

.modal-texte h2{
    margin-bottom:25px;
    color:#ffffff;
    font-size:40px;
    font-weight:300;
}

.modal-texte h2 span{
    color:#f4b52c;
}

.modal-texte p{
    margin-bottom:16px;
    color:#c8c8c8;
    font-size:16px;
    line-height:1.7;
}

.modal-texte h3{
    margin-top:30px;
    margin-bottom:18px;
    color:#ffffff;
    font-size:21px;
    font-weight:400;
}


/* LISTES */

.liste-modal{
    padding-left:20px;
    color:#c8c8c8;
}

.liste-modal li{
    margin-bottom:8px;
    font-size:15px;
    line-height:1.5;
}

.liste-modal li::marker{
    color:#f4b52c;
}


/* BOUTON X POUR FERMER */

.fermer-modal{
    position:absolute;
    top:15px;
    right:20px;
    z-index:10;
    width:45px;
    height:45px;
    padding:0;
    color:#ffffff;
    background:rgba(0,0,0,0.65);
    border:1px solid #555555;
    font-size:30px;
    line-height:40px;
    cursor:pointer;
    transition:0.3s;
}

.fermer-modal:hover{
    color:#111111;
    background:#f4b52c;
    border-color:#f4b52c;
}


/* ==================================================
   TABLETTE
================================================== */

@media (max-width:900px){

    .modal-contenu{
        grid-template-columns:1fr;
    }

    .modal-image{
        min-height:300px;
        height:300px;
    }

    .modal-texte{
        padding:35px;
    }

}


/* ==================================================
   TELEPHONE
================================================== */

@media (max-width:600px){

    .modal-domaine{
        padding:15px;
    }

    .modal-contenu{
        max-height:90vh;
        border-left:4px solid #f4b52c;
    }

    .modal-image{
        min-height:220px;
        height:220px;
    }

    .modal-texte{
        padding:30px 22px;
    }

    .modal-texte h2{
        font-size:30px;
    }

    .modal-texte p{
        font-size:15px;
    }

    .fermer-modal{
        top:10px;
        right:10px;
    }

}

/* PAGE A PROPOS */

.page-a-propos{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:60px 0;
}

.entete-page{
    margin-bottom:45px;
    padding-bottom:30px;
    border-bottom:1px solid #333333;
}

.entete-page h1{
    margin-top:12px;
    color:#ffffff;
    font-size:58px;
    font-weight:300;
}

.entete-page h1 span{
    color:#f4b52c;
}

/* PRESENTATION */

.presentation-a-propos{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
    padding:55px;
    background:#232428;
    border-left:6px solid #f4b52c;
}

.photo-a-propos{
    width:100%;
    height:560px;
    overflow:hidden;
    border:1px solid #4b4b4b;
}

.photo-a-propos img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    filter:grayscale(15%);
    transition:0.5s;
}

.photo-a-propos:hover img{
    transform:scale(1.04);
    filter:grayscale(0);
}

.texte-a-propos h2{
    margin-bottom:28px;
    color:#ffffff;
    font-size:42px;
    font-weight:300;
    line-height:1.2;
}

.texte-a-propos h2 span{
    color:#f4b52c;
}

.texte-a-propos p{
    max-width:760px;
    margin-bottom:18px;
    color:#d0d0d0;
    font-size:17px;
    line-height:1.8;
}

.texte-a-propos .bouton{
    margin-top:15px;
}

/* VALEURS */

.valeurs-a-propos{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    margin-top:35px;
    border-top:1px solid #333333;
    border-left:1px solid #333333;
}

.valeur{
    min-height:230px;
    padding:30px;
    border-right:1px solid #333333;
    border-bottom:1px solid #333333;
    transition:0.3s;
}

.valeur span{
    color:#f4b52c;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.valeur h3{
    margin:38px 0 14px;
    color:#ffffff;
    font-size:24px;
}

.valeur p{
    color:#aaaaaa;
    font-size:15px;
    line-height:1.7;
}

.valeur:hover{
    background:#f4b52c;
    transform:translateY(-6px);
}

.valeur:hover span,
.valeur:hover h3,
.valeur:hover p{
    color:#111111;
}

/* TABLETTES */

@media (max-width:1000px){

    .presentation-a-propos{
        grid-template-columns:1fr;
        padding:40px;
    }

    .photo-a-propos{
        max-width:500px;
        height:550px;
        margin:0 auto;
    }

    .texte-a-propos{
        text-align:center;
    }

    .texte-a-propos p{
        margin-left:auto;
        margin-right:auto;
    }

    .valeurs-a-propos{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* TELEPHONES */

@media (max-width:600px){

    .page-a-propos{
        width:94%;
        padding:30px 0;
    }

    .entete-page h1{
        font-size:40px;
    }

    .presentation-a-propos{
        padding:25px 20px;
        gap:35px;
    }

    .photo-a-propos{
        height:420px;
    }

    .texte-a-propos h2{
        font-size:32px;
    }

    .texte-a-propos p{
        font-size:16px;
    }

    .valeurs-a-propos{
        grid-template-columns:1fr;
    }
}

/* ==================================================
   PAGE PORTFOLIO
================================================== */

.page-portfolio{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:60px 0;
}

.description-portfolio{
    max-width:750px;
    margin-top:20px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.7;
}


/* ==================================================
   GRILLE
================================================== */

.grille-portfolio{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}


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

.carte-portfolio{
    min-height:480px;
    position:relative;
    display:flex;
    align-items:flex-end;
    overflow:hidden;

    color:#ffffff;
    text-decoration:none;

    border:1px solid #333333;
    background:#222222;

    transition:0.3s;
}

.carte-portfolio img{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:transform 0.6s;
}


/* Voile sombre sur l'image */

.carte-portfolio::after{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.96) 0%,
        rgba(0,0,0,0.70) 45%,
        rgba(0,0,0,0.15) 100%
    );

    transition:0.4s;
}


/* ==================================================
   TEXTE DES CARTES
================================================== */

.contenu-portfolio{
    width:100%;

    position:relative;
    z-index:2;

    padding:35px;

    transition:transform 0.4s;
}

.numero-portfolio{
    display:block;

    margin-bottom:70px;

    color:#f4b52c;

    font-size:14px;
    font-weight:bold;

    letter-spacing:2px;
}

.contenu-portfolio h2{
    margin-bottom:14px;

    color:#ffffff;

    font-size:32px;
    font-weight:400;
}

.contenu-portfolio p{
    max-width:520px;

    margin-bottom:22px;

    color:#d0d0d0;

    font-size:16px;
    line-height:1.7;
}

.lien-portfolio{
    color:#f4b52c;

    font-size:14px;
    font-weight:bold;

    text-transform:uppercase;
    letter-spacing:1px;
}


/* ==================================================
   SURVOL DES CARTES
================================================== */

.carte-portfolio:hover{
    border-color:#f4b52c;
}

.carte-portfolio:hover img{
    transform:scale(1.07);
}

.carte-portfolio:hover::after{
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.94) 0%,
        rgba(0,0,0,0.50) 55%,
        rgba(0,0,0,0.08) 100%
    );
}

.carte-portfolio:hover .contenu-portfolio{
    transform:translateY(-8px);
}


/* ==================================================
   TABLETTE - CARTES
================================================== */

@media (max-width:900px){

    .grille-portfolio{
        grid-template-columns:1fr;
    }

    .carte-portfolio{
        min-height:430px;
    }

}


/* ==================================================
   TELEPHONE - CARTES
================================================== */

@media (max-width:600px){

    .page-portfolio{
        width:94%;
        padding:30px 0;
    }

    .description-portfolio{
        font-size:16px;
    }

    .grille-portfolio{
        gap:20px;
    }

    .carte-portfolio{
        min-height:380px;
    }

    .contenu-portfolio{
        padding:25px;
    }

    .numero-portfolio{
        margin-bottom:45px;
    }

    .contenu-portfolio h2{
        font-size:27px;
    }

    .contenu-portfolio p{
        font-size:15px;
    }

}


/* ==================================================
   FENETRES DU PORTFOLIO
================================================== */

.modal-portfolio{
    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    padding:30px;

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

    z-index:9999;

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


/* Classe ajoutée par JavaScript */

.modal-portfolio.ouverte{
    display:flex;
}


/* ==================================================
   CONTENU DE LA FENETRE
================================================== */

.modal-portfolio-contenu{
    position:relative;

    display:grid;

    /* vidéo / image à gauche - texte à droite */
    grid-template-columns:55% 45%;

    width:100%;
    max-width:1100px;

    max-height:85vh;

    overflow-y:auto;

    background:#232428;

    border:1px solid #444444;
    border-left:6px solid #f4b52c;
}


/* ==================================================
   IMAGE DES AUTRES POPUPS
================================================== */

.modal-portfolio-image{
    min-width:0;
    min-height:560px;

    overflow:hidden;

    background:#111111;
}

.modal-portfolio-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;

    transition:0.5s;
}

.modal-portfolio-image:hover img{
    transform:scale(1.03);
}


/* ==================================================
   VIDEO SFX
================================================== */

.modal-portfolio-video{
    min-width:0;

    width:100%;
    height:100%;

    min-height:560px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background:#000000;
}

.modal-portfolio-video video{
    width:100%;
    height:100%;

    min-width:0;
    max-width:100%;

    display:block;

    object-fit:contain;

    background:#000000;
}


/* ==================================================
   PARTIE TEXTE
================================================== */

.modal-portfolio-texte{
    padding:50px;
}


/* Petit titre jaune */

.modal-portfolio-texte .introduction{
    margin-bottom:15px;

    color:#f4b52c;

    font-size:12px;
    font-weight:bold;

    letter-spacing:2px;
}


/* Grand titre */

.modal-portfolio-texte h2{
    margin-bottom:25px;

    color:#ffffff;

    font-size:40px;
    font-weight:300;

    line-height:1.2;
}

.modal-portfolio-texte h2 span{
    color:#f4b52c;
}


/* Paragraphes */

.modal-portfolio-texte p{
    margin-bottom:18px;

    color:#c8c8c8;

    font-size:16px;
    line-height:1.7;
}


/* Sous-titres */

.modal-portfolio-texte h3{
    margin-top:32px;
    margin-bottom:18px;

    padding-top:20px;

    color:#ffffff;

    font-size:21px;
    font-weight:400;

    border-top:1px solid #444444;
}


/* ==================================================
   LISTES
================================================== */

.liste-modal-portfolio{
    padding-left:20px;

    color:#c8c8c8;
}

.liste-modal-portfolio li{
    margin-bottom:9px;

    font-size:15px;
    line-height:1.5;
}

.liste-modal-portfolio li::marker{
    color:#f4b52c;
}


/* ==================================================
   BOUTON POUR FERMER
================================================== */

.fermer-modal-portfolio{
    position:absolute;

    top:15px;
    right:15px;

    z-index:20;

    width:45px;
    height:45px;

    padding:0;

    color:#ffffff;

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

    border:1px solid #555555;

    font-size:30px;
    line-height:40px;

    cursor:pointer;

    transition:0.3s;
}

.fermer-modal-portfolio:hover{
    color:#111111;

    background:#f4b52c;

    border-color:#f4b52c;
}


/* ==================================================
   SCROLLBAR
================================================== */

.modal-portfolio-contenu::-webkit-scrollbar{
    width:8px;
}

.modal-portfolio-contenu::-webkit-scrollbar-track{
    background:#171717;
}

.modal-portfolio-contenu::-webkit-scrollbar-thumb{
    background:#555555;
}

.modal-portfolio-contenu::-webkit-scrollbar-thumb:hover{
    background:#f4b52c;
}


/* ==================================================
   TABLETTE - FENETRES
================================================== */

@media (max-width:900px){

    .modal-portfolio-contenu{
        grid-template-columns:1fr;

        max-width:750px;
    }


    .modal-portfolio-image{
        min-height:320px;
        height:320px;
    }


    .modal-portfolio-video{
        width:100%;

        min-height:0;
        height:auto;

        aspect-ratio:16 / 9;
    }


    .modal-portfolio-video video{
        width:100%;
        height:100%;

        object-fit:contain;
    }


    .modal-portfolio-texte{
        padding:40px;
    }

}


/* ==================================================
   TELEPHONE - FENETRES
================================================== */

@media (max-width:600px){

    .modal-portfolio{
        padding:15px;
    }


    .modal-portfolio-contenu{
        max-height:90vh;

        border-left:4px solid #f4b52c;
    }


    .modal-portfolio-image{
        min-height:220px;
        height:220px;
    }


    .modal-portfolio-video{
        width:100%;

        min-height:0;
        height:auto;

        aspect-ratio:16 / 9;
    }


    .modal-portfolio-video video{
        width:100%;
        height:100%;

        object-fit:contain;
    }


    .modal-portfolio-texte{
        padding:30px 22px;
    }


    .modal-portfolio-texte h2{
        font-size:30px;
    }


    .modal-portfolio-texte p{
        font-size:15px;
    }


    .modal-portfolio-texte h3{
        font-size:19px;
    }


    .liste-modal-portfolio li{
        font-size:14px;
    }


    .fermer-modal-portfolio{
        top:10px;
        right:10px;
    }

}
/* ==================================================
   PAGE PRODUCTIONS
================================================== */

.page-productions{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:60px 0;
}

.description-productions{
    max-width:760px;
    margin-top:20px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.7;
}


/* ==================================================
   LISTE DES PRODUCTIONS
================================================== */

.liste-productions{
    display:flex;
    flex-direction:column;
    gap:35px;
}


/* ==================================================
   UNE PRODUCTION
================================================== */

.production{
    min-height:430px;

    display:grid;
    grid-template-columns:45% 55%;

    overflow:hidden;

    background:#232428;

    border:1px solid #333333;
    border-left:6px solid #f4b52c;
}


/* Une production sur deux est inversée */

.production-inversee{
    grid-template-columns:55% 45%;

    border-left:1px solid #333333;
    border-right:6px solid #f4b52c;
}


/* La vidéo passe à droite */

.production-inversee .video-production{
    order:2;
}

.production-inversee .contenu-production{
    order:1;
}


/* ==================================================
   VIDEO YOUTUBE DES PRODUCTIONS
================================================== */

.video-production{
    width:100%;
    min-height:430px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background:#111111;
}


/* Le lecteur YouTube prend toute la zone */

.video-production iframe{
    width:100%;
    height:100%;
    min-height:430px;

    display:block;

    border:none;
}


/* ==================================================
   CONTENU DES PRODUCTIONS
================================================== */

.contenu-production{
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:55px;
}


.categorie-production{
    margin-bottom:18px;

    color:#f4b52c;

    font-size:13px;
    font-weight:bold;

    letter-spacing:2px;
}


.contenu-production h2{
    margin-bottom:25px;

    color:#ffffff;

    font-size:38px;
    font-weight:300;
}


.contenu-production p{
    max-width:650px;

    margin-bottom:16px;

    color:#cfcfcf;

    font-size:16px;
    line-height:1.8;
}


.contenu-production strong{
    color:#ffffff;
}


.poste-production{
    padding-bottom:16px;

    border-bottom:1px solid #444444;
}


.societe-production{
    margin-top:8px;
}


/* ==================================================
   PETIT EFFET AU SURVOL
================================================== */

.production{
    transition:0.3s;
}

.production:hover{
    border-color:#f4b52c;
}


/* ==================================================
   TABLETTES
================================================== */

@media (max-width:900px){

    .production,
    .production-inversee{
        grid-template-columns:1fr;

        border-left:5px solid #f4b52c;
        border-right:1px solid #333333;
    }


    .production-inversee .video-production,
    .production-inversee .contenu-production{
        order:initial;
    }


    .video-production{
        min-height:400px;
    }


    .video-production iframe{
        min-height:400px;
    }


    .contenu-production{
        padding:40px;
    }

}


/* ==================================================
   TELEPHONES
================================================== */

@media (max-width:600px){

    .page-productions{
        width:94%;
        padding:30px 0;
    }


    .description-productions{
        font-size:16px;
    }


    .liste-productions{
        gap:22px;
    }


    .video-production{
        min-height:230px;
    }


    .video-production iframe{
        min-height:230px;
    }


    .contenu-production{
        padding:28px 22px;
    }


    .contenu-production h2{
        font-size:29px;
    }


    .contenu-production p{
        font-size:15px;
    }

}


/* ==================================================
   REALISATIONS PERSONNELLES
================================================== */

.entete-realisations{
    margin-top:80px;
}


/* ==================================================
   GRILLE
================================================== */

.grille-realisations{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
}


/* ==================================================
   UNE REALISATION
================================================== */

.realisation{
    position:relative;

    overflow:hidden;

    background:#232428;

    border:1px solid #333333;
    border-top:4px solid #f4b52c;

    transition:0.3s;
}


.realisation:hover{
    border-color:#f4b52c;

    transform:translateY(-5px);
}


/* ==================================================
   VIDEO DES REALISATIONS
================================================== */

.video-realisation{
    width:100%;

    position:relative;

    background:#111111;

    aspect-ratio:16 / 9;

    overflow:hidden;
}


.video-realisation iframe{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    border:none;
}


/* ==================================================
   TEXTE SOUS LA VIDEO
================================================== */

.realisation-video .contenu-realisation{
    position:relative;

    left:auto;
    right:auto;
    bottom:auto;

    padding:25px;

    background:#232428;
}


.realisation-video .contenu-realisation p{
    margin-bottom:8px;

    color:#f4b52c;

    font-size:12px;
    font-weight:bold;

    letter-spacing:1.5px;
}


.realisation-video .contenu-realisation h2{
    color:#ffffff;

    font-size:25px;
    font-weight:400;
}


/* On enlève l'ancien voile noir qui était utilisé
   lorsque les réalisations étaient des images */

.realisation-video::after{
    display:none;
}


/* ==================================================
   TABLETTES - REALISATIONS
================================================== */

@media (max-width:1000px){

    .grille-realisations{
        grid-template-columns:repeat(2, 1fr);
    }

}


/* ==================================================
   TELEPHONES - REALISATIONS
================================================== */

@media (max-width:600px){

    .entete-realisations{
        margin-top:55px;
    }


    .grille-realisations{
        grid-template-columns:1fr;
        gap:20px;
    }


    .realisation-video .contenu-realisation{
        padding:20px;
    }


    .realisation-video .contenu-realisation h2{
        font-size:22px;
    }

}

/* PAGE PARCOURS */

.page-parcours{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:60px 0;
}

.description-parcours{
    max-width:800px;
    margin-top:20px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.7;
}

/* BLOCS */

.bloc-parcours{
    margin-top:65px;
}

.titre-section-parcours{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:45px;
    padding-bottom:20px;
    border-bottom:1px solid #333333;
}

.titre-section-parcours p{
    color:#f4b52c;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.titre-section-parcours h2{
    color:#ffffff;
    font-size:36px;
    font-weight:300;
}

/* CHRONOLOGIE */

.chronologie{
    position:relative;
}

.chronologie::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:210px;
    width:2px;
    background:#3b3b3b;
}

.etape-parcours{
    display:grid;
    grid-template-columns:180px 60px 1fr;
    margin-bottom:35px;
}

.date-parcours{
    padding-top:30px;
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
    line-height:1.5;
    text-align:right;
    letter-spacing:1px;
}

.point-parcours{
    width:18px;
    height:18px;
    margin:31px auto 0 auto;
    position:relative;
    z-index:2;
    background:#f4b52c;
    border:5px solid #000000;
    border-radius:50%;
    box-shadow:0 0 0 2px #f4b52c;
}

.contenu-etape{
    padding:30px 35px;
    background:#232428;
    border:1px solid #333333;
    border-left:5px solid #f4b52c;
    transition:0.3s;
}

.contenu-etape:hover{
    transform:translateX(7px);
    border-color:#f4b52c;
}

.categorie-parcours{
    margin-bottom:12px;
    color:#f4b52c;
    font-size:12px;
    font-weight:bold;
    letter-spacing:1.5px;
}

.contenu-etape h3{
    margin-bottom:8px;
    color:#ffffff;
    font-size:27px;
    font-weight:400;
}

.entreprise-parcours{
    margin-bottom:20px;
    color:#ffffff !important;
    font-size:15px !important;
    font-weight:bold;
}

.contenu-etape p{
    max-width:850px;
    margin-bottom:12px;
    color:#c8c8c8;
    font-size:16px;
    line-height:1.7;
}

/* FORMATION */

.bloc-formation{
    margin-top:90px;
}

.grille-formation{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.carte-formation{
    min-height:310px;
    padding:32px;
    background:#232428;
    border:1px solid #333333;
    border-top:5px solid #f4b52c;
    transition:0.3s;
}

.carte-formation:hover{
    transform:translateY(-7px);
    border-color:#f4b52c;
}

.annee-formation{
    margin-bottom:35px;
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
    letter-spacing:1.5px;
}

.carte-formation h3{
    margin-bottom:10px;
    color:#ffffff;
    font-size:25px;
    font-weight:400;
}

.ecole-formation{
    margin-bottom:20px !important;
    color:#ffffff !important;
    font-weight:bold;
}

.carte-formation p{
    color:#bdbdbd;
    font-size:15px;
    line-height:1.7;
}

/* COMPÉTENCES */

.competences-parcours{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    border-top:1px solid #333333;
    border-left:1px solid #333333;
}

.competence-parcours{
    min-height:230px;
    padding:30px;
    border-right:1px solid #333333;
    border-bottom:1px solid #333333;
    transition:0.3s;
}

.competence-parcours span{
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
}

.competence-parcours h3{
    margin:35px 0 15px;
    color:#ffffff;
    font-size:22px;
}

.competence-parcours p{
    color:#aaaaaa;
    font-size:15px;
    line-height:1.7;
}

.competence-parcours:hover{
    background:#f4b52c;
    transform:translateY(-5px);
}

.competence-parcours:hover span,
.competence-parcours:hover h3,
.competence-parcours:hover p{
    color:#111111;
}

/* TABLETTES */

@media (max-width:1000px){

    .chronologie::before{
        left:20px;
    }

    .etape-parcours{
        grid-template-columns:40px 1fr;
    }

    .date-parcours{
        grid-column:2;
        padding:0 0 12px 0;
        text-align:left;
    }

    .point-parcours{
        grid-column:1;
        grid-row:1 / span 2;
        margin-top:4px;
    }

    .contenu-etape{
        grid-column:2;
    }

    .grille-formation{
        grid-template-columns:1fr;
    }

    .competences-parcours{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* TÉLÉPHONES */

@media (max-width:600px){

    .page-parcours{
        width:94%;
        padding:30px 0;
    }

    .description-parcours{
        font-size:16px;
    }

    .titre-section-parcours h2{
        font-size:28px;
    }

    .chronologie::before{
        display:none;
    }

    .etape-parcours{
        display:block;
    }

    .point-parcours{
        display:none;
    }

    .date-parcours{
        padding:0 0 10px;
        text-align:left;
    }

    .contenu-etape{
        padding:25px 20px;
    }

    .contenu-etape h3{
        font-size:23px;
    }

    .contenu-etape p{
        font-size:15px;
    }

    .competences-parcours{
        grid-template-columns:1fr;
    }
}
/* LISTES DE MISSIONS DU PARCOURS */

.missions-parcours{
    margin-top:18px;
    padding-left:20px;
    color:#c8c8c8;
}

.missions-parcours li{
    margin-bottom:7px;
    font-size:16px;
    line-height:1.5;
}

.missions-parcours li::marker{
    color:#f4b52c;
}

/* ==================================================
   PAGE PARCOURS
================================================== */

.page-parcours{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:60px 0;
}

.description-parcours{
    max-width:800px;
    margin-top:20px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.7;
}

/* ==================================================
   TITRES DES SECTIONS
================================================== */

.bloc-parcours{
    margin-top:70px;
}

.titre-section-parcours{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:45px;
    padding-bottom:20px;
    border-bottom:1px solid #333333;
}

.titre-section-parcours p{
    color:#f4b52c;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.titre-section-parcours h2{
    color:#ffffff;
    font-size:36px;
    font-weight:300;
}

/* ==================================================
   CHRONOLOGIE
================================================== */

.chronologie{
    position:relative;
}

.chronologie::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:210px;
    width:2px;
    background:#3b3b3b;
}

.etape-parcours{
    display:grid;
    grid-template-columns:180px 60px 1fr;
    margin-bottom:35px;
}

.date-parcours{
    padding-top:30px;
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
    line-height:1.5;
    text-align:right;
    letter-spacing:1px;
}

.point-parcours{
    width:18px;
    height:18px;
    margin:31px auto 0 auto;
    position:relative;
    z-index:2;
    background:#f4b52c;
    border:5px solid #000000;
    border-radius:50%;
    box-shadow:0 0 0 2px #f4b52c;
}

.contenu-etape{
    padding:30px 35px;
    background:#232428;
    border:1px solid #333333;
    border-left:5px solid #f4b52c;
    transition:0.3s;
}

.contenu-etape:hover{
    transform:translateX(7px);
    border-color:#f4b52c;
}

.categorie-parcours{
    margin-bottom:12px;
    color:#f4b52c !important;
    font-size:12px !important;
    font-weight:bold;
    letter-spacing:1.5px;
}

.contenu-etape h3{
    margin-bottom:8px;
    color:#ffffff;
    font-size:27px;
    font-weight:400;
}

.entreprise-parcours{
    margin-bottom:20px;
    color:#ffffff !important;
    font-size:15px !important;
    font-weight:bold;
}

.contenu-etape p{
    max-width:850px;
    margin-bottom:12px;
    color:#c8c8c8;
    font-size:16px;
    line-height:1.7;
}

/* Listes de missions */

.missions-parcours{
    margin-top:18px;
    padding-left:20px;
    color:#c8c8c8;
}

.missions-parcours li{
    margin-bottom:7px;
    font-size:16px;
    line-height:1.5;
}

.missions-parcours li::marker{
    color:#f4b52c;
}

/* ==================================================
   FORMATION
================================================== */

.bloc-formation{
    margin-top:90px;
}

.grille-formation{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
}

.carte-formation{
    min-height:310px;
    padding:32px;
    background:#232428;
    border:1px solid #333333;
    border-top:5px solid #f4b52c;
    transition:0.3s;
}

.carte-formation:hover{
    transform:translateY(-7px);
    border-color:#f4b52c;
}

.annee-formation{
    margin-bottom:35px;
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
    letter-spacing:1.5px;
}

.carte-formation h3{
    margin-bottom:10px;
    color:#ffffff;
    font-size:25px;
    font-weight:400;
}

.ecole-formation{
    margin-bottom:20px !important;
    color:#ffffff !important;
    font-weight:bold;
}

.carte-formation p{
    color:#bdbdbd;
    font-size:15px;
    line-height:1.7;
}

/* ==================================================
   CERTIFICATIONS
================================================== */

.grille-certifications{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.certification{
    display:grid;
    grid-template-columns:48% 52%;
    min-height:430px;
    overflow:hidden;
    background:#232428;
    border:1px solid #333333;
    border-left:6px solid #f4b52c;
}

.image-certification{
    min-height:430px;
    display:block;
    overflow:hidden;
    background:#111111;
}

.image-certification img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform 0.5s;
}

.image-certification:hover img{
    transform:scale(1.03);
}

.certification-texte{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:45px;
}

.categorie-certification{
    margin-bottom:14px;
    color:#f4b52c;
    font-size:12px;
    font-weight:bold;
    letter-spacing:1.5px;
}

.certification-texte h3{
    margin-bottom:10px;
    color:#ffffff;
    font-size:32px;
    font-weight:400;
}

.organisme-certification{
    margin-bottom:22px;
    color:#f4b52c;
    font-size:16px;
    font-weight:bold;
}

.certification-texte p{
    max-width:650px;
    margin-bottom:14px;
    color:#c8c8c8;
    font-size:16px;
    line-height:1.7;
}

.certification-texte .date-certification{
    margin-top:5px;
    color:#ffffff;
    font-weight:bold;
}

.certification-texte .bouton{
    align-self:flex-start;
    margin-top:15px;
}

/* ==================================================
   COMPÉTENCES
================================================== */

.competences-parcours{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    border-top:1px solid #333333;
    border-left:1px solid #333333;
}

.competence-parcours{
    min-height:230px;
    padding:30px;
    border-right:1px solid #333333;
    border-bottom:1px solid #333333;
    transition:0.3s;
}

.competence-parcours span{
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
}

.competence-parcours h3{
    margin:35px 0 15px;
    color:#ffffff;
    font-size:22px;
}

.competence-parcours p{
    color:#aaaaaa;
    font-size:15px;
    line-height:1.7;
}

.competence-parcours:hover{
    background:#f4b52c;
    transform:translateY(-5px);
}

.competence-parcours:hover span,
.competence-parcours:hover h3,
.competence-parcours:hover p{
    color:#111111;
}

/* ==================================================
   TABLETTES
================================================== */

@media (max-width:1000px){

    .chronologie::before{
        left:20px;
    }

    .etape-parcours{
        grid-template-columns:40px 1fr;
    }

    .date-parcours{
        grid-column:2;
        padding:0 0 12px 0;
        text-align:left;
    }

    .point-parcours{
        grid-column:1;
        grid-row:1 / span 2;
        margin-top:4px;
    }

    .contenu-etape{
        grid-column:2;
    }

    .grille-formation{
        grid-template-columns:1fr;
    }

    .certification{
        grid-template-columns:1fr;
    }

    .image-certification{
        min-height:400px;
    }

    .certification-texte{
        padding:40px;
    }

    .competences-parcours{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* ==================================================
   TÉLÉPHONES
================================================== */

@media (max-width:600px){

    .page-parcours{
        width:94%;
        padding:30px 0;
    }

    .description-parcours{
        font-size:16px;
    }

    .bloc-parcours{
        margin-top:50px;
    }

    .titre-section-parcours{
        align-items:flex-start;
    }

    .titre-section-parcours h2{
        font-size:28px;
    }

    .chronologie::before{
        display:none;
    }

    .etape-parcours{
        display:block;
    }

    .point-parcours{
        display:none;
    }

    .date-parcours{
        padding:0 0 10px;
        text-align:left;
    }

    .contenu-etape{
        padding:25px 20px;
    }

    .contenu-etape:hover{
        transform:none;
    }

    .contenu-etape h3{
        font-size:23px;
    }

    .contenu-etape p,
    .missions-parcours li{
        font-size:15px;
    }

    .carte-formation{
        min-height:auto;
        padding:25px 20px;
    }

    .certification{
        border-left:4px solid #f4b52c;
    }

    .image-certification{
        min-height:240px;
    }

    .image-certification img{
        object-fit:contain;
    }

    .certification-texte{
        padding:28px 22px;
    }

    .certification-texte h3{
        font-size:25px;
    }

    .certification-texte p{
        font-size:15px;
    }

    .competences-parcours{
        grid-template-columns:1fr;
    }
}

/* ==================================================
   PAGE CONTACT
================================================== */

.page-contact{
    width:90%;
    max-width:1400px;
    margin:0 auto;
    padding:60px 0;
}

.description-contact{
    max-width:800px;
    margin-top:20px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.7;
}

/* ==================================================
   CONTACT PRINCIPAL
================================================== */

.contact-principal{
    display:grid;
    grid-template-columns:40% 60%;
    margin-top:50px;
    background:#232428;
    border:1px solid #333333;
    border-left:6px solid #f4b52c;
}

.informations-contact,
.zone-formulaire{
    padding:50px;
}

.informations-contact{
    background:#191a1d;
    border-right:1px solid #3b3b3b;
}

.numero-contact{
    margin-bottom:30px;
    color:#f4b52c;
    font-size:13px;
    font-weight:bold;
    letter-spacing:2px;
}

.informations-contact h2,
.zone-formulaire h2{
    margin-bottom:25px;
    color:#ffffff;
    font-size:36px;
    font-weight:300;
}

.texte-contact{
    margin-bottom:35px;
    color:#bdbdbd;
    font-size:16px;
    line-height:1.7;
}

/* ==================================================
   COORDONNÉES
================================================== */

.liste-contact{
    border-top:1px solid #383838;
}

.element-contact{
    padding:22px 0;
    border-bottom:1px solid #383838;
}

.titre-coordonnee{
    display:block;
    margin-bottom:9px;
    color:#f4b52c;
    font-size:11px;
    font-weight:bold;
    letter-spacing:1.5px;
}

.element-contact p{
    color:#ffffff;
    font-size:16px;
    line-height:1.6;
}

.element-contact a{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s;
}

.element-contact a:hover{
    color:#f4b52c;
}

/* RÉSEAUX */

.liens-contact{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.liens-contact a{
    padding:10px 15px;
    color:#ffffff;
    text-decoration:none;
    border:1px solid #555555;
    font-size:13px;
    transition:0.3s;
}

.liens-contact a:hover{
    color:#111111;
    background:#f4b52c;
    border-color:#f4b52c;
}

/* ==================================================
   FORMULAIRE
================================================== */

.formulaire-contact{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.ligne-formulaire{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.champ-formulaire{
    display:flex;
    flex-direction:column;
}

.champ-formulaire label{
    margin-bottom:9px;
    color:#ffffff;
    font-size:14px;
    font-weight:bold;
}

.champ-formulaire input,
.champ-formulaire select,
.champ-formulaire textarea{
    width:100%;
    padding:15px;
    color:#ffffff;
    background:#17181a;
    border:1px solid #444444;
    outline:none;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    transition:0.3s;
}

.champ-formulaire input,
.champ-formulaire select{
    height:52px;
}

.champ-formulaire textarea{
    min-height:180px;
    resize:vertical;
}

.champ-formulaire input:focus,
.champ-formulaire select:focus,
.champ-formulaire textarea:focus{
    border-color:#f4b52c;
    box-shadow:0 0 0 1px #f4b52c;
}

.champ-formulaire select option{
    color:#ffffff;
    background:#17181a;
}

.bouton-envoi{
    align-self:flex-start;
    padding:15px 25px;
    color:#111111;
    background:#f4b52c;
    border:1px solid #f4b52c;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.bouton-envoi:hover{
    color:#111111;
    background:#ffffff;
    border-color:#ffffff;
}

/* ==================================================
   BLOC CONTACT RAPIDE
================================================== */

.contact-rapide{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    margin-top:40px;
    padding:45px;
    background:#17181a;
    border:1px solid #333333;
}

.contact-rapide .introduction{
    margin-bottom:12px;
}

.contact-rapide h2{
    color:#ffffff;
    font-size:38px;
    font-weight:300;
}

.contact-rapide h2 span{
    color:#f4b52c;
}

/* ==================================================
   TABLETTES
================================================== */

@media (max-width:1000px){

    .contact-principal{
        grid-template-columns:1fr;
    }

    .informations-contact{
        border-right:none;
        border-bottom:1px solid #3b3b3b;
    }

    .contact-rapide{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* ==================================================
   TÉLÉPHONES
================================================== */

@media (max-width:600px){

    .page-contact{
        width:94%;
        padding:30px 0;
    }

    .description-contact{
        font-size:16px;
    }

    .contact-principal{
        margin-top:30px;
        border-left:4px solid #f4b52c;
    }

    .informations-contact,
    .zone-formulaire{
        padding:28px 22px;
    }

    .informations-contact h2,
    .zone-formulaire h2{
        font-size:29px;
    }

    .ligne-formulaire{
        grid-template-columns:1fr;
    }

    .bouton-envoi{
        width:100%;
    }

    .contact-rapide{
        padding:30px 22px;
    }

    .contact-rapide h2{
        font-size:30px;
    }
}