.hero-section {
  position: relative; 
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
padding-top: 80px;
  background: linear-gradient(to bottom, rgba(148, 148, 148, 0.176), rgb(0, 0, 0)),
    url('/assets/images/hero-bg.webp') center/cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh; 
  background: linear-gradient(to top, rgba(9, 9, 9, 0.509), rgba(255, 255, 255, 0.031)); 
  pointer-events: none; 
}

.hero-wrapper {
  display: flex;
  align-items: stretch; 
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 800px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: hsl(0, 43%, 99%);
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #c5c3c3;
}

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

.hero-btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #007bff;
  color: #fff;
}

.primary-btn:hover {
  background-color: #0056b3;
}

.secondary-btn {
  background-color: #ddd;
  color: #333;
}

.secondary-btn:hover {
  background-color: #bbb;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: flex-end; 
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: auto;
  height: 100%; 
  object-fit: cover;
  border-radius: 8px;

}

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

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

  .hero-visual {
    height: auto;
  }

  .hero-image {
    width: 90%;
    height: auto;
    padding-top: 0px;
  }
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f6f6f6;
    font-weight: bold;
  }
}
