@media (min-width: 901px) {
    .presentation-flex {
        align-items: stretch;
    }
    .presentation-text {
        text-align: right;
        align-items: flex-end;
        justify-content: flex-end;
        width: 100%;
        max-width: none;
    }
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0; 
    padding: 0; 
    padding-top: 80px;
}

/* Colors */
:root {
    --navy: #525744;
    
    --dark: #0A0A0A;
    --white: #ffffff;
    --black: #000000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    display: flex !important;
    align-items: center !important;
    position: fixed !important;
    top: 0 !important;
    width: 100vw !important; /* Utilise la largeur complète du viewport */
    margin-left: calc(50% - 50vw) !important; /* Centre et étend au-delà du container */
    z-index: 1000 !important;
    background-color: #808b75 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 80px !important;
}

/* Aligne le logo complètement à gauche et la nav à droite */
.header-content {
    width: 100% !important;
    max-width: none !important; /* Supprime la limitation de largeur */
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 3rem !important;
    height: 80px !important;
    background-color: #808b75 !important;
}

/* Force le logo à coller à gauche */
.logo {
    margin-left: 1.5rem !important;
    margin-right: 2rem !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
    text-decoration: none !important; /* Supprime la décoration du lien */
    color: inherit !important; /* Hérite de la couleur du parent */
    transition: opacity 0.3s ease !important; /* Effet de transition au survol */
}

.logo:hover {
    opacity: 0.8 !important; /* Effet de survol subtil */
}

.logo:focus {
    outline: 2px solid #f3e7d7 !important; /* Bordure de focus pour l'accessibilité */
    outline-offset: 2px !important;
}

.logo-circle {
    width: 80px !important;
    height: 60px !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: transparent !important;
}
.logo-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Responsive logo */
@media (min-width: 768px) {
    .logo-circle {
        width: 100px !important;
        height: 70px !important;
    }
}
@media (min-width: 1024px) {
    .logo {
        margin-top: -10px !important;
    }
    .logo-circle {
        width: 120px !important;
        height: 80px !important;
    }
}

/* Navigation */
.nav-desktop {
    display: none !important;
    gap: 2.5rem !important;
    align-items: center !important;
}

.nav-desktop a {
    color: #f3e7d7 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    transition: opacity 0.3s !important;
    line-height: 1 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 4px !important;
}

.nav-desktop a:hover {
    opacity: 0.8 !important;
    background-color: rgba(243, 231, 215, 0.1) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    margin-top: 0; /* Pas de margin-top car on a déjà padding-top sur body */
}

.hero-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: calc(70vh - 70px);
        margin-top: 0; /* Pas de margin-top car on a déjà padding-top sur body */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--beige);
}

.gallery h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 10px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hauteurs variées pour effet mosaïque */
.gallery-item:nth-child(1) { grid-row-end: span 30; }
.gallery-item:nth-child(2) { grid-row-end: span 25; }
.gallery-item:nth-child(3) { grid-row-end: span 35; }
.gallery-item:nth-child(4) { grid-row-end: span 28; }
.gallery-item:nth-child(5) { grid-row-end: span 32; }
.gallery-item:nth-child(6) { grid-row-end: span 26; }
.gallery-item:nth-child(7) { grid-row-end: span 29; }

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 0.8rem;
    }
    
    .gallery-item:nth-child(1) { grid-row-end: span 25; }
    .gallery-item:nth-child(2) { grid-row-end: span 22; }
    .gallery-item:nth-child(3) { grid-row-end: span 28; }
    .gallery-item:nth-child(4) { grid-row-end: span 24; }
    .gallery-item:nth-child(5) { grid-row-end: span 26; }
    .gallery-item:nth-child(6) { grid-row-end: span 23; }
    .gallery-item:nth-child(7) { grid-row-end: span 25; }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item:nth-child(1) { grid-row-end: span 20; }
    .gallery-item:nth-child(2) { grid-row-end: span 18; }
    .gallery-item:nth-child(3) { grid-row-end: span 22; }
    .gallery-item:nth-child(4) { grid-row-end: span 19; }
    .gallery-item:nth-child(5) { grid-row-end: span 21; }
    .gallery-item:nth-child(6) { grid-row-end: span 17; }
    .gallery-item:nth-child(7) { grid-row-end: span 20; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .gallery-item:nth-child(1) { grid-row-end: span 25; }
    .gallery-item:nth-child(2) { grid-row-end: span 20; }
    .gallery-item:nth-child(3) { grid-row-end: span 28; }
    .gallery-item:nth-child(4) { grid-row-end: span 22; }
    .gallery-item:nth-child(5) { grid-row-end: span 26; }
    .gallery-item:nth-child(6) { grid-row-end: span 19; }
    .gallery-item:nth-child(7) { grid-row-end: span 24; }
}

