.hero-wrapper {
  background-color: var(--color-navy);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 40px 160px;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.05;
  color: var(--color-white);
}

.hero-subtitle {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-white);
}

.hero .btn-primary {
  margin-top: 16px;
  align-self: flex-start;
}

@media (max-width: 1200px) {
  .hero {
    padding: 60px 40px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 1023px) {
  .hero-wrapper {
    position: relative;
  }

  .hero-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 58, 0.65);
    pointer-events: none;
  }

  .hero-wrapper .hero {
    position: relative;
    z-index: 1;
  }

  .hero-content {
    width: 100%;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px;
    padding: 24px 24px 60px 24px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .hero .btn-primary {
    font-size: 14px;
    padding: 12px 12px 12px 32px;
    gap: 16px;
    align-self: center;
  }
}
