.hero-section {
  height: 100vh;
  background: linear-gradient(to bottom, #0d0d0d2b, #1c1c1c), 
    url('/assets/images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}


.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 20px;
 
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-btn {
  padding: 12px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.primary-btn {
  background-color: #ffcc00;
  color: #000;
}

.secondary-btn {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.hero-btn:hover {
  transform: translateY(-5px);
  background-color: #e6b800;
  color: #fff;
}

.hero-visual {
  flex: 1;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 3rem;
    margin-top: 250px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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