:root {
    --sage: #5f6d5d;     /* Version plus sombre et lisible du vert */
    --cream: #fdfaf5;
    --dark: #2a2c2a;     /* Un noir plus profond pour le texte principal */
    --white: #ffffff;
    --soft-border: #e2dcd5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: var(--dark);
    background-color: var(--white);
    font-size: 1.1rem;
}

.container { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }
.mt-80 { margin-top: 80px; }
.bg-soft { background-color: var(--cream); border-radius: 4px; }

/* Hero */
.hero { height: 70vh; background: url('images/toucher.webp') center/cover no-repeat; position: relative; }
.hero-overlay { background: rgba(0,0,0,0.3); height: 100%; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 300; }

/* Approche & Expertise */
.highlight { font-size: 1.5rem; color: var(--sage); margin-bottom: 30px; }
h2 { font-size: 2.2rem; margin-bottom: 40px; font-weight: 400; }
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.exp-item { border-left: 3px solid var(--sage); padding-left: 25px; }

/* Vidéo */
.video-box { background-color: var(--cream); padding: 80px 0; }
.video-container-fixed { 
    position: relative; width: 100%; max-width: 800px; aspect-ratio: 16/9; 
    background: #000; margin: 0 auto; border-radius: 8px; overflow: hidden; cursor: pointer;
}
.video-container-fixed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-thumb-overlay { 
    position: absolute; inset: 0; 
    background: url('https://img.youtube.com/vi/_K7Zv_cdl3o/maxresdefault.jpg') center/cover; 
    display: flex; align-items: center; justify-content: center; z-index: 2;
}
.play-button { background: var(--sage); color: white; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }

/* Avis */
.avis-section { padding: 40px 0; }

/* --- Section Temple & Carte (Corrigée) --- */
.map-section { text-align: center; }

.map-grid {
    display: block; /* Force l'empilement vertical demandé */
    max-width: 800px;
    margin: 0 auto;
}

.temple-photo-wrapper {
    margin: 30px auto;
    padding: 15px;
    background: var(--cream);
    border-radius: 12px;
}

.temple-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.map-frame {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--soft-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 25px 0;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Engagement & Tarifs --- */
.engagement-section { background-color: #f8f6f3; padding: 100px 0; }
.engagement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 840px; margin: 0 auto; }
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

.engagement-card, .tarif-card { 
    background: white; 
    padding: 40px 25px; 
    border: 1px solid var(--soft-border); 
    border-radius: 8px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}

.highlight-tarif { border: 2px solid var(--sage); background: var(--cream); position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.recommande { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--sage); color: white; padding: 4px 12px; font-size: 0.7rem; border-radius: 10px; }

.price { font-size: 2rem; color: var(--sage); font-weight: bold; }
.duration { font-style: italic; opacity: 0.7; margin-bottom: 15px; }
.btn-engagement {
    background: var(--sage);
    color: #ffffff !important;
    font-weight: 700; /* On force le gras pour améliorer la lisibilité */
    padding: 14px 28px;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
}
/* --- Responsive --- */
@media (max-width: 900px) {
    .engagement-grid, .tarifs-grid { grid-template-columns: 1fr; }
    .hero { height: 50vh; }
    .map-frame { height: 350px; }
}

.footer-simple { 
    padding: 40px; 
    text-align: center; 
    color: #555; /* On remplace opacity: 0.6 par un gris solide lisible */
    font-size: 0.9rem; 
    border-top: 1px solid var(--soft-border); 
}

/* Pour les descriptions sous les titres (Ligne 215 environ dans l'HTML/CSS) */
.small { 
    color: #4a4a4a; /* Au lieu d'un gris trop clair */
    font-size: 0.95rem; 
}