/* ============================================================
   AU VIEUX PRESBYTÈRE - STYLES
   Palette: Douceur Boréale
   Typographie: Playfair Display (titres) + Source Sans 3 (texte)
   ============================================================ */

/* ============================================================
   1. POLICES LOCALES (AUTO-HÉBERGÉES)
   Chemins adaptés pour un fichier styles.css situé à la racine
   ============================================================ */

/* --- Playfair Display (v40) --- */
/* Regular (400) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
/* Italic (400) */
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}
/* Semi-Bold (600) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
/* Semi-Bold Italic (600) */
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-600italic.woff2') format('woff2');
}
/* Bold (700) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

/* --- Source Sans 3 (v19) --- */
/* Light (300) */
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-300.woff2') format('woff2');
}
/* Regular (400) */
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-regular.woff2') format('woff2');
}
/* Semi-Bold (600) */
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-600.woff2') format('woff2');
}
/* Bold (700) */
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-700.woff2') format('woff2');
}

/* ============================================================
   VARIABLES CSS - PALETTE DOUCEUR BORÉALE
   ============================================================ */
:root {
    /* Couleurs principales */
    --color-bg: #F9F7F2;           /* Crème de Papier - Fond principal */
    --color-text: #3E3C38;         /* Gris Tourbe - Texte & titres */
    --color-brand: #7D8C76;        /* Vert Sauge - Dominante/Marque */
    --color-accent: #B56345;       /* Rouille/Brique - Actions/Boutons */
    
    /* Variations pour nuances */
    --color-bg-light: #FFFFFF;     /* Blanc pur pour contraste */
    --color-brand-light: #A3B199;  /* Vert Sauge plus clair */
    --color-accent-hover: #9D4F35; /* Rouille plus foncé au survol */
    --color-primary-dark: #1a1918; /* Charbon foncé - Hero forfaits */
    
    /* Typographie */
    --font-serif: 'Playfair Display', Georgia, serif;
    /* Mise à jour vers Source Sans 3 */
    --font-sans: 'Source Sans 3', -apple-system, sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Ombres douces */
    --shadow-sm: 0 2px 8px rgba(62, 60, 56, 0.08);
    --shadow-md: 0 4px 16px rgba(62, 60, 56, 0.12);
    --shadow-lg: 0 8px 24px rgba(62, 60, 56, 0.15);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Fix Firefox : rendre <picture> transparent dans le layout */
picture {
    display: contents;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    scroll-padding-top: 100px;      /* Compense le header sticky */
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */

/* Titres avec Playfair Display (élégance & histoire) */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-brand);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    /* MODERNISATION: Plus d'italique systématique - seulement là où c'est voulu */
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--color-text);
}

h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-text);
}

/* Texte courant avec Source Sans 3 (clarté) */
p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* ============================================================
   BOUTONS - Rouille/Brique pour CTA
   ============================================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-bg);
}

/* ✅ ACCESSIBILITÉ : Focus visible pour navigation clavier */
.btn:focus-visible {
    outline: 3px solid var(--color-brand);
    outline-offset: 3px;
}

.btn-hero {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    background-color: var(--color-bg-light);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    
    /* OMBRE PROFONDE */
    box-shadow: 0 4px 20px rgba(62, 60, 56, 0.15),
                0 2px 8px rgba(62, 60, 56, 0.08);
    
    /* Bordure subtile */
    border-bottom: 1px solid rgba(125, 140, 118, 0.1);
}

/* Gradient sous le header */
.header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, 
                rgba(62, 60, 56, 0.05) 0%,
                transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav a {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: var(--color-brand-light);
    color: var(--color-bg-light);
}

/* Menu mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Sélecteur de langue avec drapeaux */
.lang-switch-header {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 12px;
}

.lang-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.lang-option:hover {
    background-color: rgba(125, 140, 118, 0.1);
}

.lang-option.active {
    border-color: #d4af37;
    background-color: rgba(212, 175, 55, 0.08);
}

.lang-letter {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: 0.02em;
}

.lang-option.active .lang-letter {
    color: #d4af37;
}

.lang-flag {
    width: 20px;
    height: auto;
    margin-top: 3px;
    border-radius: 2px;
    box-shadow: 0 0 0 0.5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header .container {
        flex-wrap: wrap;
    }

    /* Sélecteur de langue dans le header mobile (entre logo et hamburger) */
    .lang-switch-header {
        margin-left: auto;
        margin-right: 12px;
        order: 1;
    }

    .menu-toggle {
        order: 2;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg-light);
        flex-direction: column;
        padding: var(--spacing-md);
        padding-top: 55px; /* Espace pour la barre téléphone fixe */
        box-shadow: var(--shadow-md);
        order: 3;
        width: 100%;
    }

    .nav.active {
        display: flex;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(62, 60, 56, 0.3) 0%,
        rgba(62, 60, 56, 0.5) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-full {
    text-align: center;
    color: var(--color-bg);
    padding: var(--spacing-md);
    max-width: 900px;
}

.hero-content-full h1 {
    color: var(--color-bg);
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

/* Ajustement mobile avec barre téléphone */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 160px;  /* Header (93px) + Barre (55px) + marge */
    }
    
    .hero-full {
        height: 100vh;
        padding-top: 148px;     /* Header (93px) + Barre téléphone (55px) */
        box-sizing: border-box;
    }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    margin: 0;
}

/* Supprimer espace entre hero et section suivante */
.hero-full + section {
    margin-top: 0;
    padding-top: var(--spacing-xl);
}

/* Section Accroche */
.accroche {
    background-color: var(--color-bg-light);
    padding: var(--spacing-xl) 0;
}

.accroche-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.accroche-text h2 {
    color: var(--color-brand);
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.accroche-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text);
}

.accroche-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.accroche-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .accroche-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ============================================================
   CHAMBRES
   ============================================================ */
.chambres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.chambre-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.chambre-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.chambre-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.chambre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chambre-card:hover .chambre-image img {
    transform: scale(1.1);
}

.chambre-info {
    padding: var(--spacing-md);
}

.chambre-info h3 {
    font-family: var(--font-serif);
    color: var(--color-brand);
    margin-bottom: var(--spacing-sm);
}

.chambre-description {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.chambre-prix {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin: var(--spacing-sm) 0;
}

.chambre-prix-detail {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.8;
}

/* ============================================================
   RÉSERVATION
   ============================================================ */
#reservation {
    background: linear-gradient(135deg, var(--color-brand-light) 0%, var(--color-brand) 100%);
    color: var(--color-bg);
}

