/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)),
              url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  animation: fadeIn 0.8s ease-in-out;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 25px;
  border-radius: var(--radius);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  animation: fadeIn 1s ease-in-out;
}

.hero-content h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 18px;
  color: #f8fafc;
  line-height: 1.6;
  margin-bottom: 25px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


.hero .btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.hero .btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 15px;
  }

  .hero-content {
    padding: 20px 15px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }
}
