/* ==========================================================
   Reset di base
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

/* ==========================================================
   Hero con video in background
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Overlay scuro semitrasparente per garantire leggibilità del testo */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* ==========================================================
   Contenuto centrale
   ========================================================== */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.title-whey {
  color: #00ff00;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.title-point {
  color: #000000;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    0 4px 25px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #f0f0f0;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-info {
  margin-top: 2rem;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: #d9d9d9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
