@charset "UTF-8";

/* 
 * Base : Animate.css (version optimisée pour 2025)
 */

/* --------------------------------------------- */
/* BASE ANIMATIONS (ANIMATE.CSS OPTIMISÉ) */
/* --------------------------------------------- */

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    animation-duration: 0.75s;
}

/* Bounce */
@keyframes bounce {
    from, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

/* Flash */
@keyframes flash {
    from, 50%, to { opacity: 1; }
    25%, 75% { opacity: 0; }
}
.flash { animation-name: flash; }

/* Pulse */
@keyframes pulse {
    from { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(1.05, 1.05, 1.05); }
    to { transform: scale3d(1, 1, 1); }
}
.pulse { animation-name: pulse; }

/* RubberBand */
@keyframes rubberBand {
    from { transform: scale3d(1, 1, 1); }
    30% { transform: scale3d(1.25, 0.75, 1); }
    40% { transform: scale3d(0.75, 1.25, 1); }
    50% { transform: scale3d(1.15, 0.85, 1); }
    65% { transform: scale3d(0.95, 1.05, 1); }
    75% { transform: scale3d(1.05, 0.95, 1); }
    to { transform: scale3d(1, 1, 1); }
}
.rubberBand { animation-name: rubberBand; }

/* Shake */
@keyframes shake {
    from, to { transform: translate3d(0, 0, 0); }
    10%, 30%, 50%, 70%, 90% { transform: translate3d(-10px, 0, 0); }
    20%, 40%, 60%, 80% { transform: translate3d(10px, 0, 0); }
}
.shake { animation-name: shake; }

/* HeadShake */
@keyframes headShake {
    0% { transform: translateX(0); }
    6.5% { transform: translateX(-6px) rotateY(-9deg); }
    18.5% { transform: translateX(5px) rotateY(7deg); }
    31.5% { transform: translateX(-3px) rotateY(-5deg); }
    43.5% { transform: translateX(2px) rotateY(3deg); }
    50% { transform: translateX(0); }
}
.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}

/* Swing */
@keyframes swing {
    20% { transform: rotate3d(0, 0, 1, 15deg); }
    40% { transform: rotate3d(0, 0, 1, -10deg); }
    60% { transform: rotate3d(0, 0, 1, 5deg); }
    80% { transform: rotate3d(0, 0, 1, -5deg); }
    to { transform: rotate3d(0, 0, 1, 0deg); }
}
.swing {
    transform-origin: top center;
    animation-name: swing;
}

