/* Styles pour la page À Propos */

.page-banner {
    background-color: rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}

.page-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.about-content {
    padding: 5rem 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: #fff;
}

.about-text h3 {
    color: #8b5a2b;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.values {
    background-color: #f9f5f0;
    padding: 5rem 10%;
    text-align: center;
}

.values h3 {
    color: #8b5a2b;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.values h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d4a76a;
    margin: 0.5rem auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item h4 {
    color: #8b5a2b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team {
    padding: 5rem 10%;
    text-align: center;
    background-color: #fff;
}

.team h3 {
    color: #8b5a2b;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.team h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d4a76a;
    margin: 0.5rem auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #f9f5f0;
}

.team-member h4 {
    color: #2d2013;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-member .role {
    color: #8b5a2b;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .about-content {
        padding: 4rem 5%;
    }

    .values, .team {
        padding: 4rem 5%;
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        padding: 3rem 1rem;
    }

    .page-banner h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .values, .team {
        padding: 3rem 5%;
    }

    .values h3, .team h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .team-member img {
        width: 150px;
        height: 150px;
    }
}