#reservation h2 {
    color: var(--color-bg);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--color-brand-light);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-bg);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
    border-color: var(--color-brand);
}

.prix-affichage {
    background: var(--color-bg);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin: var(--spacing-md) 0;
    border-left: 4px solid var(--color-brand);
}

.prix-ligne {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    font-family: var(--font-sans);
    color: var(--color-text);
}

.prix-total {
    border-top: 2px solid var(--color-brand);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-accent);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer h4 {
    font-family: var(--font-serif);
    color: var(--color-brand-light);
    margin-bottom: var(--spacing-sm);
}

.footer p,
.footer a {
    color: var(--color-bg);
    opacity: 0.9;
}

.footer a:hover {
    opacity: 1;
    color: var(--color-brand-light);
}

.footer-facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.footer-facebook-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #FFFFFF !important;
    transform: scale(1.05);
    opacity: 1 !important;
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-center {
    text-align: center;
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* ============================================================
   MODALS - TERMES ET CONDITIONS / POLITIQUE ANNULATION
   ============================================================ */

/* Overlay modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 60, 56, 0.85);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

/* Contenu du modal */
.modal-content-box {
    background: var(--color-bg);
    max-width: 700px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header du modal */
.modal-header {
    padding: 1.5rem 2rem;
    background: var(--color-brand);
    color: var(--color-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-bg);
}

/* Bouton fermer */
.modal-close {
    background: none;
    border: none;
    color: var(--color-bg);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(249, 247, 242, 0.2);
    transform: rotate(90deg);
}

/* Corps du modal */
.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body h3 {
    font-family: var(--font-serif);
    color: var(--color-brand);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal-body h4 {
    font-family: var(--font-sans);
    color: var(--color-text);
    font-weight: 700;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
}

.modal-body p {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-body strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content-box {
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-close {
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
}

/* Checkbox group style */
.checkbox-group {
    margin: 1.5rem 0 !important;
    padding: 1rem;
    background: rgba(125, 140, 118, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--color-brand);
}

.checkbox-group label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    cursor: pointer;
    word-wrap: break-word;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--color-brand);
}

.checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-group a:hover {
    color: var(--color-brand);
}

/* ============================================================
   SECTION CONFORT - CHAMBRES SHOWCASE
   ============================================================ */

.produit {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.produit h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-brand);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.chambres-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.chambre-showcase {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.chambre-showcase:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.chambre-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Fallback si images pas encore ajoutées */
.placeholder-chambre {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-brand) 0%, #9BAA93 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-chambre span {
    color: var(--color-bg-light);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
}

.arguments {
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.arguments ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.arguments li {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
}

.arguments li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-brand);
    font-weight: 700;
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 768px) {
    .chambres-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .chambre-showcase {
        aspect-ratio: 16/9;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .chambres-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   CHAMBRES - MOBILE FIRST ACCORDÉON - VERSION AMÉLIORÉE
   ============================================================ */

/* Container des chambres */
.chambres-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 100%;
}

/* Item chambre (carte accordéon) */
.chambre-item {
    background: var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.chambre-item:hover {
    box-shadow: var(--shadow-md);
}

/* ✅ NOUVEAU: État actif de l'item */
.chambre-item.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Header - Aperçu (toujours visible) */
.chambre-header {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
}

.chambre-header:active {
    background: rgba(125, 140, 118, 0.05);
}

.chambre-preview {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

/* Image miniature - AGRANDIE */
.chambre-preview-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* ✅ NOUVEAU: Zoom photo au hover */
.chambre-item:hover .chambre-preview-image img {
    transform: scale(1.05);
}

/* Infos aperçu */
.chambre-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.chambre-preview-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brand);
    margin: 0;
}

/* Icônes rapides - AMÉLIORÉES */
.chambre-quick-info {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text);
    flex-wrap: wrap;
}

.chambre-quick-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ✅ NOUVEAU: Icônes Lucide plus visibles */
.chambre-quick-info i {
    width: 18px;
    height: 18px;
    color: var(--color-brand);
    flex-shrink: 0;
}

/* Prix mini - AMÉLIORÉ */
.chambre-prix-mini {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-accent);
    margin-top: 0.25rem;
}

/* Bouton toggle - AMÉLIORÉ */
.accordion-toggle {
    width: 100%;
    padding: 1.25rem 1rem;
    background: transparent;
    border: none;
    border-top: 2px solid rgba(125, 140, 118, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-brand);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.accordion-toggle:hover {
    background: rgba(125, 140, 118, 0.05);
}

.accordion-toggle:active {
    background: rgba(125, 140, 118, 0.1);
}

/* ✅ NOUVEAU: État actif du toggle */
.chambre-item.active .accordion-toggle {
    background: rgba(125, 140, 118, 0.08);
    border-top-color: var(--color-brand);
}

.toggle-text {
    font-size: 1rem;
}

.toggle-icon {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--color-brand);
}

/* ✅ NOUVEAU: Rotation de l'icône quand ouvert */
.chambre-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Détails - Contenu dépliable */
.chambre-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chambre-details.active {
    max-height: 4000px;
}

.chambre-details-content {
    padding: 1.5rem 1rem 1.5rem 1rem;
}

/* Galerie d'images - Scroll horizontal mobile */
.chambre-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.chambre-gallery img {
    flex-shrink: 0;
    width: 90%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    scroll-snap-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Scrollbar galerie */
.chambre-gallery::-webkit-scrollbar {
    height: 6px;
}

.chambre-gallery::-webkit-scrollbar-track {
    background: rgba(125, 140, 118, 0.1);
    border-radius: 10px;
}

.chambre-gallery::-webkit-scrollbar-thumb {
    background: var(--color-brand);
    border-radius: 10px;
}

.chambre-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--color-brand-dark);
}

/* Description complète */
.chambre-description-full {
    margin-bottom: 1.5rem;
}

.chambre-description-full p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* Caractéristiques - Liste simple mobile */
.features-simple {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 10px;
    border-left: 3px solid var(--color-brand-light);
    transition: all 0.2s ease;
}

/* ✅ NOUVEAU: Hover sur feature-row */
.feature-row:hover {
    background: rgba(125, 140, 118, 0.05);
    border-left-color: var(--color-brand);
}

