.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 4rem 3rem;
  margin-bottom: 2rem;
}

/* Gradient overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.4) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInHero 1s ease-out;
}

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

.hero__badge {
  display: inline-block;
  background-color: var(--rts-accent);
  color: var(--color-white);
  padding: 0.2rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero__title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 1rem 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__actions {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--primary {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn--primary:hover {
  background-color: var(--color-gray-light);
  transform: scale(1.05);
}

.btn--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding: 0 1.5rem 2rem 1.5rem;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__description {
    font-size: 0.95rem;
  }
  .hero::after {
    background: linear-gradient(0deg, rgba(11, 11, 11, 1) 0%, rgba(11, 11, 11, 0.6) 60%, transparent 100%);
  }
}
