/* Styles pour la page À propos */
.about-container {
    padding-top: 80px;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/background.webp') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section profil */
.profile-section {
    max-width: 1200px;
    margin: -100px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.profile-image {
    flex: 0 0 400px;
}

.profile-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.profile-text {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-text h2 {
    color: #ff69b4;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.profile-text p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contenu principal */
.about-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h2 {
    color: #ff69b4;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Liste des valeurs */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: #666;
    border-bottom: 1px solid #eee;
}

.values-list li:last-child {
    border-bottom: none;
}

/* Section expertise */
.expertise-section {
    grid-column: 1 / -1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.expertise-item h3 {
    color: #ff69b4;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.expertise-item ul {
    list-style: none;
    padding: 0;
}

.expertise-item li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.expertise-item li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #ff69b4;
}

/* Section CTA */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: #fdf1f8;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-section p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
        margin-top: -50px;
    }

    .profile-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .profile-photo {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero .subtitle {
        font-size: 1.2rem;
    }

    .profile-text h2 {
        font-size: 2rem;
    }

    .about-content {
        padding: 40px 20px;
    }

    .about-card {
        padding: 30px;
    }

    .about-card h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}