.feature-row.highlight {
    background: linear-gradient(135deg, rgba(181, 99, 69, 0.08) 0%, rgba(181, 99, 69, 0.12) 100%);
    border-left-color: var(--color-accent);
}

/* ✅ NOUVEAU: Icônes features plus visibles */
.feat-icon {
    width: 22px;
    height: 22px;
    color: var(--color-brand);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-row.highlight .feat-icon {
    color: var(--color-accent);
}

.feat-label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
}

.feat-label strong {
    color: var(--color-brand);
    font-size: 1.1rem;
}

.feat-label small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Bouton réserver */
.btn-reserver {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-brand) 0%, rgba(125, 140, 118, 0.9) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(125, 140, 118, 0.3);
}

.btn-reserver:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 140, 118, 0.4);
}

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

/* ============================================================
   📱 RESPONSIVE - TABLET (600px+)
   ============================================================ */
@media (min-width: 600px) {
    .chambre-preview-image {
        width: 150px;
        height: 150px;
    }
    
    .chambre-gallery img {
        width: 48%;
        height: 280px;
    }
    
    .features-simple {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ============================================================
   💻 RESPONSIVE - DESKTOP (900px+)
   ============================================================ */
@media (min-width: 900px) {
    .chambres-accordion {
        gap: 1.5rem;
    }
    
    .chambre-preview {
        padding: 1.5rem;
    }
    
    .chambre-preview-image {
        width: 180px;
        height: 180px;
    }
    
    .accordion-toggle {
        padding: 1.5rem;
    }
    
    .chambre-details-content {
        padding: 2rem 1.5rem;
    }
    
    .chambre-gallery img {
        width: 32%;
        height: 320px;
    }
    
    .features-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   🎨 ANIMATIONS D'ENTRÉE
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chambre-details.active .feature-row {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.chambre-details.active .feature-row:nth-child(1) { animation-delay: 0.05s; }
.chambre-details.active .feature-row:nth-child(2) { animation-delay: 0.1s; }
.chambre-details.active .feature-row:nth-child(3) { animation-delay: 0.15s; }
.chambre-details.active .feature-row:nth-child(4) { animation-delay: 0.2s; }
.chambre-details.active .feature-row:nth-child(5) { animation-delay: 0.25s; }
.chambre-details.active .feature-row:nth-child(6) { animation-delay: 0.3s; }
.chambre-details.active .feature-row:nth-child(7) { animation-delay: 0.35s; }
.chambre-details.active .feature-row:nth-child(8) { animation-delay: 0.4s; }
.chambre-details.active .feature-row:nth-child(9) { animation-delay: 0.45s; }

/* ============================================================
   ♿ ACCESSIBILITÉ
   ============================================================ */
.chambre-header:focus-visible,
.accordion-toggle:focus-visible {
    outline: 3px solid var(--color-brand);
    outline-offset: -2px;
}

/* Réduire animations si préférence utilisateur */
@media (prefers-reduced-motion: reduce) {
    .chambre-details,
    .toggle-icon,
    .feature-row {
        animation: none !important;
        transition: none !important;
    }
}
/* ============================================================
   LUCIDE ICONS - FIX HOVER EFFECT
   Remplace les styles précédents pour les icônes
   ============================================================ */

/* Styles de base pour toutes les icônes Lucide */
i[data-lucide] {
    display: inline-block;
    width: 20px;
    height: 20px;
    stroke-width: 2;
    vertical-align: middle;
}

/* Le SVG à l'intérieur */
i[data-lucide] svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* Icônes dans les quick-info (mini preview chambres) */
.chambre-quick-info i[data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--color-text);
}

/* Icônes dans les features (détails chambres) */
.feat-icon,
i[data-lucide].feat-icon {
    width: 24px;
    height: 24px;
    color: var(--color-brand);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* HOVER EFFECT - Le plus important! */
.feature-row {
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(125, 140, 118, 0.05);
}

.feature-row:hover .feat-icon,
.feature-row:hover i[data-lucide].feat-icon {
    color: var(--color-accent) !important;
    transform: scale(1.15);
}

/* Icônes dans les headings */
h3 i[data-lucide] {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    vertical-align: text-bottom;
    color: var(--color-brand);
}

/* Icônes dans les info-box (réservation) */
.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-box h3 i[data-lucide] {
    width: 24px;
    height: 24px;
    color: var(--color-brand);
    transition: all 0.3s ease;
}

.info-box:hover h3 i[data-lucide] {
    color: var(--color-accent);
    transform: scale(1.1);
}

/* Icônes dans le contact */
.contact-info i[data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--color-brand);
    margin-right: 4px;
}

.contact-info a:hover i[data-lucide] {
    color: var(--color-accent);
}

/* Google Maps dans contact */
.contact-map {
    margin-top: var(--spacing-lg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease;
}

.contact-map:hover {
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 300px;
}

@media (max-width: 768px) {
    .contact-map {
        margin-top: var(--spacing-md);
    }
    
    .contact-map iframe {
        min-height: 250px;
    }
}


/* Animation au chargement des icônes */
@keyframes iconFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

i[data-lucide] svg {
    animation: iconFadeIn 0.3s ease;
}

/* Responsive - Ajuster tailles sur mobile */
@media (max-width: 768px) {
    .feat-icon,
    i[data-lucide].feat-icon {
        width: 20px;
        height: 20px;
    }
    
    h3 i[data-lucide] {
        width: 20px;
        height: 20px;
    }
}
/* ============================================================
   SECTION ACTIVITÉS - VERSION SIMPLIFIÉE
   Une image + texte + bouton modal
   ============================================================ */

.activites-simple {
    padding: 80px 0;
    background: var(--color-bg);
}

/* Image hero avec overlay */
.activites-hero {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    min-height: 500px;
}

.activites-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay avec dégradé */
.activites-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(62, 60, 56, 0.85) 0%,
        rgba(125, 140, 118, 0.75) 50%,
        rgba(181, 99, 69, 0.65) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Contenu centré */
.activites-hero-content {
    text-align: center;
    color: var(--color-bg-light);
    max-width: 700px;
}

.activites-hero-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-bg-light);
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.activites-hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Bouton principal */
.btn-voir-activites {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-accent);
    color: var(--color-bg-light);
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 24px rgba(181, 99, 69, 0.4);
    font-family: var(--font-sans);
}

.btn-voir-activites:hover {
    background: var(--color-accent-hover);
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(181, 99, 69, 0.6);
}

.btn-voir-activites:active {
    transform: translateY(-2px);
}

.btn-voir-activites svg {
    transition: transform 0.3s ease;
}

.btn-voir-activites:hover svg {
    transform: translateX(4px);
}

/* Badge compteur */
.activites-count {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .activites-simple {
        padding: 60px 0;
    }
    
    .activites-hero {
        min-height: 400px;
        border-radius: 16px;
    }
    
    .activites-hero-overlay {
        padding: 30px 20px;
    }
    
    .activites-hero-content h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .activites-hero-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .btn-voir-activites {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .activites-hero {
        min-height: 350px;
    }
    
    .activites-hero-content h2 {
        font-size: 1.75rem;
    }
    
    .activites-hero-content p {
        font-size: 1rem;
    }
}

/* ============================================================
   SECTION ACTIVITÉS - ANCIEN CODE (gardé pour compatibilité)
   ============================================================ */

/* Section Activités */
.activites-section {
    padding: 80px 0;
    background: var(--color-bg);
}

/* Grille 6 activités phares */
.activites-grid-phares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.activite-card-phare {
    background: var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.activite-card-phare:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.activite-phare-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activite-phare-image.nature {
    background: linear-gradient(135deg, #7D8C76 0%, #9BAA93 100%);
}

.activite-phare-image.sports {
    background: linear-gradient(135deg, #5B8DB8 0%, #7AA5C9 100%);
}

.activite-phare-image.gastro {
    background: linear-gradient(135deg, #B56345 0%, #C98568 100%);
}

.activite-phare-placeholder {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.activite-phare-content {
    padding: 24px;
}

.activite-phare-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(125, 140, 118, 0.1);
    color: var(--color-brand);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.activite-card-phare h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--color-brand);
    margin-bottom: 10px;
}

.activite-card-phare p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.activite-phare-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.activite-phare-link:hover {
    color: var(--color-accent);
    gap: 10px;
}

/* Bouton Voir Toutes */
.activites-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-voir-toutes {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--color-brand);
    color: var(--color-bg-light);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(125, 140, 118, 0.3);
}

.btn-voir-toutes:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(181, 99, 69, 0.4);
}

.activites-count {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
}

/* ============================================================
   MODAL ACTIVITÉS
   ============================================================ */

.modal-activites {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-activites.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-activites-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-activites-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    background: var(--color-bg-light);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-activites-close,
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--color-bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 300;
}

.modal-activites-close:hover,
.modal-close:hover {
    background: var(--color-accent);
    color: var(--color-bg-light);
    transform: rotate(90deg);
}

.modal-activites-header {
    padding: 40px 40px 30px;
    background: var(--color-brand);
    color: var(--color-bg-light);
}

.modal-activites-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--color-bg-light);
}

.modal-activites-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    color: var(--color-bg-light);
}

.modal-activites-body {
    padding: 40px;
    max-height: calc(85vh - 160px);
    overflow-y: auto;
}

/* Catégories dans le modal */
.modal-category {
    margin-bottom: 50px;
}

.modal-category:last-child {
    margin-bottom: 0;
}

.modal-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--color-brand);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(125, 140, 118, 0.2);
}

