@charset "UTF-8";
/* CSS Document */


/******************************************************************
******************************************************************
NE PAS MODIFIER / CES LIGNES ENLEVENT LES PADDING ET MARGIN AJOUTÉS
AUTOMATIQUEMENT PAR LE FICHIER NORMALIZE.CSS
******************************************************************
******************************************************************/

/*retire les padding et margin */
aside, section, article, footer, header, video, div, p, h1, h2, h3, h4, h5, h6, ol, ul, li, figure { padding:0; margin:0; }

/******************************************************************
******************************************************************
CSS PRÉDÉFINIES / NE PAS MODIFIER
******************************************************************
******************************************************************/

/* les images ne seront jamais plus grandes que le contenant <figure> qui les contient */
img { max-width:100%; height: auto;}

/* polices par défaut */
body { font-family: Helvetica, Arial, sans-serif;}

/* retire le gras par défaut des titres */
h1, h2, h3, h4, h5, h6 { font-weight: 400;}




/************************************************************************************************************************************
************************************************************************************************************************************
LAPTOP LAPTOP LAPTOP LAPTOP LAPTOP
LAPTOP LAPTOP LAPTOP LAPTOP LAPTOP
LAPTOP LAPTOP LAPTOP LAPTOP LAPTOP
PLACEZ LES DÉFINITIONS CSS DE VOS PAGES SOUS CETTE LIGNE
************************************************************************************************************************************
************************************************************************************************************************************/


/******************************************/
/* BODY */
/******************************************/

body { 
    font-size:1.6vw; 
	font-family: "Frank Ruhl Libre", serif;
    color: black;
	background-color: white;
	font-weight: 400;
    font-size:1.5vw; 
}  

/*********** HEADER *************/

header {
    position: sticky;
	top: 0vw;
	z-index: 3;

	
} 

/*********** NAV *************/

.entete { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
	background-color: white;
    padding: 0 1vw 0 1vw;
    	
}  

.entete figure {
    width: 15vw;
    
} 

.trait-horizontal {
    border-top: 1.75vw solid #5175AE;
    width: 0.15vw;
    box-sizing: border-box;
    height: 0;
    margin: 0 auto;

  } 

.menu1 ul{ 
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;

}

.menu1 li {
    margin: 0 1vw;
    font-size: 1.5vw;
  
}

.menu1 ul li a,
.menu1 ul li { 
    color: #5175AE;
    text-decoration: none; 

}

.menu1 ul li a:hover{ 
    color: #C2B0D0;  

}

.close-menu{ 
    display: none;
    position: absolute;
    font-size: 2.75vw;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    color: #5175AE;
    padding: 1vw;
    cursor: pointer;  

}

.close-menu:hover{ 
    color: #C2B0D0;  

}

.hamburger-menu {
    display: none;
    align-items: center;
    justify-content: center;
}

.hamburger-menu button {
    background: none;
    border: none;
    font-size: 7vw;
    /* Taille de l'icône du menu hamburger */
    color: #5175AE;
}

/*********** MAIN *************/

/* CONTACT */

.toggle-button {
    background-color: #5175AE;
    border: none;
    border-radius: 5px 5px 0 0;
    color: white;
    padding: 20px 35px;
    text-align: center;
    text-decoration: none;
    display: block;
    position: fixed;
    left: 0; /* Coller le bouton contre le bord de la page à gauche */
    transform: translateY(-50%) rotate(90deg); /* Rotation de 90 degrés */
    z-index: 1; 
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 10.5vw 0 0 -3.5vw; /* Supprimer toute marge */
}

.toggle-button:hover{
    background-color: #C2B0D0;
}

/*********** MAIN *************/

main { 
	margin: 0 10vw 0 10vw;

} 

.environnement-graphique {
    display: block;
    position: fixed;
    bottom: 5vw;
    left: -15px; 
    width: 11vw;
}

.Projets { 
    margin: 4vw 0 4vw 0;

}

h1 { 
	color: black;
	font-weight: 700;
	margin-bottom: 1vw;
    text-align: center;
    margin: 0 0 2vw 0;

}

main p{ 
    margin-bottom: 1vw;

}

/*********** MAIN À PROPOS *************/

