/* Harmonisation typographique globale.
   Reference: /formations/ et /design-system/.
   Charge apres les feuilles de page pour neutraliser les titres trop grands
   herites des maquettes HTML initiales. */

html[data-theme] body[data-screen-label] {
  --ds-section-title: clamp(30px, 3.1vw, 42px);
  --ds-intro-title: var(--ds-section-title);
  --ds-cta-title: clamp(34px, 3.8vw, 48px);
  --ds-hero-title: clamp(42px, 5vw, 64px);
  --ds-body-lg: 18px;
}

/* Heros de pages internes : noir/blanc + vert menthe AcadéNice comme base. */
html[data-theme] body[data-screen-label] :is(
  .sub-hero__title,
  .fhero__title,
  .metier-hero h1,
  .public-sitemap h1
) {
  color: var(--text-primary);
  font-size: var(--ds-hero-title);
  line-height: .98;
  letter-spacing: 0;
}

html[data-theme] body[data-screen-label] :is(
  .sub-hero__title em,
  .sub-hero__title span,
  .fhero__title em,
  .fhero__title span,
  .public-sitemap h1 span
) {
  color: var(--teal);
}

/* Titres d'introduction visuelle : presents sur les pages ecole/alternance. */
html[data-theme] body[data-screen-label] :is(
  .ap-intro__title,
  .alt-intro__title,
  .rec-intro__title,
  .om-intro__manifesto h2,
  .xp-intro__title,
  .loc-intro__title
) {
  font-size: var(--ds-intro-title) !important;
  line-height: 1.02;
  letter-spacing: 0 !important;
}

/* Titres de sections courantes : alignes sur la page formations. */
html[data-theme] body[data-screen-label] :is(
  .section-head__title,
  .fsection__title,
  .metier-section h2,
  .metier-guidance__content h2,
  .public-sitemap__section-head h2,
  .faq-section h2,
  .jobs-section h2,
  .team-section h2,
  .t-section h2
) {
  font-size: var(--ds-section-title);
  line-height: 1.08;
  letter-spacing: 0;
}

/* Grandes bannieres / CTA : gardent l'impact, mais restent sous controle. */
html[data-theme] body[data-screen-label] :is(
  .final-cta__title,
  .summary__title,
  .adv__title,
  .profiles__title,
  .nice-banner__title,
  .review-cta__title,
  .footer-cta__title,
  .faq-cta__title,
  .cta-banner__title,
  .metier-final-cta h2
) {
  font-size: var(--ds-cta-title);
  line-height: 1.02;
  letter-spacing: 0;
}

/* Couleur d'accent principale : le vert menthe reste prioritaire sur les pages ecole. */
html[data-theme] body[data-screen-label] :is(
  .ap-intro__title em,
  .alt-intro__title em,
  .rec-intro__title em,
  .om-intro__manifesto h2 em,
  .xp-intro__title em,
  .loc-intro__title em,
  .section-head__eyebrow,
  .fsection__eyebrow,
  .metier-eyebrow
) {
  color: var(--teal);
}

/* Les mots orange restent reserves aux CTA ou a un mot-cle tres ponctuel. */
html[data-theme] body[data-screen-label] :is(
  .final-cta__title em,
  .summary__title em,
  .adv__title em,
  .profiles__title em,
  .nice-banner__title em,
  .review-cta__title em,
  .footer-cta__title em,
  .faq-cta__title em,
  .cta-banner__title em
) {
  color: var(--amber);
}

@media (max-width: 700px) {
  html[data-theme] body[data-screen-label] {
    --ds-section-title: clamp(28px, 8vw, 36px);
    --ds-intro-title: clamp(32px, 9vw, 42px);
    --ds-cta-title: clamp(32px, 9vw, 44px);
    --ds-hero-title: clamp(38px, 11vw, 52px);
  }
}
