*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --primary: #1d408a;
  --secondary: #bb0909;
  --light-color: #fffffe;
  --heading-color: #1b1d1d;
  --background: #ffffff;
  --background-alt: #f1f3f9;
  --foreground: #6a6a6a;
  --meta-color: #a6a3a3;
  --border-color: #e7e6e6;
  --vivid-cyan-blue: #0693e3;
  --pale-cyan-blue: #8ed1fc;
  --spacing-20: 0.44rem;
  --spacing-30: 0.67rem;
  --spacing-40: 1rem;
  --spacing-50: 1.5rem;
  --spacing-60: 2.25rem;
  --spacing-70: 3.38rem;
  --spacing-80: 5.06rem;
  --nav-height: 72px;
}
html {
  scroll-behavior: smooth;
}

/* ==================== HERO COVER ==================== */
.page-hero {
  min-height: 180px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  color: var(--light-color);
  line-height: 1.3;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ==================== PROFIL SECTION ==================== */
.profil-section {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px var(--spacing-40);
}
.profil-img {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 100px;
}
.profil-img img {
  width: 100%;
  border-radius: 12px;
}
.profil-text {
  flex: 1;
  min-width: 280px;
}
.profil-text h1 {
  color: var(--primary);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.profil-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--foreground);
  margin-bottom: 16px;
}

/* ==================== VISI MISI ==================== */
.visi-misi-section {
  background: var(--background-alt);
  padding: var(--spacing-80) var(--spacing-40);
}
.visi-misi-inner {
}
.visi-block {
  margin-bottom: 84px;
}
.visi-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}
.visi-text {
  color: var(--primary);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  max-width: 760px;
}
.misi-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
}
.misi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em var(--spacing-80);
}

.misi-num {
  color: var(--primary);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Mona Sans", sans-serif;
}
.misi-name {
  color: var(--primary);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  margin-bottom: 12px;
}
.misi-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.6;
}

/* ==================== KEPENGURUSAN ==================== */
.kepengurusan-section {
  padding: var(--spacing-80) var(--spacing-40);
}
.kepengurusan-section.alt {
  background: var(--background-alt);
}
.kepengurusan-title-main {
  text-align: center;
  font-size: clamp(28px, 3vw, 54px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 48px;
  line-height: 1.3;
}
.bidang-title {
  text-align: center;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 60px;
}
.pengurus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: center;
}
.pengurus-col {
  flex: 1;
  min-width: 180px;
  max-width: 400px;
}
.pengurus-col img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--background-alt);
}
.pengurus-col p {
  text-align: center;
}
.pengurus-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
  line-height: 1.4;
}
.pengurus-role {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  line-height: 1.4;
}
/* avatar placeholder when no photo */
.avatar-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #dde7f4, #c2d4ea);
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .profil-section {
    flex-direction: column;

    gap: 35px;

    padding: 60px 20px;
  }

  .profil-img {
    flex: unset;

    max-width: 100%;
  }

  .profil-text {
    text-align: center;
  }

  .profil-text h1 {
    font-size: 30px;
  }

  .profil-text p {
    font-size: 15px;
  }

  .visi-block {
    margin-bottom: 60px;
  }

  .misi-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .pengurus-grid {
    gap: 20px;
  }

  .pengurus-col {
    flex: 0 0 100%;

    max-width: 280px;
  }
}
