/* =========================
   AIEI HERO (NO CONFLICT)
   Full-width banner background with overlay
   ========================= */

.aiei-hero{
  position: relative;

  width: 100%;                 /* keep 50% */
  min-height: 460px;          /* reasonable height */

  margin-left: auto;          /* 👈 center horizontally */
  margin-right: auto;         /* 👈 center horizontally */

  background-image: url("../../../web/images/background_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}




.aiei-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 60, 140, 0.65),
    rgba(0, 130, 210, 0.45)
  );
  z-index: 1;
}


.aiei-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.aiei-hero-logo{
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.aiei-hero-inner h1{
  font-size: 46px;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.aiei-hero-inner h2{
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px 0;
}

.aiei-hero-inner h1,
.aiei-hero-inner h2{
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.aiei-hero-info{
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.aiei-hero-inner h2{
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.aiei-hero-info{
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.aiei-hero-info{
  font-size: 20px;
  font-weight: 600;
  background: rgba(0,0,0,0.20);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
}
/* ===============================
   FORCE LARGE NAVBAR (ALL PAGES)
   Match Committees page size
   =============================== */

/* ======================================
   EXTRA LARGE NAVBAR (CLEARLY BIGGER)
   ====================================== */

.nav{
  height: 88px;
}

.nav .layui-nav{
  height: 88px;
  line-height: 88px;
}

.nav .layui-nav-item a{
  height: 88px;
  line-height: 88px;
  font-size: 20px;       /* BIGGER TEXT */
  font-weight: 600;
  padding: 0 26px;       /* MORE SPACE LEFT/RIGHT */
  letter-spacing: 0.3px;
}

/* Active menu alignment */
.nav .layui-this a{
  line-height: 88px;
}


/* Responsive */
@media (max-width: 768px){
  .aiei-hero{ min-height: 420px; }
  .aiei-hero-inner h1{ font-size: 32px; }
  .aiei-hero-inner h2{ font-size: 22px; }
  .aiei-hero-info{ font-size: 16px; }
  .aiei-hero-logo{ width: 64px; }
  .aiei-hero{background-position: center center;}
}
