/* --- Réinitialisation et Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif; /* Police principale */
    line-height: 1.6;
    background-color: #F5F5DC; /* Fond Beige */
    color: #4a4a4a; /* Couleur texte par défaut Gris foncé */
}

.container {
    max-width: 1100px; /* Largeur max du contenu centré */
    margin: 0 auto; /* Centrage */
    padding: 0 20px; /* Espacement G/D */
}

img {
    max-width: 100%; /* Images responsives */
    height: auto;
    display: block; /* Empêche espace sous images */
}

/* Styles généraux pour les titres */
h1, h2, h3 {
    margin-bottom: 0.8em;
    color: #6F5F59; /* Brun/Gris foncé */
    font-weight: 400; /* Police plus légère */
}

/* Tailles des titres */
h1 { font-size: 2.5em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.3em; } /* Utilisé dans .service-item */

/* Style général paragraphe */
p {
    margin-bottom: 1em;
}

/* Style général liens */
a {
    color: #8C7B75; /* Brun/Gris doux (Couleur Header) */
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: #6F5F59; /* Assombrissement au survol */
    text-decoration: underline;
}

/* --- Header (Commun à toutes les pages) --- */
header {
    background-color: #8C7B75; /* Brun/Gris doux */
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Ligne blanche subtile */
    position: sticky; /* Header reste en haut */
    top: 0;
    z-index: 100; /* Au-dessus du reste */
}

header .container {
    display: flex; /* Alignement logo / nav */
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    display: inline-block; /* Pour que le lien épouse l'image */
}

.site-logo {
    max-height: 150px; /* Taille logo sur PC */
    width: auto;
    vertical-align: middle; /* Bon alignement vertical */
    border-radius: 25px; 
}

.site-logo2 {
    display: block;     /* Assure que l'image se comporte comme un bloc */
    margin-left: auto;  /* Marge automatique à gauche */
    margin-right: auto; /* Marge automatique à droite */
    margin-top: 10px;   /* Espace au-dessus (ajustable) */
    margin-bottom: 10px;/* Espace en dessous (ajustable) */
    max-width: 150px;   /* Limite la largeur max du logo (ajustable) */
    width: 50%;         /* Prend 80% de la largeur dispo, jusqu'au max-width */
}

/* Styles Navigation */
header nav ul {
    list-style: none; /* Pas de puces */
    display: flex; /* Alignement horizontal */
    gap: 15px; /* Espace entre items */
    padding-left: 0; /* Annule padding navigateur */
    margin-bottom: 0; /* Annule marge navigateur */
}

header nav li {
    margin-bottom: 0; /* Annule marge navigateur */
}

header nav a {
    padding: 5px 10px;
    color: #EAE6D4; /* Beige clair pour liens nav */
    transition: color 0.3s ease;
}

/* Style lien actif / survol */
header nav a.active,
header nav a:hover {
    color: #ffffff; /* Blanc */
    font-weight: bold;
}

/* --- Main Content (Styles généraux) --- */
main {
    padding-top: 30px; /* Espace sous le header */
}

/* --- Styles spécifiques à index.html --- */
/* Section Hero */
.hero {
    position: relative;
    text-align: center;
    /*color: white; /* Texte blanc sur image */
    color: #6F5F59;
    margin-bottom: 30px;
}

.hero img {
    width: 15%;
    max-height: 200px; /* Hauteur max bannière */
    /*object-fit: cover; /* Recadrage propre */
    /*filter: brightness(0.8) contrast(0.9); /* Filtre image */
    /*border-radius: 5px;
   
}

.hero .hero-text {
    position: absolute; /* Texte superposé */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centrage parfait */
    width: 80%;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* Ombre pour lisibilité */
}
.hero h1 {
    /*color: #ffffff; /* Titre blanc */
    color: #6F5F59; /* Titre blanc */
    margin-bottom: 0.5em;
    font-size: 2.8em;
}
.hero p {
    font-size: 1.2em;
    /*color: #ffffff; /* Texte blanc */
    color: #6F5F59; /* Texte blanc */
}

/* Section Intro */
.intro {
    text-align: center;
    padding: 30px 0;
    max-width: 800px; /* Largeur limitée */
    margin-left: auto; /* Centrage */
    margin-right: auto;
}

/* Preview Services (Même si commenté dans index.html, utile si réactivé) */
.services-preview {
    display: flex;
    justify-content: space-around;
    gap: 25px;
    flex-wrap: wrap;
    text-align: center;
    padding: 30px 0;
}

