/* Hero Container */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slideshow */
.hero-slides {
  display: flex;
  height: 100%;
  width: 400%; /* For 4 images */
  animation: slide 12s infinite; /* Adjusted time for 4 images */
}

.hero-slide {
  width: 25%; /* Each slide takes 25% of the width for 4 images */
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Slideshow Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Hero Text and Search Form */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Form Style */
form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

form input,
form button {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
}

form button {
  background-color: #3498db;
  color: white;
  cursor: pointer;
}

form button:hover {
  background-color: #2980b9;
}