/* Icône catégorie - Lucide */
.modal-category-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    color: var(--color-accent);
    stroke-width: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-activites-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Items d'activité dans le modal */
.modal-activite-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-activite-item:hover {
    background: rgba(125, 140, 118, 0.08);
    transform: translateX(5px);
}

/* Icône activité - Lucide */
.modal-activite-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-brand) 0%, #9BAA93 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(125, 140, 118, 0.2);
    transition: all 0.3s ease;
}

.modal-activite-icon i {
    width: 32px;
    height: 32px;
    color: var(--color-bg-light);
    stroke-width: 1.5;
}

.modal-activite-item:hover .modal-activite-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(125, 140, 118, 0.3);
}

/* Fallback pour emoji si icône manquante */
.modal-activite-emoji {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.modal-activite-info {
    flex: 1;
}

.modal-activite-info h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--color-brand);
    margin-bottom: 6px;
}

.modal-activite-info p {
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal-activite-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
}

.modal-activite-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-activite-btn {
    padding: 10px 24px;
    background: var(--color-brand);
    color: var(--color-bg-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.modal-activite-btn:hover {
    background: var(--color-accent);
    color: white;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .activites-grid-phares {
        grid-template-columns: 1fr;
    }
    
    .modal-activites-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }
    
    .modal-activites-header {
        padding: 30px 20px 20px;
    }
    
    .modal-activites-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-activites-body {
        padding: 20px;
        max-height: calc(90vh - 140px);
    }
    
    .modal-category-title {
        font-size: 1.4rem;
    }
    
    .modal-activite-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .modal-activite-emoji {
        font-size: 2.5rem;
    }
    
    .modal-activite-details {
        justify-content: center;
    }
    
    .btn-voir-toutes {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* Scrollbar personnalisée pour le modal */
.modal-activites-body::-webkit-scrollbar {
    width: 8px;
}

.modal-activites-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.modal-activites-body::-webkit-scrollbar-thumb {
    background: var(--color-brand);
    border-radius: 10px;
}

.modal-activites-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}
.phone-bar-mobile {
    display: none;
}

@media (max-width: 768px) {
    .phone-bar-mobile {
        display: block;
        background: var(--color-accent);
        position: fixed;
        top: 109px;             /* Hauteur du header mobile normal */
        left: 0;
        right: 0;
        z-index: 9998;          /* Juste en dessous du header (qui est 1000) */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        width: 100%;
        transition: top 0.3s ease;
    }

    /* Quand le header est compact au scroll, la barre suit */
    .header.scrolled ~ .phone-bar-mobile {
        top: 62px;
    }
    
    .phone-bar-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 14px 20px;
        color: var(--color-bg-light);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .phone-bar-link:active {
        background: var(--color-accent-hover);
    }
    
    .phone-bar-link svg {
        flex-shrink: 0;
        animation: ring 2s ease-in-out infinite;
    }
    
    @keyframes ring {
        0%, 100% { transform: rotate(0deg); }
        10%, 30% { transform: rotate(-10deg); }
        20%, 40% { transform: rotate(10deg); }
        50% { transform: rotate(0deg); }
    }
}



/* ============================================================
   SECTION EXPÉRIENCE - PETIT DÉJEUNER
   ============================================================ */

.experience {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.experience h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-brand);
    margin-bottom: var(--spacing-md);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.experience-text {
    padding-right: var(--spacing-md);
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.experience-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

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

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

/* Fallback si image pas encore ajoutée */
.placeholder-food {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #D4896F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.placeholder-food span {
    color: var(--color-bg-light);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .experience-text {
        padding-right: 0;
        text-align: center;
    }
    
    .experience-image {
        aspect-ratio: 16/9;
    }
}


/* ============================================ */
/* SECTION CHAMBRES - VERSION MODAL */
/* ============================================ */

.chambres-grid-modal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.chambre-card-modal {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chambre-card-modal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.chambre-image-modal {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.chambre-image-modal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chambre-card-modal:hover .chambre-image-modal img {
    transform: scale(1.1);
}

.chambre-badge-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(125, 140, 118, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.chambre-badge-studio-modal {
    background: rgba(212, 175, 55, 0.95);
}

.chambre-content-modal {
    padding: 25px;
}

.chambre-header-modal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.chambre-nom-modal {
    font-size: 1.6rem;
    color: #19293C;
    margin: 0;
    font-weight: 700;
}

.chambre-prix-modal {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.chambre-prix-modal strong {
    display: block;
    font-size: 1.5rem;
    color: var(--color-brand);
    font-weight: 700;
}

/* Badge saison sur les cartes chambres */
.saison-badge-card {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #c5a028);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chambre-description-modal {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.chambre-features-modal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.chambre-features-modal .feature-modal {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.9rem;
}

.chambre-features-modal .feature-modal svg {
    width: 18px;
    height: 18px;
    color: var(--color-brand);
}

.btn-details-modal {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-brand) 0%, #a89968 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-details-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(125, 140, 118, 0.3);
}

.btn-details-modal svg {
    width: 20px;
    height: 20px;
}

/* MODAL OVERLAY */
.chambre-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chambre-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-box-custom {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideInCustom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideInCustom {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close-custom {
    position: sticky;
    top: 20px;
    right: 20px;
    float: right;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    margin: 20px 20px 0 0;
}

.modal-close-custom:hover {
    background: #f44336;
    color: white;
    transform: rotate(90deg);
}

.modal-close-custom svg {
    width: 24px;
    height: 24px;
}

.modal-body-custom {
    padding: 0 0 30px 0;
}

/* GALERIE */
.modal-gallery-custom {
    margin-bottom: 30px;
}

.gallery-main-custom {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.gallery-main-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumbs-custom {
    display: flex;
    gap: 10px;
    padding: 15px 30px;
    overflow-x: auto;
}

.gallery-thumbs-custom img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-thumbs-custom img:hover {
    border-color: var(--color-brand);
    transform: scale(1.05);
}

.gallery-thumbs-custom img.active {
    border-color: var(--color-brand);
}

/* INFO MODAL */
.modal-info-custom {
    padding: 0 30px;
}

.modal-header-custom h2 {
    font-size: 2rem;
    color: #19293C;
    margin-bottom: 5px;
}

.modal-type-custom {
    color: var(--color-brand);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.modal-description-custom {
    color: #555;
    line-height: 1.8;
    margin: 20px 0;
    font-size: 1.05rem;
}

.modal-features-grid-custom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature-item-custom svg {
    width: 28px;
    height: 28px;
    color: var(--color-brand);
    flex-shrink: 0;
}

.feature-item-custom div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-item-custom strong {
    font-size: 0.85rem;
    color: #666;
}

.feature-item-custom span {
    font-size: 1rem;
    color: #19293C;
    font-weight: 500;
}

.modal-amenities-custom {
    margin: 30px 0;
}

.modal-amenities-custom h3 {
    font-size: 1.3rem;
    color: #19293C;
    margin-bottom: 15px;
}

.amenities-list-custom {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenities-list-custom li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.amenities-list-custom li svg {
    width: 18px;
    height: 18px;
    color: #4caf50;
    flex-shrink: 0;
}

.modal-pricing-custom {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.modal-pricing-custom h3 {
    font-size: 1.3rem;
    color: #19293C;
    margin-bottom: 15px;
}

.pricing-table-custom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.pricing-row-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
}

.pricing-row-custom span {
    color: #555;
    font-size: 0.95rem;
}

.pricing-row-custom strong {
    color: var(--color-brand);
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-note-custom {
    color: #999;
    font-size: 0.85rem;
    margin-top: 10px;
    text-align: center;
}

.btn-reserver-modal-custom {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--color-brand) 0%, #a89968 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(125, 140, 118, 0.3);
}

.btn-reserver-modal-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(125, 140, 118, 0.4);
}

.btn-reserver-modal-custom svg {
    width: 24px;
    height: 24px;
}

body.modal-open-custom {
    overflow: hidden;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .chambres-grid-modal {
        grid-template-columns: repeat(2, 1fr);
    }
    .chambre-image-modal {
        height: 280px;
    }
    .gallery-main-custom {
        height: 500px;
    }
    .modal-features-grid-custom {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .chambres-grid-modal {
        grid-template-columns: repeat(3, 1fr);
    }
    .chambre-image-modal {
        height: 260px;
    }
    .amenities-list-custom {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-box-custom::-webkit-scrollbar {
    width: 8px;
}

.modal-box-custom::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-box-custom::-webkit-scrollbar-thumb {
    background: var(--color-brand);
    border-radius: 4px;
}

/* ============================================ */
/* MODAL NOTRE HISTOIRE */
/* ============================================ */

/* Bouton déclencheur */
.btn-histoire {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-brand) 0%, #a89968 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 140, 118, 0.2);
    margin-top: 20px;
}

.btn-histoire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 140, 118, 0.3);
}

.btn-histoire svg {
    width: 20px;
    height: 20px;
}

/* Modal overlay */
.histoire-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.histoire-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.histoire-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.histoire-modal-box {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: histoireSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes histoireSlideIn {
    from {
        transform: translateY(60px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.histoire-modal-close {
    position: sticky;
    top: 20px;
    right: 20px;
    float: right;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
    margin: 20px 20px 0 0;
}

.histoire-modal-close:hover {
    background: #f44336;
    color: white;
    transform: rotate(90deg);
}

.histoire-modal-close svg {
    width: 24px;
    height: 24px;
}

/* Image header */
.histoire-image-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.histoire-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) brightness(0.95);
}

.histoire-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 1rem;
    font-style: italic;
    font-family: var(--font-serif);
}

/* Contenu texte */
.histoire-text-content {
    padding: 40px;
}

.histoire-section {
    margin-bottom: 40px;
}

.histoire-section:last-child {
    margin-bottom: 0;
}

.histoire-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    color: var(--color-brand);
    margin-bottom: 20px;
    font-family: var(--font-serif);
    font-style: italic;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(125, 140, 118, 0.2);
}

.histoire-title svg {
    width: 28px;
    height: 28px;
    color: var(--color-brand);
}

.histoire-text {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
}

.histoire-text p {
    margin-bottom: 16px;
}

.histoire-text strong {
    color: var(--color-brand);
    font-weight: 600;
}

.histoire-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    padding: 20px 25px;
    border-left: 4px solid var(--color-brand);
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-brand);
    font-weight: 600;
    margin-top: 20px;
}

/* Features list */
.histoire-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.histoire-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 1rem;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.histoire-features-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.histoire-features-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-brand);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Timeline */
.histoire-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(125, 140, 118, 0.2);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    position: relative;
    border-left: 3px solid #e0e0e0;
    margin-left: 15px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
}

.timeline-item.timeline-current {
    border-left-color: var(--color-brand);
}

.timeline-item.timeline-current::before {
    background: var(--color-brand);
    border-color: var(--color-brand);
    box-shadow: 0 0 0 4px rgba(125, 140, 118, 0.2);
}

.timeline-year {
    font-weight: 700;
    color: var(--color-brand);
    font-size: 1.1rem;
    min-width: 120px;
}

.timeline-desc {
    color: #666;
    font-size: 1rem;
}

.timeline-item.timeline-current .timeline-desc {
    color: #333;
    font-weight: 600;
}

/* Scrollbar personnalisée */
.histoire-modal-box::-webkit-scrollbar {
    width: 10px;
}

.histoire-modal-box::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.histoire-modal-box::-webkit-scrollbar-thumb {
    background: var(--color-brand);
    border-radius: 5px;
}

.histoire-modal-box::-webkit-scrollbar-thumb:hover {
    background: #a89968;
}

/* Body lock */
body.modal-histoire-open {
    overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .histoire-image-header {
        height: 250px;
    }
    
    .histoire-text-content {
        padding: 25px;
    }
    
    .histoire-title {
        font-size: 1.5rem;
    }
    
    .histoire-text {
        font-size: 1rem;
    }
    
    .histoire-timeline {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .timeline-year {
        min-width: auto;
    }
    
    .histoire-features-list li {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) {
    .histoire-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation fade in au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.histoire-section {
    animation: fadeInUp 0.6s ease-out;
}

.histoire-section:nth-child(2) {
    animation-delay: 0.1s;
}

.histoire-section:nth-child(3) {
    animation-delay: 0.2s;
}

/* ============================================================
   BOUTON BACK TO TOP
   ============================================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    
    /* Style du bouton */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-accent);
    color: var(--color-bg-light);
    
    /* Centrage de l'icône */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Ombre élégante */
    box-shadow: var(--shadow-lg);
    
    /* Cursor */
    cursor: pointer;
    
    /* Transitions douces */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* État visible (après scroll) */
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Effet hover */
.back-to-top:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(62, 60, 56, 0.25);
}

/* Effet active (au clic) */
.back-to-top:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Icône Lucide */
.back-to-top i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top i {
        width: 22px;
        height: 22px;
    }
}

/* Animation pulse légère pour attirer l'attention */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.back-to-top.visible {
    animation: pulse 2s ease-in-out infinite;
}

.back-to-top:hover {
    animation: none;
}

/* ============================================================
   SECTION ATOUTS CONFORT (ASCENSEUR & SPA)
   ============================================================ */

.atouts-confort {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f9f7f2 0%, #ffffff 100%);
}

.atouts-confort h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-brand);
}

.atouts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.atout-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atout-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.atout-item h3 {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xs);
    color: var(--color-brand);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-family: var(--font-serif);
    font-style: italic;
}

.atout-item p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--color-text);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.atout-item strong {
    color: var(--color-brand);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .atouts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .atout-item img {
        height: 220px;
    }
    
    .atouts-confort {
        padding: var(--spacing-lg) 0;
    }
}


/* ============================================================
   ACCESSIBILITÉ - FOCUS VISIBLE (WCAG 2.1 AA)
   ============================================================ */

/* Focus pour tous les liens */
a:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Focus pour la navigation */
.nav a:focus-visible {
    outline: 3px solid var(--color-brand);
    outline-offset: 2px;
    background-color: rgba(125, 140, 118, 0.1);
}

/* Focus pour le bouton menu hamburger */
.menu-toggle:focus-visible {
    outline: 3px solid var(--color-brand);
    outline-offset: 3px;
    border-radius: 8px;
}

/* Focus pour les éléments accordéon */
.accordion-toggle:focus-visible,
.chambre-header:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}

/* Focus pour tous les boutons génériques */
button:focus-visible {
    outline: 3px solid var(--color-brand);
    outline-offset: 3px;
}

/* ============================================================
   ACCESSIBILITÉ - AMÉLIORATION CONTRASTES
   ============================================================ */

/* Assurer que le texte sur fond coloré a un bon contraste */
.hero-full .hero-content-full h1,
.hero-full .hero-content-full p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Skip link pour navigation clavier (optionnel mais recommandé) */
.skip-link {
    position: absolute;
    top: -40px;
    left: -9999px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    opacity: 0;
}

.skip-link:focus {
    top: 0;
    left: 0;
    opacity: 1;
}

/* ============================================================
   ACCESSIBILITÉ - RESPONSIVE TEXT (Zoom 200%)
   ============================================================ */

/* S'assurer que le texte reste lisible au zoom 200% */
@media (max-width: 768px) {
    html {
        font-size: 16px; /* Taille de base stable */
    }
    
    body {
        line-height: 1.6; /* Interligne confortable */
    }
}

/* ============================================================
   ACCESSIBILITÉ - ÉTAT DÉSACTIVÉ
   ============================================================ */

/* Boutons désactivés avec indicateur visuel clair */
.btn:disabled,
.btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #999;
}

