/* ============================================================
   Alexandria — Feuille de style partagée
   Importée par : index.html, why.html, project.html,
                  inspirations.html, association.html
   ============================================================ */

/* ---------- Google Fonts ---------- */
/* Chargées via <link> dans chaque HTML ; déclarées ici pour référence.
   Newsreader  → font-headline / font-display
   Manrope     → font-body / font-label
   Material Symbols Outlined → icônes */

/* ---------- Material Symbols ---------- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---------- Layout utilitaires ---------- */
.nav-height  { height: 80px; }
.hero-height { height: 600px; }

/* ---------- Typographie (classes custom) ---------- */

/* Titres display — utilisés dans project.html et why.html */
.text-h1,
.hero-title {
    font-family: 'Newsreader', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-h2,
.section-title {
    font-family: 'Newsreader', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.text-h3,
.card-title {
    font-family: 'Newsreader', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

/* Corps de texte */
.text-body-lg,
.text-hero-sub,
.body-text {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-subtext {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

/* ---------- Gradients ---------- */
.text-gradient {
    background: linear-gradient(135deg, #002045 0%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #002045 0%, #1a365d 100%);
}

/* ---------- Effets visuels ---------- */
.glass-panel {
    background: rgba(227, 226, 225, 0.7);
    backdrop-filter: blur(20px);
}
