/* ==========================================================================
   HERO SECTION (DESKTOP)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 30px 40px;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 900px;
}

.hero-overlay h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   HERO RESPONSIVE (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: unset;
    padding: 0;
    background: #111111;
  }

  .hero img {
    position: relative;
    inset: unset;
    width: 100%;
    height: 250px;
  }

  .hero-overlay {
    width: 100%;
    padding: 30px 20px;
    background: #1a1a1a;
    border-radius: 0;
    border: none;
    box-shadow: none;
    max-width: 100%;
  }

  .hero-overlay h1 {
    font-size: 32px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .hero-overlay h3 {
    font-size: 18px;
    color: #eeeeee;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .hero-overlay p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
  }

  .hero .nav-cta {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
  }
}