:root {
    --primary-color: #4c7da8;
    --secondary-color: #578a5a;
    --bg-color: #f4f6f8;
    --card-bg: #ffffff;
    --text-color: #333;
    --text-light: #666;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease-in-out;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { 
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 20px; 
}

/* === HEADER === */
header { 
    text-align: center; 
    margin-bottom: 2rem; 
    padding: 20px 0; 
}

.logo { 
    max-width: 280px; 
    height: auto; 
    margin-bottom: 1rem; 
}

h1 { 
    font-size: 2rem; 
    color: var(--primary-color); 
    line-height: 1.2; 
}

.tagline { 
    color: var(--text-light); 
    font-size: 1.1rem; 
}

/* === MENU NAVIGATION STICKY === */
.sticky-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    margin: 0 -20px 2rem -20px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(76, 125, 168, 0.1);
    color: var(--primary-color);
}

.nav-menu a.active {
    background: var(--primary-color);
    color: white;
}

h2 { 
    font-size: 1.5rem; 
    color: var(--secondary-color); 
    margin: 2.5rem 0 1.5rem 0; 
    border-bottom: 2px solid #e2e8f0; 
    padding-bottom: 0.5rem; 
    display: inline-block;
}

h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1.2rem 0;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.4rem;
    display: inline-block;
}

/* === HERO === */
.hero-wrapper { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    margin-bottom: 3rem; 
}

.hero-image { 
    width: 100%; 
    height: auto; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow); 
}

/* === FLYER === */
.flyer-display-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 20px; 
}

.flyer-page { 
    width: 100%; 
    height: auto; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow); 
    border: 1px solid #eee; 
    transition: var(--transition);
}

.flyer-page:hover { 
    transform: scale(1.01); 
}

.flyer-display-grid.single {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.flyer-display-grid.single img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    transition: var(--transition);
    cursor: zoom-in;
}

.flyer-display-grid.single img:hover {
    transform: scale(1.01);
}

/* === AGENDA === */
.agenda-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