.apropos {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Deux colonnes, la première prend 1 part, la seconde 2 parts */
    align-items: center; /* Centrer verticalement les éléments */
    grid-gap: 1.5vw;
}

.apropos h1 {
    text-align: left;
    
}

.apropos figure {
    width: 100%; /* Assurez-vous que l'image occupe toute la largeur de sa colonne */
}

.apropos figure img {
    max-width: 100%; /* Assurez-vous que l'image ne dépasse pas de sa colonne */
    height: auto; /* Gardez le ratio hauteur/largeur */
}

/*********** GRILLE IMAGES *************/

.grille-image img,
.grille-image video { 
        width: 100%; 
        height: 100%; 
        object-fit: cover;
        transition: transform 0.3s ease, opacity 0.3s ease;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease-out forwards;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
   .grille-image figure:hover {
        transform: scale(1.02);
        transition: all 0.3s ease-in-out;
    }
    
    .grille-image {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        margin-bottom: 1vw;
        grid-gap: 0.5vw;
    }


    
    .grille-image figure:nth-child(2),
    .grille-image figure:nth-child(5),
    .grille-image figure:nth-child(8),
    .grille-image figure:nth-child(11),
    .grille-image figure:nth-child(14),
    .grille-image figure:nth-child(17),
    .grille-image figure:nth-child(20) {
        grid-column: span 3;
    }
    
    .grille-image figure:nth-child(3),
    .grille-image figure:nth-child(4),
    .grille-image figure:nth-child(9),
    .grille-image figure:nth-child(10),
    .grille-image figure:nth-child(15),
    .grille-image figure:nth-child(16),
    .grille-image figure:nth-child(21)     {
        grid-column: span 4;
    }

    .grille-image figure:nth-child(1),
    .grille-image figure:nth-child(6),
    .grille-image figure:nth-child(7),
    .grille-image figure:nth-child(12),
    .grille-image figure:nth-child(13),
    .grille-image figure:nth-child(18),
    .grille-image figure:nth-child(19) {
        grid-column: span 5;
    }

    video { max-width: 100%; height: auto; }


/*********** FOOTER *************/

footer { 
	display: flex;
	justify-content: space-between;
    align-items: center;
	padding: 2.75vw;
	background-color: #5175AE;
	color: white;
    font-size: 1vw;

} 

footer p { 
	flex: 0 0 auto;

} 


.menu-fixe {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 3vw;
    background-color: #5175AE;
    color: white;
    font-size: 1vw;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.social { 
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
} 

.social a { 
	color: white;
    text-decoration: none;
    font-size: 1.5vw;
    padding: 0 0 0 1vw;

} 

/* PROJETS */

.GrilleProjets,
.GrilleProjets2,
.GrilleProjets3,
.GrilleProjets4 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1vw;
}

.GrilleProjets div figure img,
.GrilleProjets2 div figure img,
.GrilleProjets3 div figure img,
.GrilleProjets4 div figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.GrilleProjets div:nth-child(3) {
    grid-column: span 12;
}
.GrilleProjets div:nth-child(1),
.GrilleProjets2 div:nth-child(1),
.GrilleProjets3 div:nth-child(1),
.GrilleProjets4 div:nth-child(1),
.GrilleProjets3 div:nth-child(3) {
    grid-column: span 8; 
}

.GrilleProjets div:nth-child(3),
.GrilleProjets div:nth-child(4),
.GrilleProjets div:nth-child(5),
.GrilleProjets div:nth-child(6),
.GrilleProjets div:nth-child(7),
.GrilleProjets div:nth-child(8),
.GrilleProjets2 div:nth-child(3),
.GrilleProjets2 div:nth-child(4),
.GrilleProjets2 div:nth-child(5),
.GrilleProjets4 div:nth-child(3),
.GrilleProjets4 div:nth-child(4),
.GrilleProjets4 div:nth-child(8),
.GrilleProjets4 div:nth-child(9),
.GrilleProjets4 div:nth-child(10),
.GrilleProjets4 div:nth-child(11) {
    grid-column: span 6;
}

.GrilleProjets div:nth-child(2),
.GrilleProjets2 div:nth-child(2),
.GrilleProjets3 div:nth-child(2),
.GrilleProjets4 div:nth-child(2),
.GrilleProjets4 div:nth-child(5),
.GrilleProjets4 div:nth-child(6),
.GrilleProjets4 div:nth-child(7) {
    grid-column: span 4;
}

.GrilleProjets div p,
.GrilleProjets2 div p,
.GrilleProjets3 div p,
.GrilleProjets4 div p {
    margin: 1vw 0;
}


.BtnRetour a i{ 
    font-size: 4vw;
    color: #5175AE;
    padding: 1vw;
    margin-left: 1.75vw;
    position: fixed;
    margin-top: -1.5vw;
    
}

.BtnRetour a i:hover{ 
    color: #C2B0D0;
    
}

/*********** Liens *************/
.lien-social { 
  background-color: white;
  margin: 0 5vw 5vw 5vw;
}

.lien { 
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 2vw;

}

.lien a:nth-child(1) {
  grid-column: span 4;
  
}

.lien a:nth-child(2),
.lien a:nth-child(4) {
  grid-column: 1/3;
}

.lien a:nth-child(3),
.lien a:nth-child(5) {
  grid-column: 3/5;
}

.lien-social figure {
    display: block;
    margin: 0 auto -3vw auto;
    width: 50vw;
}

.lien-social .environnement-graphique-social {
    display: block;
    position: absolute;
    left: -15px; 
    width: 11vw;
    bottom: 5px;
}

.lien .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5175AE;
    padding: 2vw 0;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color .3s, transform .2s;
    font-size: 8vw;            /* taille icône responsive */
}

