/* --- CONFIGURATION GLOBALE & VARIABLES (Ambiance Kundalini Sable/Caramel) --- */
:root {
    --bg-color: #FAFAFA;       
    --bg-card: #FFFFFF;        
    --text-main: #2B2B2B;      /* Gris anthracite très foncé : parfait pour lire sur fond clair */
    --text-muted: #777777;     
    --accent: #C39B73;         /* Un beige/caramel chaud et terreux (fini le vert !) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing: 100px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    font-weight: 300;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- TYPOGRAPHIE --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; letter-spacing: 1px; }
h1 { font-size: 3.5rem; margin-bottom: 20px; color: #fff;}
h2 { font-size: 2.5rem; margin-bottom: 30px; color: var(--text-main); }
h3 { font-size: 1.5rem; margin-bottom: 15px; }

.subtitle {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 500;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 5%; position: fixed; top: 0; width: 100%;
    z-index: 100; background: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* La couleur du texte du menu change quand le fond devient clair */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 5%;
}
.navbar.scrolled .logo .name, .navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.logo a { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.logo .name { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; text-transform: uppercase; transition: 0.3s;}
.logo .tagline { font-family: var(--font-body); font-size: 0.65rem; font-weight: 400; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; }

.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #fff; font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* --- HEADER / HERO --- */
.page-header {
    height: 60vh; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; position: relative;
    margin-bottom: var(--spacing);
}
.page-header::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.2); /* Moins sombre que pour la photo */
}
.header-content { position: relative; z-index: 2; text-align: center; max-width: 700px; }

.hero-name { font-family: var(--font-heading); font-size: 4.5rem; letter-spacing: 5px; margin: 10px 0; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero-desc { font-size: 1.1rem; letter-spacing: 4px; color: #fff; margin-bottom: 40px; text-transform: uppercase; }
.internal-title { font-size: 3.5rem; letter-spacing: 5px; color: #fff; }
.internal-title::after { content: ''; display: block; width: 60px; height: 2px; background-color: var(--accent); margin: 20px auto 0 auto; }

/* --- SECTIONS EN ZIGZAG --- */
.split-section { display: flex; align-items: center; justify-content: space-between; padding: 0 10%; margin-bottom: var(--spacing); gap: 80px; }
.split-section.reverse { flex-direction: row-reverse; }
.split-text { flex: 1; }
.split-img { flex: 1; position: relative; }
.split-img img { border-radius: 8px; box-shadow: -20px -20px 0px #F0F4EF; } /* Ombre décalée pastel */

/* --- BOUTONS --- */
.btn-line { display: inline-block; margin-top: 20px; padding-bottom: 5px; border-bottom: 2px solid var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-main); font-weight: 500;}
.btn-line:hover { color: var(--accent); }

.btn-solid { background: var(--accent); color: white; padding: 15px 40px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; display: inline-block; margin-top: 20px; border-radius: 30px; border: none; font-weight: 500;}
.btn-solid:hover { background: #8fa685; color: white;}

/* --- PRESTATIONS / TARIFS --- */
.pricing-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.price-card { background: var(--bg-card); padding: 50px 30px; width: 350px; text-align: center; border: 1px solid #eaeaea; border-radius: 8px; transition: 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.02);}
.price-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.price { font-size: 2.5rem; font-family: var(--font-heading); color: var(--accent); margin: 20px 0; }
.price-card ul { margin-bottom: 30px; text-align: left; padding-left: 20px; }
.price-card li { margin-bottom: 10px; color: var(--text-muted); position: relative; list-style: none;}
.price-card li::before { content: '✓'; color: var(--accent); position: absolute; left: -20px; }

/* --- FOOTER --- */
footer { border-top: 1px solid #eaeaea; text-align: center; padding: 50px 0; margin-top: var(--spacing); color: var(--text-muted); font-size: 0.8rem; background-color: var(--bg-card);}

/* RESPONSIVE */
@media (max-width: 768px) {
    .split-section, .split-section.reverse { flex-direction: column; gap: 40px; padding: 0 5%; }
    .hero-name { font-size: 2.5rem; }
    .nav-links { display: none; /* A remplacer par un menu burger plus tard */ }
}

/* --- CARTES DE CONTACT --- */
.contact-info-blocks {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: var(--bg-card);
    padding: 40px 20px;
    width: 280px; /* Cartes élargies pour l'email */
    text-align: center;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px); /* Petit effet de lévitation */
    border-color: var(--accent);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.contact-card p a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: var(--accent);
}

/* --- TABLEAU DES TARIFS --- */
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    font-family: var(--font-body);
}

.tarifs-table th, .tarifs-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #eaeaea;
}

.tarifs-table th {
    background-color: var(--text-main);
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* La case vide en haut à gauche */
.tarifs-table th.empty-cell {
    background-color: transparent;
    border-top: none;
    border-left: none;
}

/* La colonne de gauche avec le nom des formules */
.tarifs-table td.row-title {
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
}

/* Les prix */
.tarifs-table td {
    color: var(--text-muted);
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Effet de survol (hover) sur les lignes du tableau */
.tarifs-table tbody tr:hover td {
    background-color: #fcfcfc;
    color: var(--accent);
}
.tarifs-table tbody tr:hover td.row-title {
    color: var(--text-main);
}