/* Tada */
@keyframes tada {
    from { transform: scale3d(1, 1, 1); }
    10%, 20% { transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
    30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
    40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
    to { transform: scale3d(1, 1, 1); }
}
.tada { animation-name: tada; }

/* Wobble */
@keyframes wobble {
    from { transform: none; }
    15% { transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
    30% { transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
    45% { transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
    60% { transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
    75% { transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
    to { transform: none; }
}
.wobble { animation-name: wobble; }

/* Jello */
@keyframes jello {
    from, 11.1%, to { transform: none; }
    22.2% { transform: skewX(-12.5deg) skewY(-12.5deg); }
    33.3% { transform: skewX(6.25deg) skewY(6.25deg); }
    44.4% { transform: skewX(-3.125deg) skewY(-3.125deg); }
    55.5% { transform: skewX(1.5625deg) skewY(1.5625deg); }
    66.6% { transform: skewX(-0.78125deg) skewY(-0.78125deg); }
    77.7% { transform: skewX(0.390625deg) skewY(0.390625deg); }
    88.8% { transform: skewX(-0.1953125deg) skewY(-0.1953125deg); }
}
.jello {
    animation-name: jello;
    transform-origin: center;
}

/* BounceIn */
@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
    20% { transform: scale3d(1.1, 1.1, 1.1); }
    40% { transform: scale3d(0.9, 0.9, 0.9); }
    60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
    80% { transform: scale3d(0.97, 0.97, 0.97); }
    to { opacity: 1; transform: scale3d(1, 1, 1); }
}
.bounceIn { animation-name: bounceIn; }

/* FadeIn */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fadeIn { animation-name: fadeIn; }

/* FadeOut */
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
.fadeOut { animation-name: fadeOut; }

/* ZoomIn */
@keyframes zoomIn {
    from { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
    50% { opacity: 1; }
    to { transform: scale3d(1, 1, 1); }
}
.zoomIn { animation-name: zoomIn; }

/* ZoomOut */
@keyframes zoomOut {
    from { opacity: 1; }
    50% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
    to { opacity: 0; }
}
.zoomOut { animation-name: zoomOut; }

/* SlideInDown */
@keyframes slideInDown {
    from { transform: translate3d(0, -100%, 0); visibility: visible; }
    to { transform: translate3d(0, 0, 0); }
}
.slideInDown { animation-name: slideInDown; }

/* SlideOutUp */
@keyframes slideOutUp {
    from { transform: translate3d(0, 0, 0); }
    to { visibility: hidden; transform: translate3d(0, -100%, 0); }
}
.slideOutUp { animation-name: slideOutUp; }
/* --------------------------------------------- */
/* STYLES PERSONNALISÉS POUR CITADEL */
/* --------------------------------------------- */

/* --------------------------------------------- */
/* ZOOM AU SURVOL */
.img-hover-zoom {
    display: inline-block;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.img-hover-zoom img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* --------------------------------------------- */
/* FEATURES SECTION */
.features-section {
    text-align: center;
    padding: 50px 0px;
}

.intro-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #000;
    border: 2px solid #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #000;
    color: #fff;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.feature-item .letter {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    position: relative;
}

.feature-item p {
    font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: #777;
    margin-top: 10px;
}

/* --------------------------------------------- */
/* CUSTOM GRID */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    max-width: 100%;
    position: relative;
}

.custom-grid::before {
    content: '';
    position: absolute;
    top: 33.3%;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.custom-grid::after {
    content: '';
    position: absolute;
    top: 66.6%;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.custom-grid .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* --------------------------------------------- */
/* TESTIMONIALS */
.testimonials-title {
    text-align: center;
    color: #00C777;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: -40px;
    border: 4px solid #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item h3 {
    font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.testimonial-item p {
    color: #777;
    font-size: 16px;
    font-style: italic;
}

.testimonial-item span {
    display: block;
    font-weight: bold;
    color: #555;
    margin-top: 10px;
}

.testimonial-item i {
    color: #1DA1F2;
    font-size: 20px;
    margin-top: 10px;
}

/* --------------------------------------------- */
/* OWL CAROUSEL */
.owl-carousel {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
}

.owl-carousel .owl-item {
    transition: opacity 0.5s ease-in-out;
}

.owl-carousel .owl-item.active {
    opacity: 1;
    z-index: 2;
}

.owl-carousel .owl-item:not(.active) {
    opacity: 0;
    z-index: 1;
}

.owl-carousel .item img {
    max-width: 100%;
    height: auto;
    display: block;
    visibility: visible;
}

.g-imagegrid-link {
    pointer-events: none;
    cursor: default;
}

/* --------------------------------------------- */
/* IMAGE GRID (Grille d'images avec effet hover) */
.image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    margin: auto;
    font-family: "Trebuchet MS", sans-serif;
    text-align: center;
}

.image-grid .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-grid .image-container img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-radius: 10px;
}

.image-grid .image-container:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

.image-grid .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 41, 87, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-family: "Trebuchet MS", sans-serif;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-grid .image-container:hover .overlay {
    opacity: 1;
}

/* --------------------------------------------- */
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .custom-grid {
        grid-template-columns: 1fr;
    }
    .features-grid,
    .features-container {
        flex-direction: column;
        gap: 20px;
    }
    .testimonial-item {
        max-width: 100%;
    }
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------------- */
/* SERVICES GRID (Grille de services avec effet hover) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    margin: auto;
}

.services-grid .service-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services-grid .service-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-radius: 10px;
}

.services-grid .service-item:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

.services-grid .service-item .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-family: "Trebuchet MS", sans-serif;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.services-grid .service-item:hover .service-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------- */
/* LOGOS CAROUSEL (Carrousel de logos d'entreprises) */
.logos-carousel-section {
    text-align: center;
    padding: 50px 0;
    background: #fff;
}

.logos-title {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.logos-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logos-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.logos-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.logos-carousel .item img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logos-quote {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 1rem;
    font-style: italic;
    color: #666;
    margin-top: 20px;
    display: block;
}

.logos-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    z-index: 10;
}

.logos-carousel .owl-nav button {
    background: #ccc !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem !important;
    color: #fff !important;
    margin: 0 10px;
    opacity: 1 !important;
}

.logos-carousel .owl-nav button:hover {
    background: #999 !important;
}

.logos-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -50px;
}

.logos-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -50px;
}

.logos-carousel .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.logos-carousel .owl-dot {
    background: #ccc !important;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    display: inline-block;
}

.logos-carousel .owl-dot.active {
    background: #333 !important;
}

/* --------------------------------------------- */
/* FULL WIDTH BANNER WITH BUTTON (Bannière avec bouton) */
.full-width-banner {
    position: relative;
    max-width: 2500px;
    margin: 0 auto;
    overflow: hidden;
}

.full-width-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 1500px;
}

.full-width-banner .banner-overlay {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.full-width-banner .scroll-down-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.full-width-banner .scroll-down-btn:hover {
    background-color: #002957;
    color: #fff;
}

/* --------------------------------------------- */
/* TEXTE ET CARROUSEL AVEC CHEVAUCHEMENT */
.text-carousel-overlap {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0px 0;
}

.text-carousel-overlap .image-carousel {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 800px;
    z-index: 1;
}

.text-carousel-overlap .image-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.text-carousel-overlap .text-content {
    width: 35%;
    padding: 5px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0px;
    top: 30%;
    transform: translateY(-50%);
    z-index: 2;
}

.text-carousel-overlap .text-content .title {
    font-size: 2.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.text-carousel-overlap .text-content .vertical-line {
    width: 50px;
    height: 2px;
    background: #002957;
    margin: 20px auto;
}

.text-carousel-overlap .text-content .description {
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.g-block.text-and-carousel {
    display: block;
}

@media (max-width: 768px) {
    .text-carousel-overlap {
        padding: 20px;
    }
    .text-carousel-overlap .image-carousel {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .text-carousel-overlap .text-content {
        width: 90%;
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 0 auto;
    }
    .text-carousel-overlap .image-carousel {
        height: 300px;
    }
}

/* --------------------------------------------- */
/* SECTION IMAGE ET TEXTE MARIAGE HIVER */
.reveal-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.g-block.winter-wedding-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.winter-wedding-section .g-block {
    flex: 1;
    max-width: 50%;
}

.winter-wedding-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(100%);
}

.winter-wedding-text {
    padding: 20px;
}

.winter-wedding-text .subtitle {
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #002957;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.winter-wedding-text .title {
    font-size: 2.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.winter-wedding-text .vertical-line {
    width: 50px;
    height: 2px;
    background: #002957;
    margin: 20px 300px;
    position: center;
}

.winter-wedding-text .description {
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.winter-wedding-text .contact-button {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.winter-wedding-text .contact-button:hover {
    background: #002957;
    color: #fff;
}

@media (max-width: 768px) {
    .g-block.winter-wedding-section {
        flex-direction: column;
        padding: 20px;
    }
    .winter-wedding-section .g-block {
        flex: none;
        max-width: 100%;
    }
    .winter-wedding-image img {
        height: 300px;
    }
    .winter-wedding-text {
        text-align: center;
    }
    .winter-wedding-text .vertical-line {
        margin: 20px auto;
    }
}

/* --------------------------------------------- */
/* SECTION TÉMOIGNAGES */
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

.testimonials-container .subtitle {
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #002957;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonials-container .title {
    font-size: 2.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.testimonials-container .vertical-line {
    width: 50px;
    height: 2px;
    background: #002957;
    margin: 20px auto;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.testimonials-carousel .testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonials-carousel .testimonial-title {
    font-size: 1.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.testimonials-carousel .testimonial-text {
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    color: #666;
    line-height: 1.6;
}

.testimonials-carousel .swiper-button-prev,
.testimonials-carousel .swiper-button-next {
    color: #666;
    width: 40px;
    height: 40px;
}

.testimonials-carousel .swiper-button-prev:after,
.testimonials-carousel .swiper-button-next:after {
    font-size: 20px;
}

.testimonials-carousel .swiper-pagination {
    margin-top: 20px;
}

.testimonials-carousel .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
}

.testimonials-carousel .swiper-pagination-bullet-active {
    background: #666;
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 20px;
    }
    .testimonials-carousel {
        max-width: 100%;
        padding: 10px;
    }
    .testimonials-carousel .testimonial {
        padding: 20px;
    }
}

/* --------------------------------------------- */
/* SECTION EXPÉRIENCES À VIVRE */
.experiences-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

.experiences-title {
    margin-bottom: 40px;
}

.experiences-title .title-part1 {
    font-size: 2.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
}

.experiences-title .title-part2 {
    font-size: 2.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #a8c7a8;
    text-transform: uppercase;
    margin-left: 10px;
}

.experiences-section .g-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.experience-item {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.experience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.experience-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.experience-text {
    font-size: 1.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .experiences-section {
        padding: 20px;
    }
    .experiences-section .g-block {
        flex-direction: column;
        gap: 10px;
    }
    .experience-item {
        height: 200px;
    }
    .experience-text {
        font-size: 1.2rem;
    }
    .experiences-title .title-part1,
    .experiences-title .title-part2 {
        font-size: 2rem;
    }
}

/* --------------------------------------------- */
/* TEXTE ET CARROUSEL AVEC CHEVAUCHEMENT (TEXTE À DROITE) */
.text-carousel-overlap-right {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0px 0;
}

.text-carousel-overlap-right .image-carousel {
    width: 80%;
    height: 600px;
    position: relative;
    z-index: 1;
    margin-left: 0;
    margin-right: auto;
}

.text-carousel-overlap-right .image-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.text-carousel-overlap-right .text-content {
    width: 35%;
    padding: 20px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 20px;
    top: 35%;
    transform: translateY(-50%);
    z-index: 2;
}

.text-carousel-overlap-right .text-content .title {
    font-size: 2.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.text-carousel-overlap-right .text-content .vertical-line {
    width: 50px;
    height: 2px;
    background: #002957;
    margin: 20px auto;
}

.text-carousel-overlap-right .text-content .description {
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.g-block.text-and-carousel-right {
    display: block;
}

@media (max-width: 768px) {
    .text-carousel-overlap-right {
        padding: 20px;
    }
    .text-carousel-overlap-right .image-carousel {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .text-carousel-overlap-right .text-content {
        width: 90%;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin: 0 auto;
    }
    .text-carousel-overlap-right .image-carousel {
        height: 300px;
    }
}

/* --------------------------------------------- */
/* TEXTE ET CARROUSEL AVEC CHEVAUCHEMENT (TEXTE À GAUCHE) */
.text-carousel-overlap-left {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0px 0;
}

.text-carousel-overlap-left .image-carousel {
    width: 80%;
    height: 600px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: 0;
}

.text-carousel-overlap-left .image-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.text-carousel-overlap-left .text-content {
    width: 35%;
    padding: 20px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 20px;
    top: 35%;
    transform: translateY(-50%);
    z-index: 2;
}

.text-carousel-overlap-left .text-content .title {
    font-size: 2.5rem;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.text-carousel-overlap-left .text-content .vertical-line {
    width: 50px;
    height: 2px;
    background: #002957;
    margin: 20px auto;
}

.text-carousel-overlap-left .text-content .description {
    font-size: 1rem;
    font-family: "Trebuchet MS", sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.g-block.text-and-carousel-left {
    display: block
}

/* --------------------------------------------- */
/* SECTION : GRILLE DES DESTINATIONS (5 BLOCS) */
.destination-grid {
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
    max-width: none;
    padding: 0;
}

.destination-item {
    flex: 1 1 20%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
}

.destination-item .image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    z-index: 0;
    position: relative;
}

.destination-item .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 3;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.destination-item:hover .image-wrapper::before {
    opacity: 1;
}

.destination-item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-item:hover .image-wrapper img {
    transform: scale(1.1);
}

.destination-item .text-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    text-align: left;
    background: none;
    padding: 10px;
    border-radius: 0;
    z-index: 2;
}

.destination-item .text-overlay .duration {
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.destination-item .text-overlay .title {
    margin: 5px 0 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.destination-item .text-overlay .title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.destination-item .text-overlay .title a:hover {
    color: #ddd;
}

@media (max-width: 768px) {
    .destination-item {
        flex: 1 1 45%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .destination-item {
        flex: 1 1 100%;
    }
}

/* --------------------------------------------- */
/* SECTION : SALLES DE RÉCEPTION (2 BLOCS) */
.reception-rooms {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.room-item {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
}

.room-item .image-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.room-item .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.room-item:hover .image-wrapper::before {
    opacity: 1;
}

.room-item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: 0;
}

.room-item:hover .image-wrapper img {
    transform: scale(1.1);
}

.room-item .text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-align: left;
    transition: bottom 0.3s ease;
    z-index: 2;
}

.room-item .text-overlay .title {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.room-item .text-overlay .description {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-item:hover .text-overlay {
    bottom: 50px;
}

.room-item:hover .text-overlay .description {
    opacity: 1;
}

@media (max-width: 768px) {
    .reception-rooms {
        flex-direction: column;
        gap: 10px;
    }
    .room-item {
        flex: 1 1 100%;
    }
    .room-item .image-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .room-item .image-wrapper {
        height: 250px;
    }
    .room-item .text-overlay .title {
        font-size: 1.5rem;
    }
    .room-item .text-overlay .description {
        font-size: 0.9rem;
    }
}

/* --------------------------------------------- */
/* SECTION : TITRE DE LA GALERIE */
.gallery-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 20px;
}

.gallery-title .subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gallery-title .title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.gallery-title .vertical-line {
    width: 2px;
    height: 50px;
    background: #ffffff;
    display: block;
    margin: 20px auto;
}

/* --------------------------------------------- */
/* SECTION : GALERIE MARIAGE (IMAGES) */
.wedding-gallery {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.gallery-row--three {
    justify-content: space-between;
}

.gallery-row--two {
    justify-content: center;
}

.gallery-item {
    flex: 1 1 33%;
    position: relative;
    overflow: hidden;
}

.gallery-row--two .gallery-item {
    flex: 1 1 48%;
    max-width: 48%;
}

.gallery-item .image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-wrapper img {
    transform: scale(1);
}

@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
        gap: 10px;
    }
    .gallery-item {
        flex: 1 1 100%;
    }
    .gallery-row--two .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .gallery-item .image-wrapper {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-item .image-wrapper {
        height: 200px;
    }
}

/* --------------------------------------------- */
/* SECTION : NAVIGATION CHAMBRES ET LOGEMENTS */
.room-navigation {
    text-align: center;
    padding: 20px 0;
    background: #fff;
}

.nav-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #002957;
}

.nav-divider {
    color: #002957;
    font-size: 1.2rem;
}

.room-section {
    padding: 50px 20px;
    min-height: 400px;
    scroll-margin-top: 80px;
}

.room-section h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.room-section p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 1rem;
    }
    .nav-divider {
        font-size: 1rem;
    }
    .room-section {
        padding: 30px 15px;
    }
    .room-section h2 {
        font-size: 1.8rem;
    }
    .room-section p {
        font-size: 1rem;
    }
}

/* --------------------------------------------- */
/* SECTION : GRILLE D'IMAGES */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 300px;
}

.gallery-item-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    height: 300px;
}

.gallery-item-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
}

.gallery-item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 200px;
}

.gallery-item-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    height: 200px;
}

.reveal-on-scroll .gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll .gallery-item-1 {
    transition-delay: 0s;
}

.reveal-on-scroll .gallery-item-2 {
    transition-delay: 0.2s;
}

.reveal-on-scroll .gallery-item-3 {
    transition-delay: 0.4s;
}

.reveal-on-scroll .gallery-item-4 {
    transition-delay: 0.6s;
}

.reveal-on-scroll .gallery-item-5 {
    transition-delay: 0.8s;
}

@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5 {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 250px;
    }
}

/* --------------------------------------------- */
/* SECTION : GALERIE DES LOGEMENTS INSOLITES */
.insolite-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.insolite-gallery .first-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insolite-gallery .second-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 66.66%;
    margin: 0 auto;
}

.insolite-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 500px;
    width: 100%;
    max-width: 800px;
}

.insolite-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insolite-item:hover img {
    transform: scale(1.1);
}

.reveal-on-scroll .insolite-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll .insolite-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll .insolite-item-1 {
    transition-delay: 0s;
}

.reveal-on-scroll .insolite-item-2 {
    transition-delay: 0.2s;
}

.reveal-on-scroll .insolite-item-3 {
    transition-delay: 0.4s;
}

.reveal-on-scroll .insolite-item-4 {
    transition-delay: 0.6s;
}

.reveal-on-scroll .insolite-item-5 {
    transition-delay: 0.8s;
}

@media (max-width: 768px) {
    .insolite-gallery .first-row,
    .insolite-gallery .second-row {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    .insolite-item {
        height: 250px;
    }
}

/* --------------------------------------------- */
/* SECTION : GALERIE DES ACTIVITÉS */
#activites.room-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.activites-gallery {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

.activites-gallery .first-row,
.activites-gallery .second-row,
.activites-gallery .third-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activite-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    width: 100%;
    max-width: 450px;
    cursor: pointer;
    background-color: #f5f5f5;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.activite-item img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.activite-item:hover img {
    transform: scale(1.1);
}

.activite-item h3 {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 1.2rem;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
    padding: 0 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 20px;
}

.modal-text {
    flex: 1;
}

.modal-text h3 {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 1.5rem;
    color: #002957;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-text p {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 13pt;
    color: #000000;
    text-align: center;
    line-height: 1.6;
}

.modal-image {
    flex: 0 0 200px;
}

.modal-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #002957;
    cursor: pointer;
}

.close:hover {
    color: #000000;
}

@media (max-width: 768px) {
    .activites-gallery .first-row,
    .activites-gallery .second-row,
    .activites-gallery .third-row {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    .activite-item {
        height: 250px;
        max-width: 100%;
    }
    .modal {
        justify-content: center;
        padding-right: 0;
    }
    .modal-content {
        flex-direction: column;
        max-width: 90%;
    }
    .modal-image {
        flex: 0 0 auto;
        width: 100%;
    }
    .modal-image img {
        height: 200px;
    }
}

/* --------------------------------------------- */
/* SECTION : CATÉGORIES (SÉMINAIRES, MARIAGES, ETC.) */
.categories-section {
    padding: 40px 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.category-block {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 80px;
}

.category-block.left {
    flex-direction: row;
}

.category-block.right {
    flex-direction: row-reverse;
}

.category-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.category-image:hover {
    transform: scale(1.05);
}

.category-text {
    flex: 1;
    text-align: left;
}

.category-text h3 {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 2rem;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.category-text p {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 1.5rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.cta-button {
    display: block;
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    background-color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin: 0 auto;
    width: fit-content;
}

.cta-button:hover {
    background-color: #002957;
    color: #FFFFFF;
}

/* Responsive pour petits écrans d'ordinateur et tablettes (1024px et moins) */
@media (max-width: 1024px) {
    .categories-section {
        padding: 30px 15px; /* Réduit le padding pour plus d'espace */
    }

    .category-block {
        gap: 50px; /* Réduit l'espace entre les éléments */
        margin-bottom: 60px; /* Réduit la marge inférieure */
    }

    .category-image {
        height: 500px; /* Réduit la hauteur des images pour éviter un défilement excessif */
    }

    .category-text h3 {
        font-size: 1.8rem; /* Légère réduction de la taille du titre */
    }

    .category-text p {
        font-size: 1.3rem; /* Réduit la taille du texte pour plus de lisibilité */
    }

    .cta-button {
        font-size: 0.9rem; /* Réduit légèrement la taille du bouton */
        padding: 8px 18px; /* Ajuste le padding du bouton */
    }
}

/* Responsive pour tablettes et petits écrans (768px et moins) */
@media (max-width: 768px) {
    .category-block {
        flex-direction: column !important; /* Force le mode colonne */
        gap: 30px; /* Réduit encore l'espace entre les éléments */
        margin-bottom: 50px; /* Réduit la marge inférieure */
    }

    .category-text {
        text-align: center; /* Centre le texte */
    }

    .category-image {
        height: 350px; /* Réduit davantage la hauteur des images */
    }

    .category-text h3 {
        font-size: 1.5rem; /* Réduit la taille du titre */
    }

    .category-text p {
        font-size: 1.1rem; /* Réduit la taille du texte */
        line-height: 1.5; /* Ajuste l'interligne pour plus de lisibilité */
    }

    .cta-button {
        font-size: 0.85rem; /* Réduit la taille du bouton */
        padding: 8px 16px; /* Ajuste le padding */
    }
}

/* Responsive pour smartphones (576px et moins) */
@media (max-width: 576px) {
    .categories-section {
        padding: 20px 10px; /* Réduit encore le padding pour les petits écrans */
    }

    .category-block {
        gap: 20px; /* Réduit l'espace entre les éléments */
        margin-bottom: 40px; /* Réduit la marge inférieure */
    }

    .category-image {
        height: 250px; /* Réduit la hauteur des images pour les smartphones */
    }

    .category-images {
        gap: 15px; /* Réduit l'espace entre les images */
    }

    .category-text h3 {
        font-size: 1.2rem; /* Réduit encore la taille du titre */
    }

    .category-text p {
        font-size: 0.9rem; /* Réduit la taille du texte pour éviter qu'il ne soit trop petit */
        line-height: 1.4; /* Ajuste l'interligne */
    }

    .cta-button {
        font-size: 0.8rem; /* Réduit la taille du bouton */
        padding: 6px 14px; /* Ajuste le padding pour un bouton plus compact */
    }
}

/* --------------------------------------------- */
/* Section Contact */
.contact-section {
    position: relative;
    margin: 40px 0;
}

.contact-map {
    width: 100%;
    max-width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.contact-info {
    position: absolute;
    top: -90px;
    right: 20px;
    width: 100%;
    max-width: 400px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.contact-info h3 {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.contact-info p {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 1rem;
    color: #666666;
    margin-bottom: 10px;
}

.contact-info a {
    color: #000000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .map-link {
    display: block;
    margin: 15px 0;
    font-weight: bold;
}

.contact-info .contact-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.contact-info .contact-button:hover {
    background-color: #002957;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-info {
        position: static;
        max-width: 100%;
        margin: 0 auto;
        top: 0;
    }
    .contact-map iframe {
        height: 300px;
    }
}

/* --------------------------------------------- */
/* Section : Blocs de navigation */
.navigation-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f5f5f0;
}

.nav-block {
    position: relative;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.nav-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.nav-arrow {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-arrow::before {
    content: "→";
    font-size: 18px;
    color: #000000;
}

.nav-block:hover .nav-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-block:hover .nav-arrow {
    opacity: 1;
}

.nav-block:hover {
    transform: scale(1.05);
}

.nav-block h3 {
    font-family: 'Trebuchet MS', Geneva, sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
    background-color: #000000;
    padding: 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .nav-block {
        max-width: 100%;
    }
    .nav-image {
        height: 300px;
    }
    .nav-block h3 {
        font-size: 1rem;
    }
}

/* Style pour la classe srp-centered-title (pour les autres titres) */
.srp-centered-title {
    text-align: center; /* Centre le texte */
    color: black; /* Met la couleur en noir */
    font-size: 0.8em; /* Réduit légèrement la taille de la police */
    font-family: "Trebuchet MS", sans-serif; /* Applique la police Trebuchet MS */
}
#g-navigationmain {
    background-color: #002957;
    height: 100px; /* Ajustez la hauteur */
}