.about-page {
    overflow-x: hidden;
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 1.5rem;
}

.scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.scroll-down svg {
    width: 20px;
    height: 20px;
    color: currentColor;
    animation: bounce 2s infinite;
}

/* About Content */
.about-sections {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

/* Séparateur pour les groupes WordPress */
.wp-block-group:not(:last-child) {
    position: relative;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.wp-block-group:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='4' viewBox='0 0 20 4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%236C63FF' fill-opacity='0.2'/%3E%3Crect x='8' width='4' height='4' fill='%236C63FF' fill-opacity='0.2'/%3E%3Crect x='16' width='4' height='4' fill='%236C63FF' fill-opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 20px 4px;
}

.wp-block-group__inner-container {
    position: relative;
}

/* Suppression du séparateur précédent */
.about-sections>.row:not(:last-child) {
    position: relative;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
    border-bottom: none;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.6;
}

.about-image {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.feature-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.feature-description {
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Team Section */
.team-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.team-member {
    background: var(--card-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-link {
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.member-info {
    padding: 1.25rem;
}

.member-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.member-bio {
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Animations */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
        min-height: 50vh;
    }

    .about-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-sections {
        padding: 3rem 0;
    }

    .member-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card,
    .team-member {
        margin-bottom: 1rem;
    }
}