.page-projet-header {
    margin-bottom: 80px;
    text-align: center;
    padding: 0 80px;
}

.page-projet-title {
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-projet-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.page-projet-content {
    display: flex;
    flex-direction: column;
}

.page-projet-bloc {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

.page-projet-bloc:nth-child(even) {
    flex-direction: row-reverse;
}

.page-projet-bloc-image-wrapper {
    width: 50%;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-projet-bloc-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.page-projet-bloc-text {
    width: 50%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-projet-bloc-title {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-projet-bloc-desc {
    font-size: 18px;
}

.page-projet-bloc-link {
    display: inline-block;
    font-size: 24px;
    padding: 2px 14px 6px 14px;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s ease-in-out transform;
    margin-top: 20px;
    width: fit-content;
}

.page-projet-bloc-link:hover {
    transform: scale(1.1);
}

/* Bloc 1 : Jaune pâle + Vert */
.page-projet-bloc-1 .page-projet-bloc-image-wrapper {
    background-color: #fff793;
}
.page-projet-bloc-1 .page-projet-bloc-text {
    background-color: #088c38;
    color: #fff;
}
.page-projet-bloc-1 .page-projet-bloc-link {
    background-color: #fff;
    color: #088c38;
}

/* Bloc 2 : Orange + Vert foncé */
.page-projet-bloc-2 .page-projet-bloc-image-wrapper {
    background-color: #ffb749;
}
.page-projet-bloc-2 .page-projet-bloc-text {
    background-color: #005139;
    color: #fff;
}
.page-projet-bloc-2 .page-projet-bloc-link {
    background-color: #fff;
    color: #005139;
}

/* Bloc 3 : Rose + Bordeaux */
.page-projet-bloc-3 .page-projet-bloc-image-wrapper {
    background-color: #ffd4c6;
}
.page-projet-bloc-3 .page-projet-bloc-text {
    background-color: #801b2d;
    color: #fff;
}
.page-projet-bloc-3 .page-projet-bloc-link {
    background-color: #fff;
    color: #801b2d;
}

/* ===== BLOC NOTRE FORCE ===== */
.page-projet-force {
    position: relative;
    padding:200px 40px;
    text-align: center;
    overflow: hidden;
}

.page-projet-force-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-projet-force-titles {
    padding:50px 0px;
    position:relative;
    margin-bottom:40px;
}

.page-projet-force-titles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../assets/images/LogoSlogan.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.page-projet-force-title {
    font-size: 60px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.page-projet-force-title--bold {
    font-weight: 900;
    font-family:'Thunder';
    font-size:80px;
}

.page-projet-force-subtitle {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom:40px;
}

.page-projet-force-engagements {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.page-projet-force-engagement-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-projet-force-engagement-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.page-projet-force-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--tooltip-bg, #333);
    color: var(--tooltip-color, #fff);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    margin-top: 8px;
    z-index: 10;
}

.page-projet-force-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--tooltip-bg, #333);
}

.page-projet-force-engagement-icon:hover .page-projet-force-tooltip {
    opacity: 1;
    visibility: visible;
}

.page-projet-force-paragraph {
    font-size: 32px;
    margin: 0 auto 40px;
    max-width: 900px;
}

.team-button {
    padding:3px 14px 6px 14px;
    font-size:24px;
    width:fit-content;
}

.force-center {
    display: flex;
    justify-content: center;
}

/* ===== SLIDER ===== */

.slider {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: calc((100vh - 220px - 20px) / 2) calc((100vh - 220px - 20px) / 2);
    gap: 20px;
    padding: 0px 80px;
    box-sizing: border-box;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slider .swiper {
    width: 100%;
    height: 100%;
    grid-row: span 2;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .swiper-pagination {
    position: absolute;
    bottom: 20px !important;
}

.slider .swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
    background-color: #fff !important;
    opacity: 40% !important;
}

.slider .swiper-pagination-bullet-active {
    width: 40px !important;
    height: 10px !important;
    border-radius: 30px !important;
    opacity: 100% !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .page-proposer-projet {
        padding: 0 20px;
    }

    .page-projet-title {
        font-size: 32px;
    }

    .page-projet-description {
        font-size: 16px;
    }

    .page-projet-content {
        gap: 60px;
    }

    .page-projet-bloc,
    .page-projet-bloc:nth-child(even) {
        flex-direction: column;
    }

    .page-projet-bloc-image-wrapper,
    .page-projet-bloc:nth-child(even) .page-projet-bloc-image-wrapper {
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 30px;
    }

    .page-projet-bloc-text,
    .page-projet-bloc:nth-child(even) .page-projet-bloc-text {
        width: 100%;
        border-radius: 0 0 20px 20px;
        padding: 30px;
    }

    .page-projet-bloc-image {
        height: 250px;
    }

    .page-projet-bloc-title {
        font-size: 28px;
    }

    .page-projet-bloc-desc {
        font-size: 16px;
    }

    /* Bloc Notre Force responsive */
    .page-projet-force {
        padding: 60px 20px;
    }

    .page-projet-force-title {
        font-size: 32px;
    }

    .page-projet-force-paragraph {
        font-size: 20px;
    }

    /* Slider responsive */
    .slider {
        display: block;
        padding: 0 20px;
    }

    .slider-img {
        display: none;
    }

    .hero-slider.swiper {
        width: 100%;
        height: 60vh;
        border-radius: 20px;
    }

    .hero-slider .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .hero-slider .swiper-pagination {
        bottom: 20px !important;
    }
}