.lien .btn:hover {
  background-color: #C2B0D0;
  transform: translateY(-2px) scale(1.03);
}


/* FIN DE CSS LAPTOP */
/* FIN DE CSS LAPTOP */
/* FIN DE CSS LAPTOP */
/************************************************************************************************************************************/

/*CELLULAIRES CELLULAIRES CELLULAIRES
PLACEZ LES DÉFINITIONS CSS DE VOS PAGES SOUS CETTE LIGNE*/

@media screen and (max-width:680px) {
    
body { 
    font-size: min(5vw, 22px); 
} 

.Projets h1 { 
    font-size: min(5vw, 22px);
} 

/*********** Hover *************/
.grille-image img:hover {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
}

.menu1 ul li a:hover{ 
    color: #5175AE;  

}

.BtnRetour a i:hover{ 
    color: #5175AE;
    
}

/*********** NAV *************/

.entete figure {
    width: 30vw;
} 

.entete {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw 0 2vw;
    margin: 0 auto;

}

.hamburger-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
        
}

.trait-horizontal {
    border-top: 0.75vw solid #5175AE;
    width: 100%; 
    box-sizing: border-box;
    height: 0; 
    margin: 0 auto; 

  }
  

.menu1 ul{ 
     display: block;
    
 }
    
.menu1 li {
    font-size: 10vw;
    margin-bottom: 8vw;
      
}

    .menu1 {
        display: none;
        z-index: 2;
    }

    .menu1 ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
    
    }

    .close-menu {
        display: block;
        margin: 3vw;
        font-size: 8vw;

    }

    .menu-deployed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 10;
}

.menu1 .actif {
    color: black;
}

.environnement-graphique {
    display: block;
    position: fixed;
    bottom: 15vw;
    left: -5px; 
    width: 11vw;
}


    /* CONTACT */

.toggle-button {
    margin: 21.25vw 0 0 -8.5vw;
    font-size: 3vw;
    padding: 10px 25px;
 }

.toggle-button:hover{
    background-color: #5175AE;
}

    /*********** GRILLE IMAGES *************/

.grille-image img{ 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: none;
}

.grille-image{ 
   display: grid;
   grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto  auto;
   margin-bottom: 1vw;
   grid-gap: 0.5vw;
    transition: none;
}

 .grille-image figure a video { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; }

    .grille-image figure:nth-child(1),
    .grille-image figure:nth-child(4),
    .grille-image figure:nth-child(7),
    .grille-image figure:nth-child(10),
    .grille-image figure:nth-child(13),
    .grille-image figure:nth-child(16),
    .grille-image figure:nth-child(19) {
        grid-column: span 14;
    }
    
    .grille-image figure:nth-child(2),
    .grille-image figure:nth-child(5),
    .grille-image figure:nth-child(8),
    .grille-image figure:nth-child(11),
    .grille-image figure:nth-child(14),
    .grille-image figure:nth-child(17),
    .grille-image figure:nth-child(20) {
        grid-column: span 6;
    }

    .grille-image figure:nth-child(3),
    .grille-image figure:nth-child(6),
    .grille-image figure:nth-child(9),
    .grille-image figure:nth-child(12),
    .grille-image figure:nth-child(15),
    .grille-image figure:nth-child(18),
    .grille-image figure:nth-child(21) {
        grid-column: span 8;
    }


 /* PROJETS */
