/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 944px;
  overflow: hidden;
  background-color: #000000;
}

.hero-background {
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 960px;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(30, 30, 30, 0.55) 55%,
    rgba(30, 30, 30, 0) 33%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 300px;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
}

.hero-inner {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-title {
  font-size: 62px;
  line-height: 70px;
  color: #ffffff;
  max-width: 540px;
}

.hero-description {
  font-size: 16px;
  line-height: 34px;
  color: #bababa;
  max-width: 650px;
}

.hero-button {
  display: inline-block;
  padding: 24px;
  background: linear-gradient(to right, #505050, #202020);
  border: 1px solid #ffffff;
  border-radius: 14px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: fit-content;
}

.hero-button:hover {
  opacity: 0.8;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    height: 600px;
  }

  .hero-content {
    padding-top: 150px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 24px;
  }
}
