/* CLINIC_M/1/static/css/base.css */

/* --- 1. VARIABLES & RESET --- */
:root {
    --primary: #0056b3;
    --primary-trans: rgba(0, 86, 179, 0.85);
    --accent-blue: #66b3ff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f4f9fc;
    --section-spacing: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.3; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; transition: all 0.3s ease; }

/* Correction spécifique Logo (global) */
.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* --- UTILITAIRES GLOBAUX --- */
.section-spacing { padding: var(--section-spacing) 0; }
.light-bg { background-color: var(--light-bg); }

.text-center-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- ANIMATIONS GLOBALES (Nécessaire pour le JS) --- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}