@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');
}

.founders-testimonial {
    background-color: var(--green);
    color: var(--gold);
}

.founders-testimonial h2 {
    font-family: 'Blinds Audience', serif;
    font-size: 2em;
}

.founders-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom:1em;
}

.founder {
    width: 600px;
    min-width: 400px;
    background-color: rgba(254, 241, 232, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1em;
}

.founder:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(153, 109, 47, 0.2);
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.founder h3 {
    font-family: 'Blinds Audience', serif;
    font-size: 1.5em;
}

.founder-title {
    font-style: italic;
    padding-bottom:1em;
}

.founders-text {
    font-style: italic;
    line-height: 1.6;
    text-align:left;
}

.founders-testimonial p::before,
.founders-testimonial p::after {
    font-size: 1.5em;
    color: #996D2F;
}

.founders-testimonial h2{
    padding-top: 1em;
    padding-bottom:1em;
}

@media screen and (max-width: 700px) {
    .founders-container {
        width: 100%; /* Assurez-vous que le conteneur prend toute la largeur */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centre les éléments enfants horizontalement */
        justify-content: center;
        gap: 1em;
    }
    .founder {
        width: 80vw; /* Largeur des cartes */
        min-width: 80vw;
        max-width: 80vw;
        background-color: rgba(254, 241, 232, 0.05);
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin: 0 auto; /* Centre les cartes horizontalement */
    }

    .founders-text {
        max-width: 70vw;
    }
}

