/* ====================================
   RESET & BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs nature et zen */
    --primary-color: #4A7A6A;      /* Vert sauge frais */
    --secondary-color: #6B9E8A;    /* Vert sauge clair */
    --accent-color: #0047AB;       /* Bleu cobalt */
    --text-dark: #0A2E4D;          /* Bleu foncé profond */
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #e74c3c;
    --info-color: #3498db;
    
    /* Typographie */
    --font-main: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ====================================
   CONTAINER & LAYOUT
   ==================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ====================================
   HEADER - MOBILE FIRST
   ==================================== */
.site-header {
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 100px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0;
    line-height: 1.1;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--accent-color) 40%,
        #FFFFFF 50%,
        var(--accent-color) 60%,
        var(--accent-color) 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.logo-text .tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.15rem;
}
/* Menu Burger - MOBILE */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation - MOBILE */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 5rem;
}

.main-nav.active {
    right: 0;
}

.main-nav ul {
    list-style: none;
    padding: 0;
}

.main-nav ul li {
    border-bottom: 1px solid var(--border-color);
}

.main-nav ul li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.82rem;
    transition: var(--transition);
}

.main-nav ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: var(--spacing-lg);
}

/* Éléments du menu mobile - cachés par défaut (desktop) */
.nav-header-mobile,
.nav-footer-mobile,
.nav-logo-mobile {
    display: none;
}

/* Boutons hero - texte mobile caché par défaut (desktop) */
.btn-text-mobile {
    display: none;
}

.btn-text-desktop {
    display: inline;
}

/* Date session - mobile caché par défaut (desktop) */
.date-mobile {
    display: none;
}

.date-desktop {
    display: inline;
}

/* Conteneur des boutons hero */
.hero-buttons {
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Message fil conducteur */
/* Motto dans le logo */
.motto-text {
    font-size: 0.65rem;
    color: var(--accent-color);
    font-style: italic;
    text-align: center;
    font-weight: 400;
    line-height: 1;
    margin-top: 0.35rem;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--accent-color) 40%,
        #FFFFFF 50%,
        var(--accent-color) 60%,
        var(--accent-color) 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s ease-in-out infinite;
}

@keyframes mottoShine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Message fil conducteur - SUPPRIMÉ */
.motto {
    display: none;
}

.motto p {
    display: none;
}

/* ====================================
   MESSAGES FLASH
   ==================================== */
.flash-message {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: slideDown 0.3s ease;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

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

/* Retour à la ligne desktop-only */
.br-desktop {
    display: none; /* Caché sur mobile et tablette */
}

/* Retour à la ligne mobile-only */
.br-mobile {
    display: inline; /* Visible par défaut (mobile) */
}

/* Bullet desktop-only */
.bullet-desktop {
    display: none; /* Caché par défaut (mobile) */
}

/* ====================================
   MAIN CONTENT
   ==================================== */
.main-content {
    min-height: calc(100vh - 400px);
    padding: 0;
    flex: 1;
}

/* Hero Section avec Vidéo */
.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

/* Vidéo en fond plein écran */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Overlay sombre sur la vidéo */
.hero-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

/* Contenu texte PAR DESSUS la vidéo */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.70);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    color: var(--accent-color);
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--accent-color) 40%,
        #FFFFFF 50%,
        var(--accent-color) 60%,
        var(--accent-color) 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s ease-in-out infinite;
}

.hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
    color: white;
}

/* Phrase "Faire Silence..." avec effet or */
.hero-content p:first-of-type {
    font-style: italic;
    font-size: 1.1rem;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--accent-color) 40%,
        #FFFFFF 50%,
        var(--accent-color) 60%,
        var(--accent-color) 100%
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s ease-in-out infinite;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 120, 87, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 2.5rem 0; /* Uniformisé partout */
}

/* Réduire l'espace après le hero accueil */
.hero + .section {
    margin-top: -1px; /* Supprime espace résiduel */
    padding-top: 2.5rem; /* Même que les autres */
}