.service-item {
    flex-basis: calc(33.333% - 25px); /* 3 colonnes avec espace */
    background-color: #ffffff; /* Fond blanc */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px); /* Effet lévitation */
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.service-item img { /* Icônes dans les items */
    max-height: 55px;
    margin: 0 auto 15px auto; /* Centrage */
}
.service-item h3 { /* Titres dans les items */
    color: #6F5F59;
    margin-bottom: 0.5em;
    font-size: 1.3em; /* Taille spécifique H3 ici */
}
.service-item p {
     color: #555;
     font-size: 0.95em;
}

/* --- Boutons CTA (Utilisés sur plusieurs pages) --- */
.cta-button {
    display: inline-block;
    background-color: #8C7B75; /* Fond couleur header */
    color: #F5F5DC; /* Texte couleur body */
    padding: 12px 25px;
    border-radius: 25px; /* Arrondi */
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #6F5F59; /* Assombrissement */
    color: #ffffff; /* Texte blanc */
    text-decoration: none;
    transform: scale(1.03); /* Effet zoom */
}

/* Variante grand bouton (Utilisé sur index.html si décommenté) */
.cta-button.large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Section Main CTA (Utilisé sur index.html si décommenté) */
.main-cta {
    text-align: center;
    padding: 40px 0;
}
.main-cta p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #6F5F59;
}

/* --- Styles pour les pages de contenu type (Sonothérapie, Sauna, etc.) --- */
/* Titre de page */
.page-title {
    text-align: center;
    padding: 25px 0;
    border-bottom: 1px solid #E0DBCB; /* Ligne séparation beige foncée */
    margin-bottom: 40px;
}
.page-title h1 {
    color: #6F5F59; /* Titre principal de page */
}
.page-title p { /* Sous-titre éventuel */
    color: #777;
    font-size: 1.1em;
    max-width: 700px;
    margin: 10px auto 0 auto;
    line-height: 1.4;
}

/* Structure Image + Texte */
.content-section {
    display: flex;
    gap: 40px; /* Espace entre image et texte */
    align-items: flex-start; /* Alignement haut */
    margin-bottom: 50px;
    flex-wrap: wrap; /* Passage en colonne sur mobile */
}

/* Inversion ordre pour varier */
.content-section.reverse {
    flex-direction: row-reverse;
}

/* Colonne image */
.content-image {
    flex: 1; /* Prend 1 part d'espace */
    min-width: 300px; /* Largeur min avant passage en colonne */
}

.content-image img {
    border-radius: 8px; /* Coins arrondis images */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Ombre douce */
}

/* Colonne texte */
.content-text {
    flex: 1.5; /* Prend 1.5 part d'espace */
    min-width: 300px;
}
.content-text h2 { /* Titres secondaires */
    color: #8C7B75; /* Couleur header */
    margin-bottom: 0.6em;
}
.about-me-text { 
     padding-left: 15px;
     padding-right: 15px;      
}
/* Liste à puces personnalisée */
.content-text ul {
    list-style-type: none; /* Pas de puce par défaut */
    padding-left: 0;
    margin-left: 0; /* Annuler marge navigateur */
}
.content-text li {
    padding-left: 25px; /* Espace pour le symbole */
    position: relative; /* Pour positionner le ::before */
    margin-bottom: 0.8em;
}
.content-text li::before { /* Le symbole personnalisé */
    content: "🌿"; /* Symbole feuille */
    color: #8C7B75; /* Couleur header */
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.1em;
}

/* --- Styles spécifiques page Contact --- */
.contact-details {
    margin-top: 0; /* Pas de marge sup car plus de form */
    padding-top: 0;
    border-top: none;
}
.contact-details h2 {
    color: #6F5F59;
    margin-bottom: 15px;
}
.contact-details p {
    margin-bottom: 0.8em;
    color: #555;
}
.contact-details strong { /* Texte en gras (labels) */
    color: #4a4a4a;
    font-weight: bold;
}

.map-placeholder {
     /* Pas de fond ni bordure */
     padding: 30px 0; /* Espace vertical */
     text-align: center;
     color: #6F5F59;
     margin-top: 30px; /* Espace au-dessus */
     width: 100%;
}

/* Style pour l'iframe Google Maps */
.map-placeholder iframe {
    max-width: 100%;
    width: 100%;
    min-height: 400px; /* Hauteur carte */
    border: 0; /* Pas de bordure */
    display: block; /* Évite espace dessous */
}

/* --- Footer (Commun à toutes les pages) --- */
footer {
    background-color: #8C7B75; /* Couleur Header */
    color: #EAE6D4; /* Beige clair texte */
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    font-size: 0.9em;
    border-top: 3px solid #6F5F59; /* Bordure supérieure marquée */
}

footer p {
    margin-bottom: 0.8em;
}

footer a {
    color: #F5F5DC; /* Beige liens */
    font-weight: bold;
}
footer a:hover {
    color: #ffffff; /* Blanc au survol */
    text-decoration: none;
}

.A-propos-De-Moi-section {
    display: flex;         /* Active Flexbox */
    align-items: center;  /* Centre verticalement l'image et le texte */
    gap: 10px;            /* Espace entre l'image et le bloc texte */
    margin-top: 10px;     /* Espace au-dessus */
    margin-bottom: 10px;  /* Espace en dessous */
    flex-wrap: wrap;      /* Permet de passer en colonne si pas assez de place */
    justify-content: center; /* Centre les éléments quand ils wrappent */
    padding-left: 10px; 
    padding-right: 10px; 
}

