/* =========================================================
   EXPERIENCE PAGE ONLY
   experience.css
========================================================= */

/* =========================================================
   HERO EXPERIENCE
========================================================= */

.experience-hero{
    position:relative;
    height:82vh;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.experience-hero-image{
    position:absolute;
    inset:0;
}

.experience-hero-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

    animation:experienceHeroZoom 24s ease-in-out infinite alternate;
}

@keyframes experienceHeroZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.05);
    }
}

.experience-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.38)
    );
}

/* =========================================================
   HERO CONTENT
========================================================= */

.experience-content{
    position:relative;
    z-index:5;

    color:rgba(255,255,255,0.96);

    max-width:1100px;

    padding:0 20px;

    opacity:0;

    transform:translateY(30px);

    animation:experienceReveal 1.5s ease forwards;
}

@keyframes experienceReveal{

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.experience-content h1{
    font-family:'Playfair Display',serif;

    font-size:clamp(2.5rem,5vw,5.8rem);

    font-weight:400;

    line-height:1.08;

    text-transform:uppercase;

    letter-spacing:14px;

    margin-bottom:22px;

    text-shadow:
    0 10px 35px rgba(0,0,0,0.20);
}

.experience-subtitle{
    font-family:'Playfair Display',serif;
    font-style:italic;

    font-size:clamp(1.2rem,2vw,1.9rem);

    line-height:1.8;

    opacity:0.92;
}

/* =========================================================
   INTRO SECTION
========================================================= */

.experience-intro{
    padding:150px 20px 130px 20px;

    background:#fdfcf9;

    text-align:center;
}

.experience-intro .bloc-texte{
    max-width:950px;
    margin:0 auto;
}

.experience-intro .italique-serif{
    margin-bottom:38px;
}

.experience-intro .texte-seo{
    margin-top:42px;
}

/* =========================================================
   SIGNATURE QUOTE
========================================================= */

.signature-quote{
    padding:120px 20px;

    background:#f8f6f2;

    text-align:center;
}

.signature-quote blockquote{
    font-family:'Playfair Display',serif;
    font-style:italic;

    font-size:clamp(1.5rem,3vw,2.5rem);

    line-height:1.8;

    color:#2a2a2a;

    max-width:950px;

    margin:0 auto;
}

/* =========================================================
   EXPERIENCE GRID
========================================================= */

.experience-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:40px;

    max-width:1450px;

    margin:0 auto;

    padding:120px 40px;
}

.experience-card{
    position:relative;

    overflow:hidden;

    background:#000;
}

.experience-card img{
    width:100%;
    height:760px;

    object-fit:cover;

    transition:
    transform 1.2s ease,
    opacity 1s ease;
}

.experience-card:hover img{
    transform:scale(1.04);
    opacity:0.92;
}

/* =========================================================
   CARD OVERLAY
========================================================= */

.experience-card-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;

    padding:60px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.52),
        rgba(0,0,0,0.02)
    );
}

.experience-card-content h3{
    font-family:'Playfair Display',serif;

    font-size:2rem;

    font-weight:400;

    color:#fff;

    margin-bottom:14px;
}

.experience-card-content p{
    color:rgba(255,255,255,0.88);

    font-size:0.92rem;

    line-height:1.9;

    max-width:420px;
}

/* =========================================================
   SEPARATOR
========================================================= */

.separator-line{
    width:80px;
    height:1px;

    background:#ddd;

    margin:70px auto;
}

/* =========================================================
   TIMELINE EXPERIENCE
========================================================= */

.timeline-experience{
    padding:140px 20px;

    background:#fff;

    text-align:center;
}

.timeline-wrapper{
    max-width:1100px;
    margin:0 auto;
}

.timeline-item{
    margin-bottom:90px;
}

.timeline-number{
    display:block;

    font-size:0.72rem;

    letter-spacing:6px;

    text-transform:uppercase;

    color:#aaa;

    margin-bottom:20px;
}

.timeline-item h3{
    font-family:'Playfair Display',serif;

    font-size:2.1rem;

    font-weight:400;

    margin-bottom:18px;
}

.timeline-item p{
    max-width:700px;

    margin:0 auto;

    line-height:2;

    color:#444;
}

/* =========================================================
   CTA FINAL
========================================================= */

.experience-cta{
    padding:140px 20px;

    background:#f8f6f2;

    text-align:center;
}

.experience-cta .italique-serif{
    margin-bottom:40px;
}

.btn-experience{
    display:inline-block;

    padding:20px 56px;

    background:#111;
    color:#fff;

    border:1px solid #111;

    text-decoration:none;
    text-transform:uppercase;

    letter-spacing:7px;

    font-size:0.64rem;
    font-weight:300;

    transition:
    all .35s ease;
}

.btn-experience:hover{
    background:transparent;
    color:#111;

    transform:translateY(-2px);
}

/* =========================================================
   FADE IN
========================================================= */

.fade-in{
    opacity:0;

    transform:translateY(24px);

    transition:
    opacity .9s ease,
    transform .9s ease;
}

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

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:980px){

    .experience-grid{
        grid-template-columns:1fr;
        padding:90px 24px;
    }

    .experience-card img{
        height:620px;
    }
}

@media(max-width:768px){

    .experience-hero{
        height:72vh;
    }

    .experience-content h1{
        font-size:clamp(2rem,10vw,3.6rem);
        letter-spacing:8px;
    }

    .experience-subtitle{
        font-size:1.1rem;
    }

    .experience-grid{
        gap:24px;
    }

    .experience-card img{
        height:500px;
    }

    .experience-card-overlay{
        padding:34px;
    }

    .experience-card-content h3{
        font-size:1.6rem;
    }

    .signature-quote{
        padding:90px 24px;
    }

    .timeline-item{
        margin-bottom:70px;
    }

    .btn-experience{
        padding:16px 32px;
        letter-spacing:4px;
    }
}

/* =========================================================
   IMAGE EDITORIALE CENTRÉE
========================================================= */

.section-image {
    display: flex;
    justify-content: center;
}

.section-image .image-finale {
    left: auto;
    transform: none;

    margin-left: auto;
    margin-right: auto;
}

.section-image .image-finale img {
    display: block;
    margin: 0 auto;
}

/* =========================================================
   EXPERIENCE - CTA FINAL
========================================================= */

main > section.section-blanche:last-of-type{
    padding-top: 20px;
    padding-bottom: 100px;
}