/**
 * Page Histoire Styles - Vertuoses
 *
 * Styles pour la page Notre Histoire
 */

/* ============================================================
   HERO HISTOIRE
   ============================================================ */

.histoire-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.histoire-hero__image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    will-change: transform;
}

.histoire-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.histoire-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.histoire-hero__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.histoire-hero__title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.histoire-hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.histoire-hero__description {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    opacity: 0.8;
    line-height: 1.7;
}


/* ============================================================
   INTRODUCTION - FORMAT BANDEAU HORIZONTAL
   ============================================================ */

.histoire-intro {
    width: 100%;
}

.histoire-intro__wrapper {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

/* Colonne Image - 45% */
.histoire-intro__image-col {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.histoire-intro__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.histoire-intro__image-item {
    position: absolute;
    overflow: hidden;
}

.histoire-intro__image-item--1 {
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
    z-index: 1;
}

.histoire-intro__image-item--2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 55%;
    z-index: 2;
    box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.2);
}

.histoire-intro__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.histoire-intro__image-item:hover .histoire-intro__image {
    transform: scale(1.05);
}

/* Colonne Contenu - 55% */
.histoire-intro__content-col {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.histoire-intro__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.histoire-intro__title span {
    color: #6b9b7a;
}

.histoire-intro__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    font-style: italic;
    border-left: 3px solid #6b9b7a;
    padding-left: 1.25rem;
}

.histoire-intro__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
}

.histoire-intro__text p {
    margin: 0 0 1.25rem 0;
}

.histoire-intro__text p:last-child {
    margin-bottom: 0;
}

.histoire-intro__signature {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b9b7a;
    margin: 2rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ============================================================
   VALEURS
   ============================================================ */

.histoire-valeurs {
    width: 100%;
}

.histoire-valeurs__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
}

.histoire-valeurs__header {
    text-align: center;
    margin-bottom: 4rem;
}

.histoire-valeurs__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.histoire-valeurs__subtitle {
    color: #4a5568;
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.histoire-valeurs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.histoire-valeurs__item {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.histoire-valeurs__item:hover {
    transform: translateY(-5px);
}

.histoire-valeurs__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.histoire-valeurs__item:hover .histoire-valeurs__icon {
    transform: scale(1.1);
}

.histoire-valeurs__icon span {
    font-size: 2rem;
}

.histoire-valeurs__name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.histoire-valeurs__description {
    font-size: 0.9rem;
    font-weight: 300;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   ÉQUIPE
   ============================================================ */

.histoire-equipe {
    width: 100%;
}

.histoire-equipe__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
}

.histoire-equipe__header {
    text-align: center;
    margin-bottom: 4rem;
}

.histoire-equipe__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.histoire-equipe__subtitle {
    color: #4a5568;
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.histoire-equipe__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.histoire-equipe__member {
    text-align: center;
}

.histoire-equipe__photo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.histoire-equipe__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.histoire-equipe__member:hover .histoire-equipe__photo {
    transform: scale(1.08);
}

.histoire-equipe__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.histoire-equipe__photo-placeholder span {
    font-size: 4rem;
    font-weight: 300;
    color: #ffffff;
}

.histoire-equipe__info {
    padding: 0 1rem;
}

.histoire-equipe__name {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.histoire-equipe__role {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.histoire-equipe__description {
    font-size: 0.9rem;
    font-weight: 300;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   CHIFFRES CLES
   ============================================================ */

.histoire-chiffres {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.histoire-chiffres__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.histoire-chiffres__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #203731;
}

.histoire-chiffres__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
}

.histoire-chiffres__header {
    text-align: center;
    margin-bottom: 4rem;
}

.histoire-chiffres__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.histoire-chiffres__title span {
    color: #6b9b7a;
}

.histoire-chiffres__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.histoire-chiffres__item {
    text-align: center;
    padding: 2rem;
}

.histoire-chiffres__number {
    display: block;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.histoire-chiffres__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ============================================================
   RESPONSIVE - Tablette
   ============================================================ */
@media (max-width: 1024px) {
    .histoire-intro__wrapper {
        min-height: 450px;
    }

    .histoire-intro__image-col {
        flex: 0 0 40%;
    }

    .histoire-intro__content-col {
        flex: 0 0 60%;
        padding: 3rem 3rem;
    }

    .histoire-valeurs__container {
        padding: 4rem 1.5rem;
    }

    .histoire-valeurs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .histoire-chiffres__container {
        padding: 4rem 1.5rem;
    }

    .histoire-chiffres__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .histoire-equipe__container {
        padding: 4rem 1.5rem;
    }

    .histoire-equipe__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* ============================================================
   RESPONSIVE - Mobile
   ============================================================ */
@media (max-width: 768px) {
    .histoire-hero {
        height: 60vh;
        min-height: 450px;
    }

    .histoire-hero__content {
        padding: 1.5rem;
    }

    .histoire-intro__wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .histoire-intro__image-col {
        flex: none;
        height: 280px;
    }

    .histoire-intro__image-item--1 {
        width: 65%;
        height: 100%;
    }

    .histoire-intro__image-item--2 {
        width: 50%;
        height: 70%;
    }

    .histoire-intro__content-col {
        flex: none;
        padding: 2.5rem 1.5rem;
    }

    .histoire-intro__subtitle {
        margin-bottom: 1.5rem;
    }

    .histoire-intro__signature {
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }

    .histoire-valeurs__container {
        padding: 3rem 1rem;
    }

    .histoire-valeurs__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .histoire-valeurs__item {
        padding: 1.5rem 1rem;
    }

    .histoire-chiffres__container {
        padding: 3rem 1rem;
    }

    .histoire-chiffres__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .histoire-chiffres__item {
        padding: 1.5rem 1rem;
    }

    .histoire-chiffres__number {
        font-size: 2.5rem;
    }

    .histoire-equipe__container {
        padding: 3rem 1rem;
    }

    .histoire-equipe__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .histoire-equipe__photo-wrapper {
        width: 160px;
        height: 160px;
    }
}
