/* =============================================================================
   STELLA TYPOGRAPHY
   Hiérarchie h1–h6 · Classes opt-in · Liens · Corps
   ============================================================================= */

/* --- Titres globaux (Barlow Condensed par défaut) --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--stella-font-title);
  font-weight: 700;
  line-height: 1.15;
  color: var(--stella-basilic);
  margin: 0 0 0.5em;
  letter-spacing: 0.03em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem,   4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* --- Corps de texte --- */
p {
  margin: 0 0 1.25rem;
  /*max-width: 68ch;*/
}

/* --- Liens --- */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--stella-spritz);
}

/* --- Classe opt-in : titres serif élégants (DM Serif Display italic) --- */
/* Annule l'uppercase global — toujours minuscule, toujours italic               */
.stella-serif {
  font-family: var(--stella-font-serif);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* --- Classe opt-in : accent script (Pacifico) --- */
/* Un mot, une décoration — jamais un titre entier                                */
.stella-pacifico,
.accent-pacifico {
  font-family: var(--stella-font-script);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.6px currentColor;
}

/* Variante colorée Spritz */
.accent-pacifico {
  font-size: 1.15em;
  color: var(--stella-spritz);
}

/* --- Label / surtitre --- */
.stella-label {
  font-family: var(--stella-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stella-spritz);
}

/* --- Titre Hero --- */
.hero-titre .et_pb_text_inner h1,
.hero-titre .et_pb_text_inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  /* clamp : mobile → fluide → desktop */
  font-size: clamp(40px, 5vw, 70px) !important;
  color: #FFF3DE !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Sous-titre Hero --- */
.hero-sous-titre .et_pb_text_inner p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
  color: #FFF3DE;
  opacity: 0.85;
  text-align: center;
}

/* --- Utilitaires couleur --- */
.text-basilic    { color: var(--stella-basilic)    !important; }
.text-creme      { color: var(--stella-creme)      !important; }
.text-spritz     { color: var(--stella-spritz)     !important; }
.text-terrecuite { color: var(--stella-terrecuite) !important; }

/* --- Utilitaires alignement / casse --- */
.text-center    { text-align: center; }
.text-left      { text-align: left; }
.text-right     { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-normal    { text-transform: none; }