/**
 * Logo MAGE — typo Alata (comme agencemage.fr / header Wix).
 * Ne pas utiliser assets/images/MAGE_Logo-30.png : c’est l’avatar par défaut, pas le wordmark.
 */
@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");

:root {
  /* Wordmark sur fond blanc / clair (charte Wix) */
  --mage-logo-on-light: #bfe9dd;
  --mage-font-brand: "Alata", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mage-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

/* Wordmark principal (fonds clairs : header blanc, footer, connexion) */
.mage-brand-wordmark {
  display: inline-block;
  font-family: var(--mage-font-brand);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mage-logo-on-light);
}

.mage-brand-wordmark--light {
  color: #ffffff;
}

/* Image optionnelle (ex. variante Wix mint) — désactivée par défaut */
.mage-brand-img {
  display: none;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.mage-brand-link--image .mage-brand-img {
  display: block;
}

.mage-brand-link--image .mage-brand-wordmark {
  display: none;
}

.mage-brand-img--on-dark {
  height: 36px;
  filter: none;
}
