/* HERO */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      to right,
      rgba(0, 163, 211, 0.82) 35%,
      rgba(0, 163, 211, 0.55) 60%,
      rgba(0, 163, 211, 0.15) 100%
    ),
    url("../../images/hero.webp") center / cover no-repeat;
}

.hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 72px 52px 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.8s ease both;
  max-width: 1920px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #00a3d3;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 14px 30px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition:
    border-color 0.2s,
    background 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 457px) {
  .hero-content {
    text-align: center;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
