/* ABOUT PAGE */
.about-hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* opacity maîtrisée */
    backdrop-filter: blur(2px);
}

.about-content-wrapper {
    position: relative;
    max-width: 900px;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.about-content-wrapper h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content-wrapper h1 {
        font-size: 2.2rem;
    }

    .about-content {
        font-size: 1rem;
    }
}