/* Ajouter un petit espace après les autres sections hero */
.section-livre + .section,
.section-ateliers + .section,
.section-soins-hero + .section,
.section-balades-hero + .section,
.section-contact-hero + .section,
.section-apropos-hero + .section {
    padding-top: 2.5rem; /* Uniformisé */
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: var(--spacing-sm) auto 0;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Cards avec image de fond */
.card-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

/* Overlay supprimé - image à 100% */
.card-overlay {
    display: none;
}

/* Contenu dans un cadre blanc centré */
.card-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 90%;
}

/* Styles pour le titre dans le cadre blanc */
.card-with-bg .card-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Styles pour le texte dans le cadre blanc */
.card-with-bg .card-content p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Images de fond pour chaque carte - Section "Bienvenue" */
.card-mission {
    background-image: url('../images/accueil_mission.jpg');
}

.card-valeurs {
    background-image: url('../images/accueil_valeurs.jpg');
}

.card-objectifs {
    background-image: url('../images/accueil_objectifs.jpg');
}

/* Images de fond pour chaque carte - Section "Notre Approche" */
.card-coherence {
    background-image: url('../images/accueil_coherence_cardiaque.jpg');
}

.card-contemplation {
    background-image: url('../images/accueil_contemplation.jpg');
}

.card-sonotherapie {
    background-image: url('../images/accueil_Sonotherapie.jpg');
}

/* Section Balades avec Vidéo (identique au Hero) */
.section-balades {
    position: relative;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Image en fond plein écran */
.balades-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Overlay vert 50% */
.balades-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 95, 79, 0);
    z-index: 2;
}

/* Contenu texte par-dessus */
.balades-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 4rem; /* Padding égal de tous les côtés */
    background: rgba(0, 0, 0, 0.5); /* Fond noir estompé à 50% */
    border-radius: 15px; /* Cadre arrondi */
    max-width: 900px; /* Limiter la largeur */
    margin: 0 auto; /* Centrer */
}

.balades-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.balades-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
    color: white;
}

.balades-content .btn {
    margin-bottom: 1rem; /* Espace entre le bouton et le bas du cadre */
}

/* ====================================
   SECTION SOINS (INDEX - AVEC IMAGE)
   ==================================== */
.section-soins-index {
    position: relative;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.soins-index-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.soins-index-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 95, 79, 0);
    z-index: 2;
}

.soins-index-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 4rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.soins-index-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.soins-index-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
    color: white;
}

.soins-index-content .btn {
    margin-bottom: 1rem;
}

/* ====================================
   SECTION ATELIERS (INDEX - AVEC IMAGE)
   ==================================== */
.section-ateliers-index {
    position: relative;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0; /* Pas d'espace entre Ateliers et Balades */
    box-sizing: border-box;
}

/* Image en fond plein écran */
.ateliers-index-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Overlay transparent */
.ateliers-index-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

/* Contenu texte par-dessus */
.ateliers-index-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 4rem; /* Padding égal de tous les côtés */
    background: rgba(0, 0, 0, 0.5); /* Fond noir estompé à 50% */
    border-radius: 15px; /* Cadre arrondi */
    max-width: 900px; /* Limiter la largeur */
    margin: 0 auto; /* Centrer */
}

.ateliers-index-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.ateliers-index-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
    color: white;
}

.ateliers-index-content .btn {
    margin-bottom: 1rem; /* Espace entre le bouton et le bas du cadre */
}

/* Section Livre avec image */
.section-livre {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Centrer les titres des cartes ateliers */
.card-ateliers h3 {
    text-align: center;
}

.livre-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

/* Image de couverture */
.livre-image {
    width: 100%;
    max-width: 300px;
}

.livre-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Texte du livre */
.livre-text {
    text-align: center;
    flex: 1;
}

.livre-pretitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.livre-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.livre-description {
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.livre-text .btn-primary {
    background: var(--primary-color);
    display: inline-block;
}

/* ====================================
   SECTION ATELIERS (HERO)
   ==================================== */
.section-ateliers {
    background-image: url('../images/ateliers.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
}

/* Overlay sombre pour améliorer la lisibilité du texte */
.section-ateliers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Transparent - pas d'overlay */
    z-index: 1;
}

.ateliers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.ateliers-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.ateliers-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white;
}

/* ====================================
   SECTION SOINS (HERO)
   ==================================== */
.section-soins-hero {
    background-image: url('../images/soins/soins-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
}

.section-soins-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.soins-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.soins-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.soins-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white;
}

/* ====================================
   SECTION BALADES (HERO)
   ==================================== */
.section-balades-hero {
    background-image: url('../images/accueil_balades_contemplatives.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
}

/* Overlay sombre pour améliorer la lisibilité du texte */
.section-balades-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Transparent - pas d'overlay */
    z-index: 1;
}

.balades-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.balades-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.balades-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white;
}

