/* =====================================================
   HERO – FULL SCREEN, CLEAN & BALANCED
   ===================================================== */

.hero{
  position: relative;

  background-image: url("../images/muhero1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 100vh;

  padding: 140px 20px 120px;
  text-align: center;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero > *{
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero h1{
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 800;
}

.hero p{
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 34px;
}

/* Hero buttons */
.hero-actions{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   SEARCH – INTENTIONAL, NOT FLOATING
   ===================================================== */

.search-section{
  margin-top: -70px;
  padding-bottom: 80px;
}

.search-box{
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.search-box input{
  flex: 1;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-filters{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill{
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill:hover{
  background: #f3f4f6;
}

.pill.active{
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* =====================================================
   SECTIONS BELOW
   ===================================================== */

section.container{
  margin-top: 70px;
}

section h2{
  margin-bottom: 24px;
  font-size: 28px;
}

/* Cards */
section .card{
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  padding: 32px 20px;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px){
  .hero{
    padding: 100px 16px 90px;
  }

  .hero h1{
    font-size: 34px;
  }

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

  .search-section{
    margin-top: -50px;
  }
}