.btn:disabled:hover,
.btn[aria-disabled="true"]:hover {
    transform: none;
    background-color: #999;
}

/* ============================================================
   ACCESSIBILITÉ - ANIMATIONS RÉDUITES
   ============================================================ */

/* Respecter les préférences utilisateur pour les animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ============================================================ */
/* SECTION FORFAITS HIVER 2026 */
/* À ajouter dans styles.css */
/* ============================================================ */

.forfaits-hiver {
    background: linear-gradient(180deg, var(--color-bg) 0%, #e8e4da 50%, var(--color-bg) 100%);
    padding: 6rem 0;
}

/* Hero Forfaits */
.forfaits-hero {
    background: linear-gradient(135deg, #2a2826 0%, #1a1918 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.forfaits-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(125, 140, 118, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(181, 99, 69, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.forfaits-hero-content {
    position: relative;
    z-index: 2;
}

.forfaits-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: #C4A970;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.forfaits-hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.forfaits-dates {
    font-size: 1rem;
    color: var(--color-brand);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Introduction */
.forfaits-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.forfaits-intro h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1a1918;
    margin-bottom: 1.5rem;
}

.forfaits-intro-text {
    font-size: 1.2rem;
    color: #5a5856;
    line-height: 1.8;
}

/* Activités Grid */
.forfaits-activites-title {
    text-align: center;
    margin: 3rem 0 2rem;
}

.forfaits-activites-title h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-brand);
}

