/* ============================================================
   MAIN.CSS – Adé Education
   Reset + base globale + polices
   ============================================================ */

/* ---- Police Kidmania (locale) ---- */
@font-face {
    font-family: 'Kidmania';
    src: url('/assets/fonts/Kidmania_Trial_Regular.woff2') format('woff2'),
    url('/assets/fonts/Kidmania_Trial_Regular.otf')  format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kidmania';
    src: url('/assets/fonts/Kidmania_Trial_Bold.woff2') format('woff2'),
    url('/assets/fonts/Kidmania_Trial_Bold.otf')  format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---- Police Instine Sans (locale) ---- */
@font-face {
    font-family: 'Instine Sans';
    src: url('/assets/fonts/Instine_Sans.woff2') format('woff2'),
    url('/assets/fonts/Instine_Sans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f0f0f0;
    background-color: #111820;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--nav-height, 88px);
}

p {
    font-family: 'Instine Sans', sans-serif;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}



/* ---- Pages fond clair ---- */
body.page-light {
    background-color: #f0f6f8;
    color: #3a4a5a;
    padding-top: var(--nav-height, 88px);
}

body.page-light .footer {
    border-top-color: rgba(26, 46, 74, 0.10);
}

body.page-light .footer__copy {
    color: rgba(26, 46, 74, 0.40);
}
