/* Style général */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}




/* Conteneur de la bannière */
.banner-container {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
    margin-top: 120px;
}

/* Image de la bannière */
.banner-image {
    width: 100%;
    height: 120%;

    object-fit: cover;
 
}

/* Titre de la bannière */
.banner-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    z-index: 1;
    left: 10%;
    text-align: left;
}

.banner-title h1 {
    color: #ff6233;
    /* Rouge */
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-text p {
    padding: 15px 50px;
}

@media only screen and (max-width: 1300px) {
    .banner-title h1 {
        font-size: 40px;
    }

}

/* Responsivité */
@media screen and (max-width: 768px) {

    .banner-container {
        margin-top: 40px;
    }

    .banner-image {
        height: 60%;
     
     
    }

    .banner-text {
        width: 95%;
        font-size: 0.8rem;
        padding: 10px;
        margin-bottom: 200px;
    }

    .banner-title h1 {
        font-size: 35px;
    }
}

@media screen and (max-width: 480px) {

    .banner-container {
        margin-top: 50px;
    }

    .banner-title h1 {
        font-size: 25px;
    }

    

    .banner-image {
        width: 100%;
        height: 50%;
        object-fit: cover;
     
    }
}

/* Paragraphe de texte avec fond rouge */
.banner-text {
    position: absolute;
    bottom: -300px;
    /* Le paragraphe chevauche légèrement la bannière */
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF6233;
    color: white;
    width: 80%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    z-index: 2;
    line-height: 1.6;
    text-align: justify;
}


/* Responsiveness */

@media screen and (max-width: 480px) {
    .banner-container {
        height: 70vh;
    }

    .banner-title h1 {
        font-size: 25px;
        margin-bottom: 400px;
    }

    .banner-text {
        width: 95%;
        font-size: 0.8rem;
        padding: 10px;
        margin-bottom: 500px;
    }
}



@media screen and (max-width: 390px) {
    .banner-container {
        height: 70vh;
    }

    .banner-title h1 {
        font-size: 25px;
        margin-bottom: 250px;
    }

    .banner-text {
        width: 95%;
        font-size: 0.7rem;
        padding: 10px;
        margin-bottom: 350px;
    }
}

.section-title {
    font-size: 32px;
    /* Taille de la police pour le titre de la section */
    margin-bottom: 20px;
    /* Espace sous le titre de la section */
    color: #FF6233;
    /* Couleur orange pour le texte du titre */
    text-transform: uppercase;
    /* Transforme le texte du titre en majuscules */
    font-family: Arial;
    /* Police de caractère pour le titre */
}

@media only screen and (max-width: 1300px) {
    .section-title {
        font-size: 28px;
       
    }

}
@media only screen and (max-width: 768px) {
    .section-title {
        font-size: 24px;
       
    }

}
@media screen and (max-width: 480px) {

    .section-title {
        font-size: 22px;
       
    }
}



/******************************************************************************* Section principale ******************************************/
.web-dev-section {
    margin-top: 100px;
    padding-top: 100PX;
    padding-bottom: 100PX;
    background-color: #F6F6F6;
    position: relative;
}

.section-service {
    max-width: 1200px;
    /* Largeur maximale de la page */
    margin: 0 auto;
    /* Centre la page horizontalement */
    padding: 0 20px;
    /* Ajoute du padding pour un peu de marge sur les côtés */

}


.web-dev-section h2 {
    font-size: 2rem;
    margin-bottom: 80px;
    text-align: center;
}

/* Grid des projets */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin: 0 auto;
    max-width: 900px;
}

.project-card {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
}

.project-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.project-card button {
    background-color: #FF6233;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
}

.project-card button:hover {
    background-color: #d13e17;
}

.red-bg {
    background-color: #FF6233;
    color: white;
}

.gray-bg {
    background-color: #f0f0f0;
    color: black;
}