/* Activités Grid - 3 colonnes avec images */
.forfaits-activites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.forfait-activite-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(62, 60, 56, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.forfait-activite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 60, 56, 0.18);
    border-color: var(--color-brand);
}

/* Image container */
.forfait-activite-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.forfait-activite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.forfait-activite-card:hover .forfait-activite-image img {
    transform: scale(1.15);
}

/* Content */
.forfait-activite-content {
    padding: 1.5rem;
    text-align: center;
}

.forfait-activite-icon {
    display: none;
}

.forfait-activite-card h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-brand);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.forfait-activite-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
    font-style: italic;
}

/* ============================================================
   BANNIÈRE GASTRONOMIQUE (entre activités et cartes forfaits)
   ============================================================ */
.forfait-banner-gastronomie {
    position: relative;
    width: 100%;
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
}

.forfait-banner-gastronomie img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.forfait-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 25, 24, 0.55) 0%,
        rgba(26, 25, 24, 0.3) 50%,
        rgba(26, 25, 24, 0.05) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.forfait-banner-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C4A970;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.forfait-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.forfait-banner-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 400px;
}

/* Mobile */
@media (max-width: 768px) {
    .forfait-banner-gastronomie {
        margin: 2rem 0;
        min-height: 240px;
    }

    .forfait-banner-gastronomie img {
        height: 300px;
    }

    .forfait-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(26, 25, 24, 0.6) 0%,
            rgba(26, 25, 24, 0.25) 60%,
            rgba(26, 25, 24, 0.05) 100%
        );
        justify-content: flex-end;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .forfait-banner-text {
        max-width: 100%;
    }
}

