/*=====================================================
2B ÉVÉNEMENT
PAGE PROJETS
======================================================*/

/*=====================================================
BANNIÈRE
======================================================*/

.projets-banner{

    min-height:560px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:
    linear-gradient(rgba(8,35,60,.78),rgba(8,35,60,.78)),
    url("../images/projets/bourbon-banner.jpg")
    center center/cover no-repeat;

    color:#fff;

}

.banner-content{

    max-width:900px;
    margin:auto;
    padding:30px;

}

.banner-content h1{

    font-family:'Poppins',sans-serif;
    font-size:4rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;

}

.banner-content p{

    font-size:1.30rem;
    line-height:1.9;
    max-width:760px;
    margin:auto;

}

/*=====================================================
BADGE
======================================================*/

.badge-project{

    display:inline-block;

    padding:10px 24px;

    background:var(--orange);

    color:#fff;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

/*=====================================================
SECTIONS
======================================================*/

.projets-intro,
.featured-project,
.challenge-section,
.mission-section,
.gallery-section,
.partners-section,
.quote-section,
.project-cta{

    padding:100px 0;

}

/*=====================================================
TITRES
======================================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.5rem;

    color:var(--bleu);

    font-weight:700;

    font-family:'Poppins',sans-serif;

}

.title-line{

    width:90px;

    height:5px;

    background:var(--orange);

    margin:20px auto 0;

    border-radius:30px;

}

/*=====================================================
INTRODUCTION
======================================================*/

.intro-text{

    max-width:920px;

    margin:auto;

    text-align:center;

    color:#555;

    font-size:1.15rem;

    line-height:2;

}

/*=====================================================
PROJET À LA UNE
======================================================*/

.featured-project{

    background:#f8f9fb;

}

.featured-project h3{

    color:var(--bleu);

    font-size:2rem;

    font-weight:700;

    margin-bottom:25px;

}

.featured-project p{

    color:#555;

    line-height:2;

}

.partner-logo,
.raid-logo{

    width:100%;
    max-width:220px;

    transition:.35s;

}

.partner-logo:hover,
.raid-logo:hover{

    transform:scale(1.05);

}/*=====================================================
LE DÉFI
======================================================*/

.challenge-section{

    background:#ffffff;

}

.challenge-section p{

    color:#555;
    line-height:2;

}

.challenge-list{

    list-style:none;
    padding:0;
    margin:40px 0;

}

.challenge-list li{

    display:flex;
    align-items:center;

    gap:18px;

    margin-bottom:20px;

    color:#444;

    font-size:1.08rem;

}

.challenge-list i{

    width:48px;
    height:48px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--orange);

    color:#fff;

    font-size:1.2rem;

    flex-shrink:0;

}

.challenge-map{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.35s;

}

.challenge-map img{

    width:100%;
    display:block;

}

.challenge-map:hover{

    transform:translateY(-6px);

    box-shadow:0 28px 55px rgba(0,0,0,.20);

}

/*=====================================================
NOTRE MISSION
======================================================*/

.mission-section{

    background:#f8f9fb;

}

.mission-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    border-top:5px solid var(--orange);

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 50px rgba(0,0,0,.15);

}

.mission-card i{

    width:82px;
    height:82px;

    line-height:82px;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-size:2rem;

    margin-bottom:25px;

}

.mission-card h4{

    color:var(--bleu);

    font-size:1.3rem;

    font-weight:700;

    margin-bottom:18px;

}

.mission-card p{

    color:#666;

    line-height:2;

}

/*=====================================================
GALERIE
======================================================*/

.gallery-section{

    background:#fff;

}

.gallery-img{

    width:100%;

    height:270px;

    object-fit:cover;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.gallery-img:hover{

    transform:scale(1.05);

    box-shadow:0 30px 60px rgba(0,0,0,.20);

}

/*=====================================================
ANIMATIONS
======================================================*/

.featured-project,
.challenge-section,
.mission-section,
.gallery-section{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}/*=====================================================
PARTENAIRES
======================================================*/

.partners-section{

    background:#f8f9fb;

}

.partners-logos{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:60px;

}

.partners-logos img{

    max-width:180px;

    max-height:140px;

    width:auto;

    object-fit:contain;

    opacity:.85;

    transition:.35s;

}

.partners-logos img:hover{

    opacity:1;

    transform:translateY(-8px) scale(1.05);

}

/*=====================================================
CITATION
======================================================*/

.quote-section{

    background:
    linear-gradient(rgba(8,35,60,.90),rgba(8,35,60,.90)),
    url("../images/projets/bourbon-banner.jpg")
    center center/cover no-repeat;

    color:#fff;

    text-align:center;

}

.quote-section blockquote{

    max-width:900px;

    margin:auto;

    font-family:'Poppins',sans-serif;

    font-size:2rem;

    font-weight:600;

    line-height:1.7;

}

.quote-section span{

    display:block;

    margin-top:25px;

    color:var(--orange);

    font-size:1rem;

    letter-spacing:1px;

    font-weight:600;

}

/*=====================================================
CTA
======================================================*/

.project-cta{

    background:#fff;

    text-align:center;

}

.project-cta h2{

    color:var(--bleu);

    font-size:2.4rem;

    font-weight:700;

}

.project-cta p{

    max-width:720px;

    margin:25px auto 40px;

    color:#666;

    font-size:1.15rem;

    line-height:2;

}

.project-cta .btn{

    padding:15px 45px;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.project-cta .btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}

/*=====================================================
RESPONSIVE
======================================================*/

@media (max-width:992px){

    .projets-banner{

        min-height:450px;

    }

    .banner-content h1{

        font-size:3rem;

    }

    .banner-content p{

        font-size:1.15rem;

    }

    .section-title h2{

        font-size:2rem;

    }

    .partner-logo,
    .raid-logo{

        max-width:180px;

    }

}

@media (max-width:768px){

    .projets-banner{

        min-height:360px;

        padding:40px 20px;

    }

    .banner-content{

        padding:0;

    }

    .banner-content h1{

        font-size:2.2rem;

        letter-spacing:1px;

    }

    .banner-content p{

        font-size:1rem;

        line-height:1.8;

    }

    .badge-project{

        font-size:.9rem;

        padding:8px 18px;

    }

    .section-title{

        margin-bottom:40px;

    }

    .section-title h2{

        font-size:1.8rem;

    }

    .projets-intro,
    .featured-project,
    .challenge-section,
    .mission-section,
    .gallery-section,
    .partners-section,
    .quote-section,
    .project-cta{

        padding:70px 0;

    }

    .gallery-img{

        height:220px;

    }

    .quote-section blockquote{

        font-size:1.4rem;

    }

    .partners-logos{

        gap:35px;

    }

    .partners-logos img{

        max-width:120px;

        max-height:90px;

    }

}

/*=====================================================
FINITION PREMIUM
======================================================*/

html{

    scroll-behavior:smooth;

}

img{

    max-width:100%;

    display:block;

}

::selection{

    background:var(--orange);

    color:#fff;

}