video { max-width: auto; height: auto; }

 .Projets { 
    margin-top: 5vw;
 }

.GrilleProjets,
.GrilleProjets2,
.GrilleProjets3,
.GrilleProjets4 {
    grid-template-columns: repeat(1, 1fr); 
    margin-bottom: 1vw;
    transition: none;
 }

 .GrilleProjets div:nth-child(1),
 .GrilleProjets div:nth-child(2),
 .GrilleProjets div:nth-child(3),
 .GrilleProjets div:nth-child(4),
 .GrilleProjets div:nth-child(5),
 .GrilleProjets div:nth-child(6),
 .GrilleProjets div:nth-child(7),
 .GrilleProjets div:nth-child(8){
    grid-column: span 12; 
 }

 .GrilleProjets2 div:nth-child(1),
 .GrilleProjets2 div:nth-child(2),
 .GrilleProjets2 div:nth-child(3),
 .GrilleProjets2 div:nth-child(4),
 .GrilleProjets2 div:nth-child(5){
    grid-column: span 12;
 }

 .GrilleProjets3 div:nth-child(1),
 .GrilleProjets3 div:nth-child(2),
 .GrilleProjets3 div:nth-child(3),
 .GrilleProjets3 div:nth-child(4),
 .GrilleProjets3 div:nth-child(5){
    grid-column: span 12; 
 }

 .GrilleProjets4 div:nth-child(1),
 .GrilleProjets4 div:nth-child(2),
 .GrilleProjets4 div:nth-child(3),
 .GrilleProjets4 div:nth-child(4),
 .GrilleProjets4 div:nth-child(5),
 .GrilleProjets4 div:nth-child(6),
 .GrilleProjets4 div:nth-child(7),
 .GrilleProjets4 div:nth-child(8),
 .GrilleProjets4 div:nth-child(9),
 .GrilleProjets4 div:nth-child(10),
 .GrilleProjets4 div:nth-child(11) {
    grid-column: span 12;  }

.GrilleProjets div p,
.GrilleProjets2 div p,
.GrilleProjets3 div p,
.GrilleProjets4 div p { 
    margin: 2vw 0 2vw 0;
    font-size: 3vw;
 
 }

.BtnRetour a i{ 
    font-size: 6vw;
    color: #5175AE;
    padding: 1vw;
    margin-left: 1.75vw;
    position: fixed;
    margin-top: -1vw;
    
}

/*********** MAIN À PROPOS *************/

.apropos {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    grid-gap: 1.5vw;
}

.apropos div p {
    margin: 0 0 3vw 0;

}

/* Footer */

footer { 
	padding: 5vw;
    font-size: 3.25vw;

} 

.social a { 
	color: white;
    font-size: 4.5vw;
    padding: 1.5vw;


} 

.menu-fixe {
    position: relative;
    padding: 5vw;
    font-size: 3vw;
    
}

.lien { 
    grid-template-columns: auto;

}

.lien a:nth-child(1),
.lien a:nth-child(2),
.lien a:nth-child(4),
.lien a:nth-child(3),
.lien a:nth-child(5) {
  grid-column: 1/2;
}

.lien-social .environnement-graphique-social {
    display: block;
    position: absolute;
    left: -5px; 
    width: 11vw;
    bottom: 475px;
}

.lien .btn {
    padding: 2vw 0;
    transition: none;
    font-size: 8vw;            /* taille icône responsive */
}

.lien .btn:hover {
  background-color: #5175AE;
  transform: none;
}

    
    /*******************************/ 
} /* <------ ne pas retirer ce } */ 

/* FIN DE CSS CELLULAIRES */
/* FIN DE CSS CELLULAIRES */
/* FIN DE CSS CELLULAIRES */