/* Forfaits Cards Section */
.forfaits-cards-section {
    background: white;
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.forfaits-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #1a1918;
    margin-bottom: 2rem;
}

.forfaits-promo-badge {
    text-align: center;
    margin-bottom: 3rem;
}

.forfaits-promo-badge span {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, #9d4f35 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(181, 99, 69, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(181, 99, 69, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(181, 99, 69, 0.5); }
}

.forfaits-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.forfait-card-item {
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(62, 60, 56, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.forfait-card-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(62, 60, 56, 0.2);
}

.forfait-card-header {
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
}

.forfait-header-vert {
    background: linear-gradient(135deg, #5a6b52 0%, #4a5944 100%);
}

.forfait-header-rouille {
    background: linear-gradient(135deg, #8f4a2e 0%, #7a3d24 100%);
}

.forfait-card-header h4 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.forfait-card-type {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: white;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.forfait-card-body {
    padding: 2.5rem 2rem;
}

.forfait-features-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.forfait-features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(62, 60, 56, 0.1);
    display: flex;
    align-items: center;
}

.forfait-features-list li:last-child {
    border-bottom: none;
}

.forfait-features-list li::before {
    content: '✓';
    color: var(--color-brand);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

.forfait-price-section {
    text-align: center;
    padding: 2rem 0 0;
    border-top: 2px solid var(--color-brand);
    position: relative;
}

.forfait-discount-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(181, 99, 69, 0.4);
}

.forfait-original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.forfait-promo-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.forfait-price-details {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.forfait-btn-reserver {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.forfait-btn-reserver:hover {
    opacity: 0.9;
    color: #FFFFFF;
}

.forfait-btn-reserver.btn-sauge {
    background: linear-gradient(135deg, #7D8C76, #5a6854);
}

.forfait-btn-reserver.btn-rouille {
    background: linear-gradient(135deg, #C17A3F, #a86534);
}

/* Table Champêtre */
.forfaits-table-champetre {
    background: linear-gradient(135deg, #2a2826 0%, #1a1918 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.forfaits-table-champetre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(125, 140, 118, 0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.forfaits-table-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.forfaits-table-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.forfaits-table-content p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #C4A970;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.forfaits-table-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-brand);
    font-weight: 700;
    margin: 2rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: rgba(125, 140, 118, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
}

.forfaits-table-note {
    font-size: 1rem;
    color: #D8C2B2;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* CTA */
.forfaits-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .forfaits-activites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .forfaits-hiver,
    .forfaits-printemps {
        padding: 3rem 0;
    }

    .forfaits-hero,
    .forfaits-cards-section,
    .forfaits-table-champetre {
        padding: 2rem 1rem;
    }

    .forfaits-activites-grid,
    .forfaits-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .forfait-activite-image {
        height: 200px;
    }

    .forfait-discount-badge {
        right: 1rem;
    }

    .forfaits-themes-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FORFAITS PRINTEMPS 2026
   ============================================ */

.forfaits-printemps {
    background: linear-gradient(180deg, var(--color-bg) 0%, #e8ebe4 50%, var(--color-bg) 100%);
    padding: 6rem 0;
}

/* Thèmes Mensuels */
.forfaits-themes-mensuels {
    margin-bottom: 4rem;
    text-align: center;
}

.forfaits-themes-mensuels h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-brand);
    margin-bottom: 2rem;
}

.forfaits-themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.forfait-theme-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(62, 60, 56, 0.08);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.forfait-theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(62, 60, 56, 0.15);
}

.forfait-theme-header {
    padding: 1.5rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.forfait-theme-header .theme-icon {
    font-size: 1.8rem;
}

.theme-mars .forfait-theme-header {
    background: linear-gradient(135deg, #5a6b52 0%, #4a5944 100%);
}

.theme-avril .forfait-theme-header {
    background: linear-gradient(135deg, #8f4a2e 0%, #7a3d24 100%);
}

.forfait-theme-header h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    margin: 0;
}

.forfait-theme-list {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
}

.forfait-theme-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(62, 60, 56, 0.1);
    color: #555;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.forfait-theme-list li:last-child {
    border-bottom: none;
}

.forfait-theme-list li .theme-bullet {
    color: var(--color-brand);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.forfait-theme-list li em {
    color: var(--color-accent);
    font-size: 0.9rem;
}

/* Prix forfait sans rabais (prix direct) */
.forfait-prix-direct {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .forfaits-themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   🔄 MODERNISATION 2026 — Mobile-First
   ============================================================ */

/* ============================================================
   ANIMATIONS AU SCROLL (IntersectionObserver)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Délais d'animation en cascade */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   HEADER COMPACT AU SCROLL
   ============================================================ */
.header {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(62, 60, 56, 0.2);
}

.header.scrolled .logo-image {
    height: 42px;
    transition: height 0.3s ease;
}

.header.scrolled .lang-option {
    padding: 2px 6px;
}

.header.scrolled .lang-flag {
    width: 16px;
}

.logo-image {
    transition: height 0.3s ease;
}

/* Indicateur section active dans la nav */
.nav a.active {
    color: var(--color-accent);
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* ============================================================
   SECTION TÉMOIGNAGES — Carrousel moderne + fond sombre
   ============================================================ */
.reassurance .avis-section {
    background: var(--color-text);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
}

.reassurance .avis-section h3 {
    color: var(--color-bg);
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

/* Carrousel container */
.avis-carousel {
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.avis-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.avis-carousel-track .avis-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Carte témoignage redesignée */
.avis-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
}

.avis-card::before {
    content: '"';
    position: absolute;
    top: -0.2em;
    left: 1rem;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
}

.avis-stars {
    color: #E8B931;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.avis-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    font-style: italic;
}

.avis-nom {
    color: var(--color-bg) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    margin-bottom: 0.2rem !important;
}

.avis-date {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
}

.avis-ratings {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avis-ratings span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.avis-highlight {
    color: var(--color-accent) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
}

/* Navigation carrousel */
.avis-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.avis-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--color-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.avis-carousel-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.avis-carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.avis-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.avis-dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* ============================================================
   SECTION HÔTES — Layout modernisé
   ============================================================ */
.hotes-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(125, 140, 118, 0.08) 0%, rgba(181, 99, 69, 0.05) 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.hotes-image {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.hotes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-brand-light);
    box-shadow: 0 8px 24px rgba(125, 140, 118, 0.3);
}

.hotes-text {
    text-align: center;
}

.hotes-intro {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: var(--color-text) !important;
}

.hotes-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-brand);
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 2px solid var(--color-brand-light);
}

@media (min-width: 768px) {
    .hotes-section {
        flex-direction: row;
        gap: 3rem;
        padding: 3rem;
    }

    .hotes-image {
        width: 200px;
        height: 200px;
    }

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

/* ============================================================
   FOOTER MULTI-COLONNES MODERNE
   ============================================================ */
.footer {
    background: #2A2826;
    color: var(--color-bg);
    padding: 0;
    margin-top: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-col h4 {
    font-family: var(--font-serif);
    color: var(--color-brand-light);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: rgba(249, 247, 242, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-col .footer-icon-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.footer-col .footer-icon-line i[data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--color-brand-light);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-bg);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(249, 247, 242, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.footer-badge-citq {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.8rem;
    color: rgba(249, 247, 242, 0.6);
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
        padding: 4rem 0;
    }
}

/* ============================================================
   CONTACT SECTION — Layout 2 colonnes modernisé
   ============================================================ */
.contact {
    padding: 3rem 0 !important;
}

.contact h2 {
    font-style: italic;
    margin-bottom: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.contact-info h3 {
    font-family: var(--font-serif);
    color: var(--color-brand);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-info p i[data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--color-brand);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-section h3 {
    font-family: var(--font-serif);
    color: var(--color-brand);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-form-section .form-group {
    margin-bottom: 1rem;
}

.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0ddd6;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(125, 140, 118, 0.15);
}

.contact-form-section textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-section .btn {
    width: 100%;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-form-section .btn {
        width: auto;
        min-width: 200px;
    }
}

/* ============================================================
   HOVER EFFECTS GLOBAUX
   ============================================================ */
/* Cartes d'activité forfait */
.forfait-activite-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forfait-activite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 60, 56, 0.15);
}

/* Cartes forfait */
.forfait-card-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forfait-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(62, 60, 56, 0.18);
}

/* Cartes chambre modal */
.chambre-card-modal {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chambre-card-modal:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(62, 60, 56, 0.15);
}

.chambre-card-modal:hover .chambre-image-modal img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.chambre-image-modal {
    overflow: hidden;
}

.chambre-image-modal img {
    transition: transform 0.5s ease;
}

/* Info cards hover */
.atout-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atout-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(62, 60, 56, 0.12);
}

/* Boutons effet hover global amélioré */
.btn-sauge, .btn-rouille, .btn-secondary,
.forfait-btn-reserver, .btn-details-modal {
    transition: all 0.3s ease;
}

.btn-sauge:hover, .btn-rouille:hover,
.forfait-btn-reserver:hover, .btn-details-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   SECTION CHAMBRES-DETAILS — Titre non-italique
   ============================================================ */
#chambres-details h2 {
    font-style: normal !important;
}

/* ============================================================
   ESPACEMENT SECTIONS STANDARDISÉ (Mobile-First)
   ============================================================ */
.accroche,
.produit,
.experience,
.atouts-confort,
.reassurance,
.forfaits-printemps,
.activites-simple {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .accroche,
    .produit,
    .experience,
    .atouts-confort,
    .reassurance,
    .forfaits-printemps,
    .activites-simple {
        padding: 5rem 0;
    }
}

/* ============================================================
   POLITIQUE D'ANNULATION — Checkbox + Modal
   ============================================================ */
.policy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.policy-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--color-brand);
    cursor: pointer;
}

#pay-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #999 !important;
}


