@font-face {
    font-family: 'Lil Grotesk';
    src: url('../lilgrotesk/LilGrotesk-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Blinds Audience';
    src: url('../blindsaudience/Blinds\ Audience.otf') format('woff');
}

.reviews {
    width: 100vw;
    box-sizing: border-box;
    font-family: 'Lil Grotesk', serif;
    font-weight: 500;
    position: relative;
    padding-top:0;
}

.reviews-banner {
    width: 100vw;
    height: auto;
}

.reviews-banner img {
    width: 100vw;
    height: 20em;
    object-fit: cover;
    max-width: 100vw;
}

.reviews-banner h1 {
    position: absolute;
    top: 50%; /* Centrer verticalement */
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3em;
    width: 100%; /* Assure que le texte prend toute la largeur */
    text-align: center; /* Centre le texte horizontalement */
    margin: 0; /* Enlève les marges par défaut */
}

.review-circle {
    display: flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
}

.reviews button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    border: none;
    border-radius: 0px 10px 0px 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--gold);
    font-weight: 700;
    transform-origin: center;
    text-decoration: none;
}

.reviews button a {
    text-decoration: none;
    color: inherit; /* Hérite de la couleur du bouton */
}

.reviews button:hover {
    background:var(--gold);
    color:white;
    cursor:pointer;
}