/* ====================================
   SECTION CONTACT (HERO)
   ==================================== */
.section-contact-hero {
    background-image: url('../images/me_contacter.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
}

/* Overlay transparent (pas d'overlay) */
.section-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Transparent - pas d'overlay */
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.contact-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white;
}

/* ====================================
   SECTION À PROPOS (HERO)
   ==================================== */
.section-apropos-hero {
    background-image: url('../images/apropos_hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: calc(100vh - 100px);
    min-height: calc(100dvh - 100px);
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
}

/* Overlay transparent (pas d'overlay) */
.section-apropos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Transparent - pas d'overlay */
    z-index: 1;
}

.apropos-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: auto;
    max-width: 500px;
    margin-left: 5%;
    padding: 2.5rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.apropos-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.apropos-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Crédit photo */
.photo-credit {
    text-align: right;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-light);
}

.photo-credit a {
    color: var(--primary-color);
    text-decoration: none;
}

.photo-credit a:hover {
    text-decoration: underline;
}

/* Section finale contact - collée au footer */
.section-finale-contact {
    padding-bottom: var(--spacing-xl);
}

.section-finale-balades {
    padding-bottom: var(--spacing-xl);
}

.section-finale-apropos {
    padding-bottom: var(--spacing-xl);
}

/* Formulaires */
.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-required {
    color: var(--error-color);
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-md) 0 var(--spacing-md);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-motto {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

.footer-subtitle-detail {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

/* Réseaux sociaux bloc footer */
.footer-social-block {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-social-icons {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.footer-social-icons .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social-icons .social-link i {
    font-size: 3rem;
}

.footer-social-icons .social-link span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-social-icons .social-instagram span {
    color: #FF6B8A;
}

.footer-social-icons .social-facebook span {
    color: #4BA3FF;
}

.footer-social-icons .social-youtube span {
    color: #FF0000;
}

.footer-social-icons .social-link:hover {
    transform: scale(1.1);
}

/* Ancien footer-social (conservé pour compatibilité) */
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-social .social-link {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.footer-social .social-link:hover {
    transform: scale(1.1);
}

.social-instagram {
    color: #FF6B8A;
}

.social-facebook {
    color: #4BA3FF;
}

.social-youtube {
    color: #FF0000;
}

/* Réseaux sociaux menu mobile */
.nav-social-mobile {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.nav-social-mobile .social-link {
    font-size: 2rem;
}

/* Lien désactivé (à venir) */
.link-disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-contact i {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

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

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-credits {
    font-size: 0.85rem !important;
}

/* Menu déroulant villes SEO - Desktop uniquement */
.footer-villes-wrapper {
    display: none;
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-villes-toggle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-villes-toggle:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-villes-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.footer-villes-wrapper.open .footer-villes-arrow {
    transform: rotate(180deg);
}

.footer-villes-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem 2rem;
    max-width: 900px;
    margin: 1rem auto 0;
    text-align: left;
}

.footer-villes-wrapper.open .footer-villes-grid {
    display: grid;
}

.footer-villes-col {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-villes-col a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.6;
}

.footer-villes-col a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   RESPONSIVE - TABLETTES
   ==================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .logo-text .tagline {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .hero {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
    }
    
    .hero-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-balades {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
    }
    
    .section-ateliers-index {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
    }
    
    .balades-content h2 {
        font-size: 2.5rem;
    }
    
    .ateliers-index-content h2 {
        font-size: 2.5rem;
    }
    
    .soins-index-content h2 {
        font-size: 2.5rem;
    }
    
    .motto p {
        font-size: 0.9rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Section livre responsive tablette */
    .livre-content {
        flex-direction: row;
        align-items: center;
    }
    
    .livre-image {
        max-width: 250px;
    }
    
    .livre-text h2 {
        font-size: 2.5rem;
    }
    
    .section-livre {
        min-height: 700px;
        height: auto;
        padding: 60px 40px;
    }
    
    .section-ateliers {
        min-height: 700px;
        height: auto;
        padding: 60px 40px;
    }
    
    .ateliers-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ateliers-hero-content p {
        font-size: 1.3rem;
    }
    
    .section-soins-hero {
        min-height: 700px;
        height: auto;
        padding: 60px 40px;
    }
    
    .soins-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .soins-hero-content p {
        font-size: 1.3rem;
    }
    
    .section-balades-hero {
        min-height: 700px;
        height: auto;
        padding: 60px 40px;
    }
    
    .balades-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .balades-hero-content p {
        font-size: 1.3rem;
    }
    
    .section-contact-hero {
        min-height: 700px;
        height: auto;
        padding: 60px 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.3rem;
    }
    
    .section-apropos-hero {
        min-height: 700px;
        height: auto;
        padding: 60px 40px;
    }
    
    .apropos-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .apropos-hero-content p {
        font-size: 1.3rem;
    }
    
    /* Fix menu mobile tablette : fond vert comme sur mobile */
    .main-nav {
        background: var(--primary-color);
    }
    
    .main-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .main-nav ul li a {
        color: white;
    }
    
    .main-nav ul li a:hover {
        background: var(--secondary-color);
        color: white;
    }
}

/* ====================================
   RESPONSIVE - DESKTOP
   ==================================== */
@media (min-width: 1024px) {
    /* Footer villes - visible desktop uniquement */
    .footer-villes-wrapper {
        display: block;
    }
    
    /* Logo desktop */
    .logo-image {
        width: 100px;
        height: 100px;
    }
    /* Masquer le menu burger */
    .menu-toggle {
        display: none;
    }
    
    /* Navigation horizontale */
    .main-nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding-top: 0;
    }
    
    .main-nav ul {
        display: flex;
        gap: 0.75rem; /* Réduit de var(--spacing-md) pour gagner de l'espace */
    }
    
    .main-nav ul li {
        border-bottom: none;
    }
    
    .main-nav ul li a {
        padding: var(--spacing-xs) 0.65rem; /* Réduit le padding horizontal */
        position: relative;
        font-size: 0.82rem; /* Réduit la taille de police */
        color: rgba(255, 255, 255, 0.95);
    }
    
    .main-nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: var(--transition);
    }
    
    .main-nav ul li a:hover {
        background: transparent;
        padding-left: 0.65rem; /* Maintenir le même padding au hover */
        color: var(--accent-color);
    }
    
    .main-nav ul li a:hover::after {
        width: 80%;
    }
    
    .hero {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-balades {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
    }
    
    .section-ateliers-index {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
    }
    
    .balades-content h2 {
        font-size: 3.5rem;
    }
    
    .ateliers-index-content h2 {
        font-size: 3.5rem;
    }
    
    .balades-content p {
        font-size: 1.2rem;
    }
    
    .ateliers-index-content p {
        font-size: 1.2rem;
    }
    
    .soins-index-content h2 {
        font-size: 3.5rem;
    }
    
    .soins-index-content p {
        font-size: 1.2rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    /* Section livre responsive desktop */
    .livre-image {
        max-width: 350px;
    }
    
    .livre-text h2 {
        font-size: 3rem;
    }
    
    .livre-description {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .section-livre {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
        height: auto;
        padding: 80px 60px;
    }
    
    .section-ateliers {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
        height: auto;
        padding: 80px 60px;
    }
    
    .ateliers-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .ateliers-hero-content p {
        font-size: 1.5rem;
    }
    
    .section-soins-hero {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
        height: auto;
        padding: 80px 60px;
    }
    
    .soins-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .soins-hero-content p {
        font-size: 1.5rem;
    }
    
    .section-balades-hero {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
        height: auto;
        padding: 80px 60px;
    }
    
    .balades-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .balades-hero-content p {
        font-size: 1.5rem;
    }
    
    .section-contact-hero {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
        height: auto;
        padding: 80px 60px;
    }
    
    .contact-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.5rem;
    }
    
    .section-apropos-hero {
        min-height: calc(100vh - 100px);
        min-height: calc(100dvh - 100px);
        height: auto;
        padding: 80px 60px;
    }
    
    .apropos-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .apropos-hero-content p {
        font-size: 1.5rem;
    }
    
    /* Citation À propos - 2 lignes sur desktop */
    .br-desktop {
        display: inline; /* Afficher le br sur desktop */
    }
    
    /* Phrase motto sur une seule ligne sur desktop */
    .br-mobile {
        display: none;
    }
    
    .bullet-desktop {
        display: inline;
    }
}

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

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.hidden {
    display: none;
}

/* Accessibilité */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ====================================
   RESPONSIVE - MOBILE UNIQUEMENT
   ==================================== */
@media (max-width: 767px) {
    /* Header mobile : burger à gauche, logo + textes centrés */
    .header-content {
        display: flex;
        align-items: center;
        padding: 0 0.5rem;
    }
    
    /* Burger à gauche (order -1 pour le mettre en premier) */
    .menu-toggle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-shrink: 0;
        order: -1;
    }
    
    /* Conteneur logo */
    .logo {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 0;
    }
    
    /* Logo + texte */
    .logo-link {
        display: flex;
        align-items: center;
        flex: 1;
    }
    
    /* Logo taille fixe */
    .logo-image {
        width: 100px;
        height: 100px;
        margin: 0;
        flex-shrink: 0;
    }
    
    /* Bloc texte centré dans l'espace restant */
    .logo-text {
        flex: 1;
        text-align: center;
        padding: 0 0.25rem;
        min-width: 0;
    }
    
    /* Menu mobile : s'ouvre par la gauche */
    .main-nav {
        right: auto;
        left: -100%;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        background: var(--primary-color);
        padding-top: 0.5rem !important;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .main-nav ul li a {
        color: white;
    }
    
    .main-nav ul li a:hover {
        background: var(--secondary-color);
        color: white;
    }
    
    /* Titre principal */
    .logo-text h1 {
        font-size: clamp(0.7rem, 4vw, 1.0rem);
        white-space: nowrap;
    }
    
    /* Sous-titre Anne Brulard Labasse */
    .logo-text .tagline {
        font-size: 0.85rem;
    }
    
    /* Phrase motto sur 2 lignes */
    .motto-text {
        font-size: 0.6rem;
        line-height: 1.4;
    }
    
    /* En-tête du menu mobile */
    .nav-header-mobile {
        display: block;
        padding: 1.5rem 1rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-decoration: none;
    }
    
    .nav-logo-mobile {
        display: block;
        width: 100px;
        height: 100px;
        margin: 0 auto 0.75rem;
        object-fit: contain;
    }
    
    .nav-title-mobile {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .nav-subtitle-mobile {
        font-size: 0.9rem;
        color: white;
        font-weight: 600;
    }
    
    /* Footer du menu mobile (phrase motto) - juste après les liens */
    .nav-footer-mobile {
        display: block;
        padding: 1.5rem 1rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-footer-mobile p {
        font-size: 0.85rem;
        color: var(--accent-color);
        font-style: italic;
        line-height: 1.5;
    }
    
    /* Footer du site - réduire les espaces */
    .site-footer {
        padding-top: 1rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "col1 col1"
            "col2 col3";
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-col:nth-child(1) {
        grid-area: col1;
    }
    
    .footer-col:nth-child(2) {
        grid-area: col2;
    }
    
    .footer-col:nth-child(3) {
        grid-area: col3;
    }
    
    .footer-col h3 {
        margin-bottom: 0.25rem;
    }
    
    .footer-col p {
        margin-bottom: 0.25rem;
    }
    
    .footer-motto {
        margin-top: 0.25rem;
    }
    
    /* ===== HERO MOBILE ===== */
    
    /* Bloc hero : réduire largeur et marges */
    .hero-content {
        margin: 0 1rem;
        padding: 1.5rem 1rem;
    }
    
    /* Réduire tailles des textes */
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p:first-of-type {
        font-size: 0.95rem;
    }
    
    /* Boutons : texte court sur mobile */
    .btn-text-desktop {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
    
    /* Date session : afficher version courte sur mobile */
    .date-desktop {
        display: none;
    }
    
    .date-mobile {
        display: inline;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* ===== SECTIONS MOBILE ===== */
    
    /* Titre de section : réduire espacement entre lignes */
    .section-title {
        line-height: 1.1;
    }
    
    /* Bloc Ateliers : réduire marges et textes */
    .ateliers-index-content {
        margin: 0 1rem;
        padding: 1.5rem 1rem;
    }
    
    .ateliers-index-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .ateliers-index-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Supprimer l'espace blanc entre Ateliers et Balades */
    .section-ateliers-index,
    .section-balades,
    .section-soins-index {
        margin-bottom: 0;
    }
    
    /* Bloc Balades : réduire marges et textes */
    .balades-content {
        margin: 0 1rem;
        padding: 1.5rem 1rem;
    }
    
    .balades-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .balades-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Bloc Soins : réduire marges et textes */
    .soins-index-content {
        margin: 0 1rem;
        padding: 1.5rem 1rem;
    }
    
    .soins-index-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .soins-index-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* ===== PAGE À PROPOS MOBILE ===== */
    
    /* Image hero différente sur mobile */
    .section-apropos-hero {
        background-image: url('../images/apropos_hero_mobile.jpg');
    }
    
    /* ===== PAGE LIVRE MOBILE ===== */
    
    /* Formulaire : Code postal et Ville empilés sur mobile */
    #orderForm [style*="grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Récapitulatif : empêcher les € de passer à la ligne */
    #orderForm [style*="justify-content: space-between"] strong {
        white-space: nowrap;
    }
    
    /* ===== PAGE ATELIERS MOBILE ===== */
    
    /* Atelier 1 (Retour vers Soi) : fond gris très clair */
    .atelier-retour .card {
        background: #F5F5F5;
    }
    
    /* Atelier 2 (Énergies Vibratoires) : fond gris un peu plus foncé */
    .atelier-energies .card {
        background: #E8E8E8;
    }
    
    /* Titre "Les Bienfaits" : réduire l'espacement entre lignes */
    .section-bienfaits h2 {
        line-height: 1.2;
        font-size: 1.8rem;
    }
    
    /* ===== PAGE BALADES MOBILE ===== */
    
    /* Titre CTA "Prêt à marcher..." : réduire l'espacement */
    .section-finale-balades h2 {
        line-height: 1.2;
        font-size: 1.8rem;
    }
    
    /* ===== PAGE RÉSERVER MOBILE ===== */
    
    /* Titre hero réserver */
    .reserver-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    /* Carte de session : passer en colonne + fond gris */
    .session-card {
        grid-template-columns: 1fr !important;
        background: #E8E8E8 !important;
    }
    
    .session-card-image {
        min-height: 180px !important;
    }
    
    .session-card-content {
        padding: 1rem !important;
        background: #E8E8E8;
    }
    
    .session-card-content h3 {
        font-size: 1.2rem !important;
    }
    
    /* Infos session : 2 colonnes avec prix intégré */
    .session-card-infos {
        grid-template-columns: 1fr 1fr !important;
    }
    
    /* Afficher prix et places sur mobile */
    .session-prix-mobile,
    .session-places-mobile {
        display: flex !important;
    }
    
    /* Footer session : juste le bouton, prix déplacé dans infos */
    .session-card-footer {
        border-top: none !important;
        padding-top: 0.5rem !important;
    }
    
    .session-card-footer > div:first-child {
        display: none !important;
    }
    
    .session-card-footer > div:last-child {
        width: 100%;
        justify-content: center;
        display: flex;
    }
    
    .session-card-footer > div:last-child span {
        display: none !important;
    }
    
    /* Sessions passées : 1 colonne */
    .sessions-passees-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* ===== PAGE CONTACT MOBILE ===== */
    
    /* Citation finale : réduire la taille */
    .section-finale-contact p:first-child {
        font-size: 1.2rem !important;
        line-height: 1.4;
    }
    
    /* ===== PAGES LÉGALES MOBILE ===== */
    
    /* Hero : réduire taille titre et espacement */
    .section-legal-hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
}