.about-me-image img {
    border-radius: 8px; /* Coins arrondis images */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Ombre douce */
}

/* --- Styles Bandeau Cookies --- */
.cookie-consent-banner {
    position: fixed;       /* Reste fixe à l'écran */
    bottom: 0;             /* En bas de la page */
    left: 0;               /* Bord gauche */
    width: 100%;           /* Toute la largeur */
    background-color: #8C7B75; /* Fond couleur header */
    color: #EAE6D4;        /* Texte beige clair */
    padding: 15px 25px;    /* Espacement intérieur */
    z-index: 1000;         /* Au-dessus de tout */
    display: none;         /* Caché par défaut */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* Ombre en haut */
    font-size: 0.9em;

    /* Utilisation de Flexbox pour aligner texte et bouton */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Permet de passer à la ligne sur petit écran */
    gap: 15px; /* Espace entre texte et bouton */
}

.cookie-consent-banner p {
    margin-bottom: 0; /* Annule marge du p */
    flex-grow: 1; /* Le texte prend l'espace dispo */
    margin-right: 15px; /* Espace à droite du texte */
}

.cookie-consent-banner a {
    color: #F5F5DC; /* Lien couleur beige */
    text-decoration: underline; /* Souligner pour visibilité */
    font-weight: bold;
}
.cookie-consent-banner a:hover {
    color: #ffffff; /* Blanc au survol */
}

/* Style spécifique pour le bouton accepter */
.cookie-accept-btn {
    /* Hérite du style .cta-button mais on peut ajuster */
    padding: 8px 18px; /* Un peu plus petit */
    border-radius: 20px;
    flex-shrink: 0; /* Empêche le bouton de rétrécir */
    background-color: #F5F5DC; /* Fond beige */
    color: #6F5F59; /* Texte brun foncé */
}
.cookie-accept-btn:hover {
     background-color: #ffffff; /* Fond blanc au survol */
     color: #6F5F59;
}

/* Pour afficher le bandeau via JS */
.cookie-consent-banner.show {
    display: flex; /* ou display: block; si flex pose souci */
}

/* Responsive pour le bandeau cookie */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 12px 15px;
        text-align: center; /* Centrer sur mobile */
        justify-content: center; /* Centrer les éléments */
    }
    .cookie-consent-banner p {
        margin-right: 0; /* Plus d'espace forcé à droite */
        margin-bottom: 10px; /* Espace sous le texte avant le bouton */
        flex-basis: 100%; /* Le texte prend toute la largeur */
    }
}


/* --- Responsive (Ajustements pour petits écrans) --- */
@media (max-width: 768px) {
    /* Header Mobile */
    header .container {
        flex-direction: column; /* Logo au-dessus nav */
        gap: 15px;
    }
    .site-logo {
        max-height: 60px; /* Logo plus petit sur mobile */
    }
    header nav ul {
        flex-wrap: wrap; /* Passage à la ligne si besoin */
        justify-content: center; /* Centrage nav */
        padding-top: 10px;
        gap: 10px 15px;
    }

    /* Typographie Mobile */
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.2em; } /* Ajustement H3 mobile */
    .hero h1 { font-size: 2.2em; }
    .hero p { font-size: 1em; }

    /* Service Items Mobile */
    .services-preview {
        flex-direction: column; /* Une colonne */
        gap: 20px;
    }
    .service-item {
        flex-basis: 100%; /* Pleine largeur */
        padding: 20px;
    }

    /* Contenu Image/Texte Mobile */
    .content-section,
    .content-section.reverse {
        flex-direction: column; /* Image au-dessus texte */
        gap: 25px;
    }
    .content-image { margin-bottom: 15px; }
    .content-text li { padding-left: 22px; } /* Ajustement padding puce */
    .content-text li::before { top: 0; } /* Réalignement puce */

    /* Boutons Mobile */
    .cta-button { padding: 10px 20px; font-size: 0.95em;}
    .cta-button.large { padding: 12px 28px; font-size: 1em;}

    /* Footer Mobile */
    footer { padding: 25px 0; }

    /* Carte Mobile */
    .map-placeholder iframe {
        min-height: 300px; /* Carte moins haute */
    }
}
/* Responsivité du tableau contenant les images */
table.content-text {
    width: 100%;
    table-layout: fixed;
}

table.content-text td {
    width: 50%;
    padding: 10px;
    vertical-align: top;
}

/* Sur mobile : empiler les colonnes */
@media (max-width: 768px) {
    table.content-text,
    table.content-text tr,
    table.content-text td {
        display: block;
        width: 100%;
    }
}

/* Styles pour .contact-form ont été retirés car le formulaire n'existe plus */