
body {
    font-family: Nunito Sans,sans-serif;
    background-color: #121616;
    color: #DCE0E0;
    margin: 0;
}

header {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1d1f22;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    position: fixed;
	
}

h1 {
    font-size: 3em; 
}


nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #DCE0E0;
}



.content-container {
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0;
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
}
.content-container video{
    margin-bottom: 100px;
}
.content-construction {
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0;
    margin-top: 200px;
    margin-bottom: 0;
    text-align: center;
}
.section-target::before {
    content: "";
    display: block;
    height: 100px; 
    margin-top: -100px; 
    visibility: hidden; 
}

.portfolio-items {
    display: flex;
    flex-direction: column; /* Empile les enfants verticalement */
    justify-content: flex-start; /* Aligner les enfants au début du conteneur */
    align-items: flex-start; /* Aligner les enfants au début sur l'axe transversal */
    margin-bottom: 20px;
    height: auto; /* Permet à l'élément de s'étirer en fonction du contenu */
}
.portfolio-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
    height: 250px;
}
.portfolio-items a {
    text-decoration: none; /* Enlever le soulignement */
    color: inherit; /* Utiliser la couleur par défaut du texte */
}
.portfolio-item:hover {
    background-color: #1d1f22; 
    cursor: pointer; /* Change le curseur en main pour indiquer la possibilité de cliquer */
}
.portfolio-media {
    flex: 0 0 250px;
    height: 250px; /* Définit la hauteur du conteneur pour l'image */
    width: 250px; /* Définit la largeur du conteneur pour l'image */
    overflow: hidden;
}
  
.portfolio-content {
    flex-grow: 1; /* Permet à ce conteneur de remplir l'espace restant après que .portfolio-media ait pris 250px */
    height: 100%;
    text-align: left;
    padding-left: 20px; /* Espacement entre l'image et le texte */
}

.portfolio-media img, .portfolio-media video {
    height: 100%; /* Fait en sorte que l'image remplisse la hauteur du conteneur */
    width: 100%; /* Fait en sorte que l'image remplisse la largeur du conteneur */
    object-fit: cover;
}

.medium-text, .short-text, .no-text {
    display: none;
}


@media screen and (max-width: 1400px) {
	.no-text {
		display: none;
	}
	.short-text {
		display: none;
	}
	.medium-text {
		display: block;
	}
	.long-text {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	.no-text {
		display: none;
	}
	.short-text {
		display: block;
	}
	.medium-text {
		display: none;
	}
	.long-text {
		display: none;
	}
}

@media screen and (max-width: 768px) {
    .content-container {
        width: 90%;
    }
	.app-container {
        max-width: 45%;
    }
}

@media screen and (max-width: 600px) {
	.no-text {
		display: block;
	}
	.short-text {
		display: none;
	}
	.medium-text {
		display: none;
	}
	.long-text {
		display: none;
	}
}

@media screen and (max-width: 480px) {
    .content-container {
        width: 100%;
        padding: 10px;
    }
    .app-container {
        max-width: 100%;
    }
}



		
#logo {
    height: 100%;
}

#logo img {
    max-height: 100%;
    width: auto;
}

#home {
    
    margin-top: 100px; 
}

#home .content-container {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0;
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
}

#spec {
    background-color: #121616;
    color: #DCE0E0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}
  
#portfolio {

}
  
#contact {
    background-color: #121616; 
    color:#DCE0E0;
}

#spec .content-container {
    width: 35%;
}

#team ul {
    display: flex; 
    justify-content: center;
    align-items: flex-start; 
    flex-wrap: wrap;
    padding: 0;
    margin: 0; 
    list-style-type: none;
}

#team li {
    margin: 50px 10px 10px;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

#team img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    margin-bottom: 100px;
}

.contact-icons a {
    margin: 0 25px; /* Espacement horizontal entre les icônes */
}

.contact-icons img {
    width: 100px; /* Définir la largeur maximale des images */
    height: auto; /* Permettre à la hauteur de s'ajuster proportionnellement à la largeur */
    margin: 0 25px; /* Espacement horizontal entre les icônes */
}

.rounded-box {
    background-color: #ffffff; /* Couleur blanche du rectangle */
    border-radius: 30px; /* Bords arrondis */
    padding: 50px;
    margin: 200px auto;
    width: 80%;
    max-width: 1200px; /* Largeur maximale du rectangle */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Optionnel : pour ajouter une ombre */
	color: #000000;
}

