/* SECTION HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 58vh;
  display: grid;
  place-items: center;
  background: #0b132b;
  padding-bottom: 40px; /* Ajout pour éviter le chevauchement */
}

/* IMAGE DE FOND */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/1.jpg") center/cover no-repeat;
  filter: saturate(105%) contrast(105%);
  opacity: .4;
}

/* EFFETS DE LUMIÈRE */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 320px at 75% 20%, rgba(56,189,248,0.30) 0%, transparent 60%),
    radial-gradient(900px 380px at 20% 80%, rgba(245,158,11,0.25) 0%, transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,0.65), rgba(2,6,23,0.85) 55%, rgba(2,6,23,0.95));
  mix-blend-mode: screen;
}

/* CONTENU INTERNE */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
}

/* LOGO ROND */
.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(148,163,184,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  background: #0b132b;
}

/* TITRE + TEXTE */
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4.5vw, 48px);
  margin: 0 0 8px;
  letter-spacing: .4px;
}

.hero-content p {
  margin: 0 0 18px;
  color: #cbd5e1;
  max-width: 72ch;
}

/* BADGES */
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b132b;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 8px 24px rgba(226,232,240,0.22);
  text-decoration: none;        /* ← permet d'utiliser <a> */
  cursor: pointer;              /* ← indique que c'est cliquable */
  transition: transform .2s ease, box-shadow .25s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(226,232,240,0.32);
}

/* RESPONSIVE */
@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo {
    margin: 0 auto;
  }
}
