/* =========================
   index.css — logo calé sur le disque noir (radial)
   ========================= */

:root {
  /* Typo */
  --fs-base: clamp(16px, 0.9rem + 0.3vw, 18px);
  --fs-title: clamp(20px, 1.2rem + 1.2vw, 44px);

  /* Bouton play */
  --fs-play: clamp(48px, 7vw, 120px);

  /* Espacements */
  --space-1: clamp(8px, 1vh, 14px);
  --space-2: clamp(14px, 2vh, 26px);
  --space-3: clamp(18px, 3vh, 40px);

  /* Stage (zone centrale) */
  --stage-w: 1100px;

  /* 🧠 Ton disque noir s’arrête à 46% du rayon => ~92% du diamètre.
     On vise donc ~92vw, borné pour rester esthétique sur très grands écrans. */
  --logo-w: clamp(240px, 92vw, 980px);
}

html {
  font-size: var(--fs-base);
}

body {
  margin: 0;
}

/* Fond + centrage global */
.home-container1 {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-2);

  background-image: radial-gradient(
    circle at center,
    rgb(8, 8, 8) 46%,
    rgb(246, 151, 1) 50%,
    rgb(246, 101, 1) 60%,
    rgb(8, 8, 8) 100%
  );
}

/* Wrappers TeleportHQ */
.home-container2,
.home-container3 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Bloc central: centré + largeur max */
.home-container4 {
  width: min(100%, var(--stage-w));
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: var(--space-2);
}

/* Zone logo */
.home-container5 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ Logo "match" disque noir:
   - width: var(--logo-w) (≈92vw, clampé)
   - max-width: 100% pour ne jamais déborder du stage/écran
*/
.home-image {
  width: var(--logo-w);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Texte + bouton */
.home-container6 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: var(--space-1);
  text-align: center;

  color: #eeeeee;
}

.home-text {
  color: inherit;
  font-size: var(--fs-title);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.15;
}

.btn-play {
  color: #eeeeee;
  -webkit-text-fill-color: currentColor;

  background: transparent;
  border: none;

  padding: 0;
  margin: 0;
  cursor: pointer;

  font-size: var(--fs-play);
  line-height: 1;

  min-width: 44px;
  min-height: 44px;

  filter: none;
  opacity: 0.25;
}

.btn-play:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 6px;
}

/* Très petits écrans */
@media (max-width: 360px) {
  .home-container1 {
    padding: var(--space-2) var(--space-1);
  }
}
