.titre-page{
    width: 100%;
    text-align: center;
}
h1 {
    font-family: Classyvogueregular;
    font-size: 5vw;
    color: #e84e1b;
    font-weight: normal;
    padding: 2vw;
    padding-bottom: 0vw;
}
h3{
    font-family: Classyvogueregular;
    font-size: 3vw;
    color: #e84e1b;
    font-weight: normal;
    padding-top: 2vw;
    margin-bottom: 1vw;
}
.titre-page{
    width: 60wv;
    text-align: center;
}
p{
    color: black;
    font-size: 1.5vw;
    font-family: InterLight;
    width: 60wv;
    margin-top: 1vw;
}
@media (max-width: 600px) {
    .container {
        width: 80vw; 
    }
    h1{
        font-size: 10vw;
        
    }
    h3{
        font-size: 6vw;
        width: 80wv;
        white-space: nowrap;
    }
    p{
    width: 80vw;
    font-size: 3vw;

    }
}

footer{
    width: 100vw;
    background-color: #e84e1b;  
    margin-top: 3vw;
}
footer h2{
    font-weight: normal;
    font-family: InterSemiBold;
    color: #e6e6f4;
    display: flex;
    justify-content: center;
    padding: 2vw;
    font-size: 1.5vw;
}
@media (max-width: 600px){
    footer h2{
        font-size: 2.5vw;
    }
}



.photographie {
    width: 80vw; /* Largeur du conteneur */
    overflow: hidden; /* Masquer les débordements */
    margin: auto; /* Centrer le conteneur */
    position: relative; /* Positionner les boutons correctement */
}

.photographie-photo-container {
    position: relative;
    display: flex;
    align-items: center; /* Centrer verticalement les boutons */
    margin-top: 1vw;
}

.photographie-photo {
    display: flex;
    transition: transform 0.5s ease; /* Transition douce pour le défilement */
}

.photographie-photo img {
    width: 100%; /* Utiliser 100% pour remplir le conteneur */
    max-width: none; /* Assurer que les images ne soient pas limitées par une max-width */
    flex-shrink: 0; /* Empêche les images de se réduire */
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
}

button.prev { left: 0; }
button.next { right: 0; }

/* Styles pour les écrans de bureau */
@media (min-width: 600px) {
    .photographie {
        width: 60vw; /* Largeur du conteneur pour ordinateur */
    }
    .img1{
        margin-right: 1.5vw;
    }
    .img2{
        margin-right: 1.5vw;
    }
    .photographie-photo img {
        width: 19vw; /* Largeur de l'image pour ordinateur */
    }

    .photographie-photo {
        width: calc(19vw * 3); /* Largeur totale pour 3 images */
    }

    button.prev, button.next {
        font-size: 24px; /* Plus gros boutons pour ordinateur */
        padding: 15px; /* Plus de padding pour ordinateur */
    }
}

