/* ============================================================
   SAINTÉ OF COURSE — accueil.css
   Styles spécifiques à la page d'accueil (index.html).
   Les couleurs utilisent les variables définies par style.js.
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  padding: calc(60px + 4rem) 2rem 4rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1a0008 0%, var(--soc-noir) 50%, #1a0008 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200,16,46,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-emoji {
  font-size: 5rem; margin-bottom: 1.25rem;
  animation: float 4s ease-in-out infinite;
}
.hero-logo-img {
  width: 130px; height: 130px; object-fit: contain;
  margin: 0 auto 1.25rem; display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0);     }
  50%       { transform: translateY(-10px); }
}

.hero-tag {
  font-size: .75rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--soc-rouge);
  border: 1px solid rgba(200,16,46,.4);
  padding: .35rem 1rem; border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--soc-font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: .9; letter-spacing: .02em;
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--soc-rouge); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--soc-texte-muted);
  max-width: 560px; line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ── PADDING TOP (compense la nav fixe) ───────────────────── */
#section-infos  { padding-top: calc(60px + 3rem); }
