.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* overlay întunecat */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  margin-bottom: 30px;
  line-height: 1.2;
  color:  #ff6600;

}


.hero p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .hero {
    height: 8 5vh;
    padding: 0 15px;
    text-align: center;
  }

  .hero-content {
    padding: 20px 10px;
  } 

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}