/* Flèches de navigation */
.arrow-up,
.arrow-down {
    cursor: pointer;
    font-size: 2rem;
    color: #f24e1e;
    margin: 20px 0;
}

.arrow-up {
    position: absolute;
    top: 10px;
    right: 20px;
}

.arrow-down {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

/* Responsivité */
@media screen and (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .arrow-up,
    .arrow-down {
        margin-top: 100px;
        margin-bottom: -50px;
    }

    .projects-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .web-dev-section h2 {
        font-size: 1.5rem;
    }

    .arrow-up,
    .arrow-down {
        font-size: 1.5rem;
    }

    .arrow-up,
    .arrow-down {
        margin-top: 100px;
        margin-bottom: -50px;
    }

    .projects-grid {
        gap: 20px;
    }
}




/* ****************************************************************************************************** */

/* Section principale */
.graphic-branding {
    text-align: center;
    padding: 20px;
}


.section {
    margin-bottom: 50px;
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 20px;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-images {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.carousel-images img {
    width: 150px;
    height: auto;
    padding: 0 10px;
    display: none;
}

.carousel-images img.active {
    display: inline-block;
}

.carousel-dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #ff6233;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #ff6233;
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
    .carousel-images img {
        width: 100px;
        padding: 0 5px;
    }
}

/* **********************************************************************Marketing Digital********************************** */

.marketing-digital {
    text-align: center;
    padding: 20px;
   
}

.section {
    margin-bottom: 50px;
}

.title {
    font-size: 18px;
    margin-bottom: 15px;
    margin-left: 50px;
    padding-left: 20px;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-images {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.carousel-images img {
    width: 100%;
    max-width: 33%;
    height: 100%;
    display: none;
}

.carousel-images img.active {
    display: block;
}

.carousel-dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}


.carousel-images img {
    display: none; /* Cacher les images par défaut */
    transition: opacity 0.5s ease;
}

.carousel-images img.active {
    display: block; /* Afficher uniquement l'image active */
    opacity: 1;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #FF6233;
}



/* Responsive Design */
@media only screen and (max-width: 600px) {
    .carousel-images img {
        width: 100%;
        height: auto;
    }
}


/* ****************************************************************** Retouche*************************** */
.site-touch {
    background-color: white;
    text-align: center;
}

.section-touche{
    padding: 20px;
   

}

.section-touche #section-title {
    font-size: 2rem;
    /* Taille de la police pour le titre de la section */
    margin-bottom: 20px;
    /* Espace sous le titre de la section */
    color: #FF6233;
    /* Couleur orange pour le texte du titre */
    text-transform: uppercase;
    /* Transforme le texte du titre en majuscules */
    font-family: Arial;
    /* Police de caractère pour le titre */
}

h2.company-name {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.before-after-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.before-after-images {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
}

.before,
.after {
    text-align: center;
}

.before img,
.after img {
    width: 300px;
    height: auto;
}

.before p,
.after p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 10px;
}

.dott {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dott.active {
    background-color: #FF6233;
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
    .before-after-images {
        flex-direction: column;
    }

    .before img,
    .after img {
        width: 100%;
        max-width: 300px;
    }
}


/* ********************************************************************************** */
.realisation-section {
    text-align: center;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text-content {
    flex: 1;
    text-align: left;
    padding-right: 0px;
}

.text-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.image-content {
    flex: 1;
    text-align: right;
}

.image-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        text-align: center;
        padding-right: 0;
    }

    .image-content img {
        margin-top: 20px;
        max-width: 100%;
    }
}



.footer-bottom p a{
    margin: 0;
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.active {
    animation: focusInContractBck 1s ease forwards;
  }
  @keyframes focusInContractBck {
    0% {
      letter-spacing: 1em;
      transform: translateZ(300px);
      opacity: 0;
    }
    100% {
      letter-spacing: normal;
      transform: translateZ(0);
      opacity: 1;
    }
  }