.hero{
  position: relative;
  width: 100%;
  height: 90vh; /* esempio */
  overflow: hidden;
}

.bg-video{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centratura perfetta */
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover; /* IMPORTANT: fa il crop per riempire */
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  text-align: center;
  z-index: 1;
  padding: 1rem 2rem;
}

/* Responsive */
@media (max-width: 600px) {
  .caption {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
}

.parallax {
   position: relative;

   background-attachment: fixed;          /* effetto parallax */
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   min-height: 80vh;
 }

 /* Overlay per migliorare leggibilità */
 .parallax::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4); /* scurisce leggermente l’immagine */
   z-index: 1;
 }

 .parallax .container {
   position: relative;
   z-index: 2; /* sopra ::before */
 }

 .steak {

     background-image: url('../images/Taglio-bistecca.JPG');

 }

 .wine {

     background-image: url('../images/Vino-Solaia.JPG');

 }