/* SCHOOL/Victoria/static/css/base.css */

/* --- VARIABLES & RESET --- */
:root {
    --primary: #003366;
    --primary-light: #004d99;
    --accent: #D4AF37;
    --accent-hover: #b5952f;
    --text-dark: #2c3e50;
    --text-gray: #555555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* --- LA CORRECTION "NUCLÉAIRE" --- */
/* On force la taille de base avec !important pour écraser tout réglage navigateur */
html {
    font-size: 16px !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px !important; /* C'est cette ligne qui sauve la mise */
}

/* --- TYPOGRAPHIE --- */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- UI ELEMENTS GLOBAUX --- */
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* --- BOUTONS --- */
.btn-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    display: inline-block;
}

.btn-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
}

.btn-primary:hover, .btn-outline:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--primary);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* --- SÉCURITÉ RESPONSIVE --- */
html, body {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}