/* ==========================================================================
   SLIDER HOME — HEADER, TESTI, BADGE SPORT E TESTO IMPATTO DESTRA
   ========================================================================== */

/* Header sovrapposto allo slider (brand name + subtitle) */
.slider-header {
  z-index: 20;
  pointer-events: none;
}

.slider-header .brand-title {
  color: var(--fs-lime);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: -1px;
}

.slider-header .brand-subtitle {
  color: var(--fs-navy);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

/* LIVELLO 10 — Badge con nome dello sport (centrato sotto i modelli) */
.sport-badge {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--fs-radius-pill);
  padding: 10px 40px;
  color: var(--fs-navy);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* Blocco testo impatto a destra dello slider */
.hero-right-text {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-family: var(--fs-font-main);
  pointer-events: none;
}

/* Testo outline rosso */
.hero-right-text .txt-stroke {
  font-size: 4.8rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--fs-red-stroke);
  line-height: 0.85;
  letter-spacing: -1px;
}

/* Testo pieno scuro */
.hero-right-text .txt-main {
  font-size: 4.8rem;
  font-weight: 900;
  color: var(--fs-dark-text);
  line-height: 0.85;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

/* Etichetta inclinata su sfondo lime */
.hero-right-text .txt-sub {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--fs-white);
  background-color: var(--fs-lime);
  text-transform: uppercase;
  display: inline-block;
  align-self: flex-end;
  padding: 6px 16px;
  margin: 5px 0 0 0;
  transform: skewX(-12deg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Responsive slider: breakpoint 1400px */
@media (max-width: 1400px) {
  .hero-right-text .txt-stroke,
  .hero-right-text .txt-main { font-size: 3.8rem; }
  .sport-badge { font-size: 2.8rem; }
}

/* Responsive slider: breakpoint 1199px */
@media (max-width: 1199px) {
  .hero-right-text .txt-stroke,
  .hero-right-text .txt-main { font-size: 3rem; }
  .hero-right-text .txt-sub { font-size: 0.8rem; }
}

/* Responsive slider: breakpoint mobile 991px */
@media (max-width: 991px) {
  .hero-item { height: 65vh; padding-top: 130px; }
  .slider-header .brand-title { font-size: 1.5rem; }
  .slider-header .brand-subtitle { font-size: 0.75rem; letter-spacing: 1px; }
  .hero-bg-text { font-size: 18vw; top: 40%; }
  .hero-img { height: 70%; }
  .sport-badge { font-size: 2.5rem; bottom: 8%; }
  /* Il blocco testo destra è nascosto su mobile */
  .hero-right-text { display: none !important; }
}