/* Section Styles */
.section-dark {
    padding: 5rem 0;
    background-color: transparent;
    text-align: center;
}


.section-dark p {
    color: rgb(0, 0, 0);
    font-size: 1.125rem;
}

/* Titre spécial pour la section carte */
.section-dark .carte-title {
    font-size: 3rem !important;
    font-weight: 400 !important;
    color: #525744 !important;
    margin-bottom: 3rem !important;
    text-transform: uppercase;
    letter-spacing: 0.3em !important;
    font-family: 'League Gothic', 'Montserrat', sans-serif !important;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section-dark .carte-title {
        font-size: 1.8rem !important;
        letter-spacing: 0.2em !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    .section-dark .carte-title {
        font-size: 1.4rem !important;
        letter-spacing: 0.15em !important;
    }
}

/* Titre encore plus grand sur les très grands écrans */
@media (min-width: 1024px) {
    .section-dark .carte-title {
        font-size: 5rem !important;
    }
}

@media (min-width: 1280px) {
    .section-dark .carte-title {
        font-size: 5.8rem !important;
    }
}

.section-light {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.section-light h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-light p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.125rem;
}

/* Section Privatisation avec fond vert */
.section-privatisation {
    padding: 5rem 0;
    background-color: #808b75;
    text-align: center;
    width: 100vw; /* Utilise la largeur complète du viewport */
    margin-left: calc(50% - 50vw); /* Centre et étend au-delà du container */
}

.privatisation-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privatisation-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.privatisation-title {
    font-family: 'League Gothic', 'Montserrat', sans-serif !important;
    font-size: 4rem !important;
    font-weight: 500 !important;
    color: var(--white);
    margin-bottom: 2.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.25em !important;
    line-height: 1.1;
    white-space: nowrap;
}

.privatisation-description {
    color: rgba(0, 0, 0, 0.95) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.privatisation-warning {
    color: rgba(0, 0, 0, 0.9) !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.privatisation-button {
    margin-top: 3rem;
}

.btn-privatisation {
    display: inline-block;
    background-color: #646b50;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #646b50;
    font-size: 1rem;
}

.btn-privatisation:hover {
    background-color: transparent;
    color: #646b50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(100, 107, 80, 0.3);
}

.btn-privatisation:active {
    transform: translateY(0);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .privatisation-content {
        padding: 0 1rem;
    }
    
    .privatisation-title {
        font-size: 2.8rem !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 1.8rem !important;
        line-height: 1.0 !important;
        padding: 0 0.5rem;
    }
    
    .privatisation-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .privatisation-warning {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .btn-privatisation {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privatisation-content {
        padding: 0 0.8rem;
    }
    
    .privatisation-title {
        font-size: 2.2rem !important;
        letter-spacing: 0.12em !important;
        margin-bottom: 1.5rem !important;
        line-height: 0.95 !important;
        padding: 0 0.3rem;
        word-spacing: -0.1em;
    }
    
    .privatisation-description {
        font-size: 0.95rem;
        padding: 0 0.3rem;
    }
    
    .privatisation-warning {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    
    .btn-privatisation {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* Version très petits écrans */
@media (max-width: 360px) {
    .privatisation-title {
        font-size: 1.9rem !important;
        letter-spacing: 0.1em !important;
        line-height: 0.9 !important;
        margin-bottom: 1.3rem !important;
        word-spacing: -0.15em;
    }
}

/* Responsive pour grands écrans */
@media (min-width: 1024px) {
    .privatisation-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1280px) {
    .privatisation-title {
        font-size: 5rem;
    }
}

.section-privatisation h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-privatisation p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 0 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    margin-bottom: 0;
    overflow-x: hidden; /* AJOUTÉ */
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%; /* AJOUTÉ */
    box-sizing: border-box; /* AJOUTÉ */
}

/* Layout principal du footer */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%; /* AJOUTÉ */
}

/* Section logo et description */
.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-about .logo-circle {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-about .logo-circle span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy);
}

.footer-about h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Titres des sections */
.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Infos pratiques */
.footer-info-item {
    margin-bottom: 1.2rem;
}

.footer-info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-info-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.footer-info-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-info-item a:hover {
    opacity: 0.7;
}

/* Horaires */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.day {
    font-weight: 500;
}

.time {
    opacity: 0.9;
}

/* Navigation */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Réseaux sociaux */
.footer-social {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: flex-start !important;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer bottom - VERSION CENTRÉE */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-credits {
    text-align: center;
}

.footer-credits p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive design - SIMPLIFIÉ car tout est déjà centré */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 1.5rem 0;
        gap: 0.8rem;
    }
    
    .footer-legal {
        gap: 0.8rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-legal p {
        font-size: 0.8rem;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
    
    .footer-credits p {
        font-size: 0.8rem;
    }
}

/* Présentation Section */
.presentation {
    background: var(--white);
    padding: 4rem 0 3rem 0;
}

.presentation-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.presentation-text {
    flex: 1 1 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presentation-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.presentation-text p {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0;
}

.presentation-images {
    flex: 1.2; /* Plus d'espace pour les images */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

/* CONTENEURS TRÈS GRANDS */
.presentation-img-vertical {
    position: relative;
    width: 600px; /* BEAUCOUP plus large */
    height: 900px; /* BEAUCOUP plus haut */
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 8px 25px -4px rgba(0,0,0,0.15);
    background: #f5f5f5;
}

.image-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}


.carousel-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}


.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.indicator.active {
    background-color: white;
    transform: scale(1.3);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive - TRÈS GRANDES TAILLES */
@media (min-width: 1400px) {
    .presentation-img-vertical {
        width: 700px;
        height: 1050px; /* Encore plus grand ! */
    }
    
    .presentation-images {
        flex-direction: row;
        gap: 3rem;
    }
    
    .presentation-flex {
        gap: 4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .presentation-img-vertical {
        width: 600px;
        height: 900px;
    }
    
    .presentation-images {
        flex-direction: row;
        gap: 2.5rem;
    }
}

@media (min-width: 901px) and (max-width: 1199px) {
    .presentation-flex {
        align-items: stretch;
    }
    
    .presentation-text {
        text-align: right;
        align-items: flex-end;
        justify-content: flex-end;
        width: 100%;
        max-width: none;
    }
    
    .presentation-images {
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
        justify-content: flex-end;
    }
    
    .presentation-img-vertical {
        width: 450px;
        height: 675px;
    }
}

@media (max-width: 900px) {
    .presentation-flex {
        flex-direction: column;
        gap: 3rem;
    }
    
    .presentation-text {
        text-align: center;
        align-items: center;
    }
    
    .presentation-text h2 {
        font-size: 2rem;
    }
    
    .presentation-images {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .presentation-img-vertical {
        width: 45vw;
        height: 67.5vw;
        max-width: 400px;
        max-height: 600px;
        min-width: 250px;
        min-height: 375px;
    }
}

@media (max-width: 600px) {
    .presentation {
        padding: 2.5rem 0 2rem 0;
    }
    
    .presentation-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .presentation-text h2 {
        font-size: 1.8rem;
    }
    
    .presentation-img-vertical {
        width: 48vw;
        height: 72vw;
        min-width: 200px;
        min-height: 300px;
        max-width: 300px;
        max-height: 450px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .presentation-img-vertical {
        width: 85vw;
        height: 127.5vw;
        max-width: 350px;
        max-height: 525px;
        min-width: 250px;
        min-height: 375px;
    }
    
    .presentation-images {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Pour les très grands écrans */
@media (min-width: 1600px) {
    .presentation-img-vertical {
        width: 800px;
        height: 1200px; /* ÉNORME ! */
    }
    
    .presentation-flex {
        gap: 5rem;
    }
    
    .presentation-text h2 {
        font-size: 3rem;
    }
    
    .presentation-text p {
        font-size: 1.4rem;
    }
}

/* AOS Animation Styles */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Menu Section */
.menu-section {
    text-align: center;
    padding: 50px 20px;
    
    background-color: #ffffff;
}

.menu-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black; /* Change the text color to black */
}



.menu-images {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    margin: 40px 0 !important;
    flex-wrap: wrap !important;
}

.menu-images a {
    display: block !important;
    max-width: 300px !important;
    width: 100% !important;
    transition: transform 0.3s ease !important;
}

.menu-images img {
    width: 100% !important;
    height: auto !important;
    border: 2px solid #000000 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    display: block !important;
}

.menu-images a:hover {
    transform: scale(1.05) !important;
}
.menu-images a:hover img {
    border-color: #333333 !important; /* Bordure légèrement plus claire au survol */
}

/* Menu Button */
.menu-button {
    margin-top: 2.5rem; /* Augmentez cette valeur pour descendre le bouton plus bas */
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-section h2 {
        font-size: 1.5rem;
    }

     .menu-images {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .menu-images a {
        max-width: 280px !important;
    }
    .menu-images img {
        border: 1.5px solid #000000 !important; /* Bordure légèrement plus fine sur mobile */
    }

}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex !important;
    }
    
    /* Cache le burger sur desktop */
    .burger {
        display: none !important;
    }
    
    /* Cache le menu mobile sur desktop */
    .nav-mobile {
        display: none !important;
    }
    
    .header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 80px !important;
    }
    
    .logo {
        display: flex !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .logo-circle {
        width: 120px !important;
        height: 80px !important;
    }
}

@media (min-width: 1280px) {
    .hero-content h1 {
        font-size: 6rem;
    }
}

@media (max-width: 1023px) {
    body {
        padding-top: 70px !important;
    }
    
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: 70px !important;
        background-color: #808b75 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 0.5rem !important;
        z-index: 9999 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .logo {
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
        color: inherit !important;
        z-index: 10001 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .logo-circle {
        width: 80px !important;
        height: 60px !important;
    }
    
    .header-content {
        display: none !important;
    }
    
    /* Nouveau Burger Menu - Mobile uniquement - positionné à droite */
    .burger {
        width: 30px;
        height: 25px;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 10001 !important;
        position: absolute !important;
        right: 1.5rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .burger span {
        height: 3px;
        width: 100%;
        background-color: #f3e7d7 !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animation burger vers X */
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Menu mobile - slide depuis la droite */
    .nav-mobile {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        height: 100vh !important;
        width: 70% !important;
        max-width: 300px !important;
        background-color: #808b75 !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px !important;
        transition: right 0.3s ease !important;
        z-index: 10000 !important;
    }

    /* Affichage du menu */
    .nav-mobile.active {
        right: 0 !important;
    }

    /* Styles des liens dans le menu mobile */
    .nav-mobile a {
        color: #f3e7d7 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        padding: 15px 20px !important;
        transition: all 0.3s ease !important;
        border-radius: 5px !important;
        text-align: center !important;
        width: 80% !important;
    }

    .nav-mobile a:hover {
        background-color: rgba(243, 231, 215, 0.15) !important;
        color: #ffffff !important;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #808b75;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #808b75;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: transparent;
    color: #808b75;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(128, 139, 117, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* Contact Section */
/* A GARDER EN TETE */
.contact-section {
    background-color: #808b75;
    padding: 80px 0;
    min-height: auto;
    text-align: center;
    width: 100vw; /* Utilise la largeur complète du viewport */
    margin-left: calc(50% - 50vw); /* Centre et étend au-delà du container */
}

.contact-main-title {
    font-family: 'League Gothic', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 60px;
    color: white;
    text-align: center;
    margin-top: -25px !important;
    text-transform: uppercase;
}


.contact-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 60px;
}

.contact-map {
    flex: none;
    width: 480px;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    width: 100% !important;
    height: 100%;
    border: none;
}

.contact-info {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    text-align: left;
}

.contact-title {
    display: none;
}


.info-section {
    margin-bottom: 2px !important;
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px !important;
    text-align: top;
    color: white;
}

.info-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.info-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.horaires-grid {
    display: flex;
    flex-direction: column;
    gap: 1px !important;
}

.horaire-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.jour {
    font-weight: 400;
    color: white;
}

.heure {
    font-weight: 500;
    color: white;
}

.social-links {
    display: flex;
    justify-content: flex-start !important;
    gap: 20px;
    align-items: center;
}

.footer-social .social-links {
    justify-content: center !important;
    gap: 1.5rem;
}

.social-link {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-main-title {
        font-size: 3.5rem;
        margin-bottom: 50px;
        letter-spacing: 4px;
    }
    
    .contact-container {
        gap: 50px;
        padding: 0 1.5rem;
    }
    
    .contact-map {
        width: 420px;
        height: 420px;
    }
    
    .info-section {
        margin-bottom: 12px !important;
    }
    
    .info-title {
        margin-bottom: 1px !important;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-main-title {
        font-size: 3rem;
        margin-bottom: 40px;
        letter-spacing: 3px;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 1rem;
    }
    
    .contact-map {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .contact-info {
        width: 100%;
        text-align: center;
    }
    
    .info-section {
        margin-bottom: 15px !important;
    }
    
    .info-title {
        margin-bottom: 3px !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    /* Garde les icônes du footer centrées sur mobile */
    .footer-social .social-links {
        justify-content: center !important;
    }
    
    .horaires-grid {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }
    
    .contact-container {
        padding: 0 0.5rem;
        gap: 30px;
    }
    
    .contact-map {
        height: 250px;
    }
    
    .info-title {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 2px !important;
    }
    
    .horaire-line {
        font-size: 0.9rem;
    }
    
    .horaires-grid {
        gap: 1px !important;
    }
}

/* Carousel Styles */
.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
    visibility: visible;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Assurer que les conteneurs ont une hauteur définie */
.presentation-img-vertical {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .presentation-img-vertical {
        height: 250px;
    }
    
    .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .footer-content {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
        grid-template-columns: 1fr !important;
    }
    
    .footer-section {
        width: 100% !important;
    }
    
    .footer-about {
        margin-bottom: 20px !important;
    }
    
    .footer-logo {
        justify-content: center !important;
        margin-bottom: 15px !important;
    }
    
    .footer-description {
        font-size: 0.9rem !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        line-height: 1.6 !important;
    }
    
    .footer-info h4,
    .footer-hours h4,
    .footer-nav h4 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    .footer-info-item {
        margin-bottom: 15px !important;
    }
    
    .footer-info-item strong {
        font-size: 0.9rem !important;
        display: block !important;
    }
    
    .footer-info-item p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
    }
    
    .hours-grid {
        gap: 8px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hour-item {
        font-size: 0.85rem !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    
    .footer-links {
        gap: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-links a {
        font-size: 0.9rem !important;
    }
    
    .footer-social {
        margin-top: 20px !important;
        text-align: center !important;
    }
    
    .footer-social h4 {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }
    
    .footer-social .social-links {
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .footer-bottom {
        margin-top: 30px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .footer-legal {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    .footer-legal p {
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
    
    .legal-links {
        flex-direction: column !important;
        gap: 10px !important;
        display: flex !important;
    }
    
    .legal-links a {
        font-size: 0.8rem !important;
    }
    
    .footer-credits p {
        font-size: 0.75rem !important;
        font-style: italic !important;
        margin: 0 !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px !important;
    }
    
    .footer-content {
        gap: 25px !important;
        padding: 0 15px !important;
    }
    
    .footer-description {
        font-size: 0.85rem !important;
        max-width: 250px !important;
    }
    
    .footer-info-item p {
        font-size: 0.8rem !important;
        word-break: break-word !important;
    }
    
    .footer-social .social-links {
        gap: 12px !important;
    }
    
    .social-link {
        width: 35px !important;
        height: 35px !important;
    }
    
    .social-link svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .footer-legal p {
        font-size: 0.75rem !important;
    }
    
    .legal-links a {
        font-size: 0.75rem !important;
    }
    
    .footer-credits p {
        font-size: 0.7rem !important;
    }
}

/* Section Événements - REMPLACER TOUT LE CSS ÉVÉNEMENTS PAR CECI */
.events-title {
    font-family: 'League Gothic', sans-serif !important;
    color: #808b75;
    font-size: 6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.events-content {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 100;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-description p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.6;
}

.event-card {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Desktop - Effet flip parfait */
.event-flip-container {
    position: relative;
    width: 100%;
    height: 750px; /* Ajusté pour ratio 4:5 - 600px * 1.25 = 750px */
    perspective: 1000px;
    margin-bottom: 2rem;
}

.event-front,
.event-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-front img,
.event-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-back {
    transform: rotateY(180deg);
}

/* Effet hover UNIQUEMENT sur desktop */
.event-flip-container:hover .event-front {
    transform: rotateY(-180deg);
}

.event-flip-container:hover .event-back {
    transform: rotateY(0deg);
}

/* Bouton mobile caché par défaut */
.event-mobile-toggle {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.mobile-flip-btn {
    background-color: #525744;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-flip-btn:hover {
    background-color: #6a6f5a;
    transform: translateY(-2px);
}

.toggle-text::after {
    content: "Voir les détails";
}

.event-card.flipped .toggle-text::after {
    content: "Retour à l'image";
}

.toggle-text {
    text-indent: -9999px;
    position: relative;
}

/* MOBILE - Système complètement différent */
@media (max-width: 768px) {
    .events-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    /* Augmente la hauteur pour afficher l'image complète sur mobile */
    .event-flip-container {
        height: 500px !important;
        perspective: none !important;
        transform-style: flat !important;
    }
    
    .event-flip-container:hover .event-front {
        transform: none !important;
    }
    
    .event-flip-container:hover .event-back {
        transform: rotateY(180deg) !important;
    }
    
    /* Système mobile : affichage simple */
    .event-front {
        position: relative !important;
        backface-visibility: visible !important;
        transform: none !important;
        display: block !important;
    }
    
    .event-back {
        position: relative !important;
        backface-visibility: visible !important;
        transform: none !important; /* Supprime la rotation pour mobile */
        display: none !important;
    }
    
    /* Force l'image back à être dans le bon sens sur mobile */
    .event-back img {
        transform: none !important;
    }
    
    /* Toggle mobile */
    .event-mobile-toggle {
        display: block !important;
    }
    
    /* États flippés */
    .event-card.flipped .event-front {
        display: none !important;
    }
    
    .event-card.flipped .event-back {
        display: block !important;
        transform: none !important; /* Assure que pas de rotation sur mobile */
    }
}

@media (max-width: 480px) {
    .events-title {
        font-size: 2rem;
    }
    
    .event-flip-container {
        height: 450px !important;
    }
    
    .mobile-flip-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Force aussi l'image à être droite sur très petits écrans */
    .event-back {
        transform: none !important;
    }
    
    .event-back img {
        transform: none !important;
    }
}

/* Flèche de navigation vers le bas */
.scroll-arrow {
    position: absolute;
    bottom: 50px; /* Position depuis le bas de la section hero */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background-color: #808b75;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scroll-arrow:hover .arrow-icon {
    color: white;
}

.arrow-icon {
    color: #808b75;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Animation de rebond */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Ajustement de la section hero */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
    margin-top: 0;
    margin-bottom: 0; /* Remet à 0 */
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .scroll-arrow {
        bottom: 30px;
        width: 45px;
        height: 45px;
    }
    
    .arrow-icon {
        font-size: 20px;
    }
    
    .hero {
        height: calc(70vh - 70px);
    }
}

@media (max-width: 480px) {
    .scroll-arrow {
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    
    .arrow-icon {
        font-size: 18px;
    }
}

/* Bloc Avis Google dans le footer */
.footer-section.footer-review {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0 8px 0;
}

.review-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #222;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.review-btn:hover,
.review-btn:focus {
    background: #ffe082;
    color: #b8860b;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

.review-star {
    color: #FFD700;
    font-size: 1.4em;
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-section.footer-review {
        margin: 18px 0 6px 0;
    }
    .review-btn {
        font-size: 1rem;
        padding: 9px 14px;
    }
    .review-star {
        font-size: 1.1em;
    }
}


@import url('language.css');

/* Language Popup Styles */
.language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.language-popup.show {
    opacity: 1;
    visibility: visible;
}

.language-popup-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.language-popup.show .language-popup-content {
    transform: translateY(0);
}

.language-popup h3 {
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.language-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    min-width: 120px;
}

.lang-btn:hover {
    border-color: #c8a97e;
    background: #f9f9f9;
    transform: translateY(-2px);
}

.lang-btn .flag {
    font-size: 30px;
}

.lang-btn span:last-child {
    color: #333;
    font-size: 14px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-popup-content {
        padding: 30px 20px;
    }
    
    .language-popup h3 {
        font-size: 16px;
    }
    
    .language-buttons {
        gap: 15px;
    }
    
    .lang-btn {
        min-width: 100px;
        padding: 15px;
    }
}

.language-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(128, 139, 117, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
    display: flex; /* Changé de "display: none" à "display: flex" */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.language-toggle:hover {
    background: rgba(128, 139, 117, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.language-toggle svg {
    width: 24px;
    height: 24px;
}

/* Affichage UNIQUEMENT sur mobile */
@media (max-width: 1023px) {
    .language-toggle {
        display: flex !important;
    }
}

/* Ajustements pour très petits écrans */
@media (max-width: 480px) {
    .language-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .language-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* S'assurer que le bouton ne gêne pas le contenu */
@media (max-width: 1023px) {
    body {
        padding-bottom: 80px; /* Espace en bas pour éviter que le bouton cache du contenu */
    }
}



/* Ajoutez à la fin de votre fichier CSS */
.footer-legal {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal h5 {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links li {
    margin-bottom: 8px;
}

.footer-legal-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #d4af37;
}









/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid #d4af37;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #d4af37;
    font-size: 16px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-text a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-btn.accept {
    background: #d4af37;
    color: #000;
}

.cookie-btn.accept:hover {
    background: #fff;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-btn.decline:hover {
    background: #fff;
    color: #000;
}

.cookie-btn.settings {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.cookie-btn.settings:hover {
    background: #d4af37;
    color: #000;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-settings-header {
    padding: 24px 24px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.cookie-settings-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    font-size: 24px;
}

.cookie-settings-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-settings-body {
    padding: 0 24px 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookie-category h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0;
    color: #000;
    font-size: 16px;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #d4af37;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle-slider.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.cookie-settings-footer {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-settings-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.cookie-settings-close:hover {
    background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-popup-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-settings-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
}

