/* ===================== */
/* GLOBAL */
/* ===================== */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #222;
  background: linear-gradient(to bottom, #f5f7f6, #eef7f1);
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: inherit;
  margin-bottom: 10px;
}

p {
  line-height: 1.7;
  margin-bottom: 10px;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* ===================== */
/* HEADER */
/* ===================== */
.header-area {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 83, 45, 0.95);
}

/* container navbar */
.header-area .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}

/* LOGO */
.logo-text {
  display: flex;
  align-items: center;
}

.logo-text img {
  width: 40px;
}

.logo-text span {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin-left: 10px;
}

/* MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* LINK */
.menu-link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.menu-link:hover {
  color: #d1fae5;
}

/* BUTTON */
.nav-menu .btn {
  padding: 6px 14px;
  font-size: 13px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* ===================== */
/* HERO INDEX */
/* ===================== */
.main-banner {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(20,83,45,0.85)),
  url('../images/bg-pesantren.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.main-banner h2 {
  font-size: 32px;
  font-weight: 700;
}

.main-banner p {
  font-size: 15px;
  opacity: 0.9;
}

/* ===================== */
/* HERO SAMBUTAN */
/* ===================== */
.hero-sambutan {
  height: 35vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(20,83,45,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-sambutan h2 {
  font-weight: 700;
}

/* ===================== */
/* BUTTON */
/* ===================== */
.btn-success {
  background: #198754;
  border: none;
}

.btn-success:hover {
  background: #157347;
}

/* ===================== */
/* SECTION */
/* ===================== */
.section-padding {
  padding: 70px 15px;
}

/* ===================== */
/* STATISTIK */
/* ===================== */
.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  cursor: pointer;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(25,135,84,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #198754;
  font-size: 20px;
}

.stat-number {
  font-size: 26px;
  font-weight: 700;
  color: #198754;
}

.stat-title {
  font-size: 14px;
  font-weight: 600;
}

.stat-desc {
  font-size: 12px;
  color: #777;
}

/* ===================== */
/* SAMBUTAN INDEX */
/* ===================== */
.sambutan {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  text-align: center;
}

.sambutan img {
  max-width: 220px;
  margin: 0 auto 15px;
  border-radius: 15px;
}

/* ===================== */
/* SAMBUTAN PAGE */
/* ===================== */
.sambutan-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.sambutan-wrapper .foto-ketua {
  width: 150px;
  margin: 0 auto 15px;
  border-radius: 15px;
}

.jabatan {
  font-size: 13px;
  color: #777;
}

.isi-sambutan {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.ttd {
  margin-top: 30px;
  text-align: right;
}

/* ===================== */
/* FOOTER */
/* ===================== */
.footer {
  background: #14532d;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 12px;
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media(max-width:768px){

  .main-banner {
    height: 75vh;
  }

  .main-banner h2 {
    font-size: 24px;
  }

  .hero-sambutan {
    height: 25vh;
  }

  .stat-number {
    font-size: 22px;
  }

  .sambutan img {
    max-width: 180px;
  }

  .sambutan-wrapper .foto-ketua {
    width: 110px;
  }

  .isi-sambutan {
    font-size: 14px;
  }

  /* NAVBAR MOBILE */
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 65px;
    right: 10px;
    width: 220px;
    background: rgba(20,83,45,0.97);
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    margin: 10px 0;
  }

}