.event-card {
    background: var(--card-bg); 
    padding: 1.5rem; 
    border-radius: var(--radius);
    border-left: 5px solid var(--secondary-color); 
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover { 
    transform: translateY(-3px); 
}

.event-date { 
    font-weight: 700; 
    color: var(--primary-color); 
    display: block; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.event-loc { 
    font-size: 0.9rem; 
    color: var(--text-light); 
    margin-top: 5px; 
    display: block; 
}

.btn-agenda {
    background: transparent; 
    border: 1px solid var(--primary-color); 
    color: var(--primary-color);
    padding: 0.6rem; 
    border-radius: 6px; 
    cursor: pointer; 
    width: 100%; 
    margin-top: 1rem; 
    font-weight: 600; 
    transition: var(--transition);
}

.btn-agenda:hover { 
    background: var(--primary-color); 
    color: white; 
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-download:hover {
    background: var(--primary-dark, #1a4fa0);
    transform: translateY(-2px);
}

/* === CONTACT & SOCIAL === */
.social-links { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
    margin-top: 1rem; 
}

.social-btn {
    padding: 0.8rem 1.5rem; 
    background: white; 
    color: var(--text-color);
    text-decoration: none; 
    border-radius: 50px; 
    font-size: 0.9rem; 
    box-shadow: var(--shadow); 
    transition: var(--transition); 
    font-weight: 500;
}

.social-btn:hover { 
    transform: translateY(-2px); 
}

.social-btn-fb { 
    background: #e7f5ff; 
    color: #1877f2; 
}

.social-btn-fb:hover { 
    background: #d1e4fc; 
}

.social-btn-inst { 
    background: #ffeeef; 
    color: #c13584; 
}

.social-btn-inst:hover { 
    background: #f3d7e6; 
}

.btn-email {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    padding: 1rem 2rem; 
    background: #e2e8f0; 
    color: var(--primary-color);
    text-decoration: none; 
    border-radius: var(--radius); 
    font-weight: 600; 
    margin-top: 1rem; 
    transition: var(--transition);
}

.btn-email:hover { 
    background: #cbd5e1; 
    transform: translateY(-2px); 
}

/* === MODALE === */
.calendar-modal {
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.5); 
    display: none; 
    justify-content: center; 
    align-items: center;
}

.modal-content { 
    background: white; 
    padding: 25px; 
    border-radius: 12px; 
    width: 90%; 
    max-width: 350px; 
    text-align: center; 
    position: relative; 
}

.close { 
    position: absolute; 
    top: 10px; 
    right: 15px; 
    font-size: 24px; 
    cursor: pointer; 
    color: #aaa; 
}

.cal-option { 
    display: block; 
    padding: 12px; 
    margin: 10px 0; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 6px; 
    color: white; 
}

.cal-option.google { 
    background: #4285F4; 
}

.cal-option.apple { 
    background: #333; 
}

/* === MODALE IMAGE PLEIN ÉCRAN === */
.image-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.image-modal.show {
    display: flex;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.image-modal-close:hover {
    color: #ccc;
    transform: scale(1.1);
}

/* Carrousel dans la modal */
.image-modal-content {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: calc(100vh - 80px);
}

.image-modal-content .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    align-items: center;
    height: calc(100% - 30px); /* laisser place aux indicateurs */
    padding: 0 50%;
}

.image-modal-content .carousel-slide {
    flex-shrink: 0;
    width: 80vw;
    max-width: 1000px;
    height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.image-modal-content .carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.image-modal-content .carousel-slide.adjacent {
    opacity: 0.3;
    transform: scale(0.85);
    z-index: 1;
    cursor: pointer;
}

.image-modal-content .carousel-slide.hidden {
    opacity: 0;
    transform: scale(0.7);
    z-index: 0;
}

.image-modal-content .zoomable-image-container {
    position: relative;
    display: inline-block; /* épouse exactement l'image pour la loupe */
}

.image-modal-content .modal-image {
    display: block;
    max-width: 80vw;
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    cursor: zoom-in;
}

.image-modal-content .carousel-slide.active .modal-image:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    cursor: zoom-in;
}

/* Flèches de navigation dans la modal */
.image-modal .modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2002;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 15px 20px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.image-modal .modal-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.image-modal .modal-arrow.prev {
    left: 20px;
}

.image-modal .modal-arrow.next {
    right: 20px;
}

/* Indicateurs dans la modal */
.image-modal .carousel-indicators {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2002;
}

.image-modal .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.image-modal .carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.image-modal .carousel-indicator.active {
    background: white;
    transform: scale(1.3);
}

/* === SECTION ÉLECTION === */
#election {
    margin: 3rem 0;
}

#election p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.election-link {
    display: inline-block;
    margin-top: 4px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.election-link:hover {
    text-decoration: underline;
}

.bulletin-section {
    margin-top: 2rem;
}

.bulletin-section h3 {
    margin-bottom: 1rem;
}

.bulletin-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bulletin-img {
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.bulletin-note {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.bulletin-note p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.bulletin-note p:last-child {
    margin-bottom: 0;
}

.bulletin-warning {
    color: #c0392b !important;
    font-weight: 600;
}

/* === FOOTER === */
footer { 
    margin-top: 4rem; 
    padding: 2rem; 
    background: #fff; 
    border-top: 1px solid #eee; 
    border-radius: var(--radius) var(--radius) 0 0; 
}

.legal-content { 
    font-size: 0.75rem; 
    color: #777; 
    line-height: 1.4; 
    text-align: left; 
}

.legal-content p { 
    margin-bottom: 5px; 
}

/* === LOUPE DE VISIONNAGE (Desktop uniquement) === */
.zoomable-image-container {
    position: relative;
    overflow: visible;
}

.flyer-display-grid .zoomable-image-container {
    cursor: zoom-in;
}

.zoomable-image-container img {
    display: block;
}

.zoom-lens {
    position: fixed;
    border: 3px solid var(--primary-color);
    width: 550px;
    height: 550px;
    pointer-events: none;
    display: none;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.5);
    z-index: 10000;
    transform: translate(-50%, -50%);
}

/* === CARROUSEL D'IMAGES === */
.carousel-section {
    margin: 3rem 0;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Effet de fondu transparent sur les côtés du carrousel */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    z-index: 5;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, var(--bg-color) 10%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, var(--bg-color) 10%, transparent 100%);
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    touch-action: manipulation;
    padding: 0 50%;
}

.carousel-slide {
    flex-shrink: 0;
    width: 280px;
    max-width: 85vw;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}

.carousel-slide.active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.carousel-slide.active img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.carousel-slide.adjacent {
    transform: scale(0.9);
    opacity: 1;
    z-index: 1;
}

.carousel-slide.adjacent img {
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-slide.adjacent img:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.carousel-slide.hidden {
    transform: scale(0.7);
    opacity: 0;
    pointer-events: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--primary-color);
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev { 
    left: 10px; 
}

.carousel-arrow.next { 
    right: 10px; 
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* === SECTION CONTACT STICKY === */
.contact-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.contact-sticky.visible {
    transform: translateY(0);
}

.contact-sticky-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-sticky-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-sticky-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-sticky-btn {
    padding: 8px 16px;
    background: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
}

.contact-sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.contact-sticky-btn.fb { 
    background: #e7f5ff; 
    color: #1877f2; 
}

.contact-sticky-btn.fb:hover { 
    background: #d1e4fc; 
}

.contact-sticky-btn.inst { 
    background: #ffeeef; 
    color: #c13584; 
}

.contact-sticky-btn.inst:hover { 
    background: #f3d7e6; 
}

.contact-sticky-btn.email { 
    background: #e2e8f0; 
    color: var(--primary-color); 
}

.contact-sticky-btn.email:hover { 
    background: #cbd5e1; 
}

.contact-sticky-btn.agenda { 
    background: #f0fdf4; 
    color: var(--secondary-color); 
    font-weight: 600;
}

.contact-sticky-btn.agenda:hover { 
    background: #dcfce7; 
}

.contact-sticky-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* === CAROUSEL PRESSE - TITRE ARTICLE === */
.press-slide-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #2c3e50;
    margin: 0 0 10px 0;
    padding: 6px 10px;
    background: rgba(76, 125, 168, 0.08);
    border-left: 3px solid var(--primary, #4c7da8);
    border-radius: 4px;
    line-height: 1.4;
}

/* === CAROUSEL PRESSE - BOUTON OVERLAY === */
.press-slide-container {
    position: relative;
    width: 100%;
}

.press-link-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(76, 125, 168, 0.7);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.press-link-overlay:hover {
    background: rgba(76, 125, 168, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.press-link-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.press-link-text {
    white-space: nowrap;
}

/* Bouton vidéo (centré et plus gros) */
.press-video-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(76, 125, 168, 0.9);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.press-video-link:hover {
    background: rgba(76, 125, 168, 1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.press-video-link .press-link-icon {
    font-size: 1.4rem;
}

/* Bouton presse article dans la modal (en bas à droite) */
.modal-press-link.press-link-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Note: Les boutons vidéo (.modal-press-link.press-video-link) héritent du positionnement centré défini dans .press-video-link */

/* === MEDIA QUERIES === */
@media (min-width: 768px) {
    .hero-wrapper { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        align-items: center; 
        gap: 40px; 
    }
    
    .contact-sticky-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
    
    .contact-sticky-section {
        width: auto;
        text-align: center;
    }
    
    .flyer-display-grid { 
        grid-template-columns: 1fr 1fr; 
    }

    .flyer-display-grid.single {
        grid-template-columns: 1fr;
    }
    
    .agenda-grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px; 
    }
    
    .btn-email { 
        width: auto; 
    }
    
    .legal-content { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px; 
    }
    
    /* Carrousel plus large sur desktop pour format A4 portrait */
    .carousel-slide {
        width: 450px;
    }
    
    /* Fondu plus court sur desktop */
    .carousel-container::before,
    .carousel-container::after {
        width: 18%;
    }
    
    .carousel-arrow {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .carousel-arrow.prev { 
        left: 20px; 
    }
    
    .carousel-arrow.next { 
        right: 20px; 
    }
}

@media (max-width: 767px) {
    /* Désactiver la loupe sur mobile/tablette */
    .zoom-lens { 
        display: none !important; 
    }
    
    .sticky-nav {
        margin: 0 -20px 1.5rem -20px;
    }
    
    .nav-menu {
        gap: 3px;
    }
    
    .nav-menu a {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .contact-sticky-content {
        gap: 15px;
    }
    
    .contact-sticky-section {
        width: 100%;
        justify-content: center;
    }
    
    .contact-sticky-text {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
    }
    
    .contact-sticky-links {
        width: 100%;
        justify-content: center;
    }
    
    .press-link-overlay {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .press-video-link {
        font-size: 1rem;
        padding: 14px 22px;
    }
    
    .press-video-link .press-link-icon {
        font-size: 1.2rem;
    }
    
    .press-link-icon {
        font-size: 1rem;
    }
    
    /* Modal carrousel sur mobile */
    .image-modal-content {
        width: 100vw;
        height: 90vh;
    }
    
    .image-modal-content .carousel-slide {
        width: 85vw;
    }
    
    .image-modal .modal-arrow {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
    
    .image-modal .modal-arrow.prev {
        left: 10px;
    }
    
    .image-modal .modal-arrow.next {
        right: 10px;
    }
    
    .image-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .image-modal-content .modal-image {
        max-height: none;
    }
}

/* === PROTECTION DES IMAGES === */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    pointer-events: auto;
}

/* Désactiver la sélection sur les conteneurs d'images */
.zoomable-image-container,
.carousel-slide,
.hero-col-img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
