/*=== HERO ===*/

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero img {
    max-height: 100rem;
    width: 100%;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.accroche {
    background-color: var(--intro-color);
    padding: 2rem 10rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 500;
}

/*=== Section presentation ===*/

.presentation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
}

/* === Section decouverte ===*/

.discover {
    margin: auto 10rem;
    gap: 2rem;
    padding: 3rem 0;
}

.dispo-cards {
    display: flex;
    justify-content: center;
    gap: 10rem;
    height: clamp(700px, 20vw, 900px);
    width: auto;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.img-bracelet, .img-livre {
    height: clamp(250px, 20vw, 500px);
    width: auto;
}

/* === Section contact ===*/

.stand-texte1 {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}
.stand-texte1 img {
    height: clamp(300px, 20vw, 400px);
    width: auto;
    margin-top: 2rem;
}

.texte-droite-stand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.texte-droite-stand li {
    list-style: disc;
    margin-left: 5rem;
}

.mail-ojas {
    text-decoration: underline;
}

/* === Section galerie photos ===*/

/* BOUTON GALERIE*/ 

button {
    background-color: var(--second-color);
    border: none;
    padding: 1.5rem;
    margin: 2rem;
    font-size: var(--font-btn);
    box-shadow: var(--shadow);
    text-decoration: none;
    box-sizing: border-box;
}
.boutons-galerie {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.precedent {
    margin-left: 0;
    justify-content: flex-start;
}
.suivant {
    margin-right: 0;
    justify-content: flex-end;
}

/* PHOTOS STAND*/
.photos-stand {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
}
.photos-stand img {
    width: 30%;
    height: clamp((200px, 25vw, 350px));
    flex-shrink: 0;
    object-fit: cover;
}