
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  /* background-image: url(/assets/images/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: -300px; */
 
 
}
.hero-image{
  background-image: url(/assets/images/bg-car.png);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: center;
  
}


.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; 
}

.hero-heading {
  font-family: 'Fugaz One', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #333;
  text-transform: uppercase;
  animation: fadeInUp 1.5s ease-out;
}

.hero-heading span {
  color: #007bff; 
}

.hero-image {
  max-width: 100%;
  height: auto;
  animation: fadeIn 2s ease-out;
}

@media (min-width: 768px) {

  .hero-image{
    background-image: url(/assets/images/bg-car.png);
    background-size: 500px;
    background-repeat: no-repeat;
  
   background-size: 600px;
    
  }
  .hero{
    background-image: url(/assets/images/map.png);
    background-repeat: no-repeat;
    background-position: left;
  }
  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-heading {
    font-size: 5rem;
    max-width: 70%;
    font-weight: 900;
  }

  .hero-image {
    max-width: 40%;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
