/* ═══════════════════════════════════════════════════════
   HIT — Our Leadership Page  |  Premium Redesign CSS
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --maroon:       #70181f;
  --maroon-dark:  #4a0f14;
  --maroon-light: #f9eded;
  --green:        #427d3a;
  --green-dark:   #2e5829;
  --green-light:  #eef5ed;
  --black:        #111111;
  --gray-800:     #2a2a2a;
  --gray-600:     #555;
  --gray-400:     #999;
  --gray-200:     #e8e8e8;
  --gray-100:     #f5f5f5;
  --white:        #ffffff;
  --shadow-sm:    0 2px 14px rgba(0,0,0,.07);
  --shadow-md:    0 8px 36px rgba(0,0,0,.10);
  --shadow-lg:    0 24px 64px rgba(0,0,0,.14);
  --radius:       20px;
  --radius-sm:    12px;
}

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-600);
  background: #fafafa;
  overflow-x: hidden;
}

/* ── HERO ───────────────────────────────────────────── */
.lhero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Hero Section */
.leadership-hero {
    background: linear-gradient(rgb(112 24 31 / 34%), rgb(112 24 31 / 68%)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
    /* padding: 120px 0 100px; */
    position: relative;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}
.lhero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(112,24,31,.90) 0%, rgba(66,125,58,.80) 100%),
    url('../assets/image/bg.webp') center/cover no-repeat;
}

.lhero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.lhero__orb--1 {
  width: 520px; height: 520px;
  background: rgba(255,255,255,.15);
  top: -140px; right: -100px;
  animation: orbFloat 11s ease-in-out infinite;
}
.lhero__orb--2 {
  width: 320px; height: 320px;
  background: rgba(255,210,80,.18);
  bottom: -90px; left: 4%;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.04); }
}

.lhero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 90px 24px;
}

.lhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 9px 28px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lhero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
}
.lhero__title em {
  font-style: italic;
  color: #ffd97d;
}

.lhero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
  opacity: .88;
  line-height: 1.75;
}

/* ── MESSAGE SECTIONS ───────────────────────────────── */
.msg-section        { padding: 88px 0; background: var(--white); }
.msg-section--alt   { background: var(--gray-100); }

.msg-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.msg-label {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.msg-label--maroon { background: var(--maroon); color: var(--white); }
.msg-label--green  { background: var(--green);  color: var(--white); }

.msg-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}
.msg-inner--rev {
  grid-template-columns: 1fr 320px;
}
.msg-inner--rev .msg-body    { order: 1; }
.msg-inner--rev .msg-portrait{ order: 2; }

/* Portrait */
.msg-portrait {
  position: sticky;
  top: 100px;
}
.msg-portrait__frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.msg-portrait__frame--maroon { box-shadow: 0 20px 60px rgba(112,24,31,.22); }
.msg-portrait__frame--green  { box-shadow: 0 20px 60px rgba(66,125,58,.22); }

.msg-portrait__frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.msg-id {
  margin-top: 20px;
  text-align: center;
  padding: 16px 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.msg-id strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.msg-id span {
  font-size: .85rem;
  color: var(--gray-400);
}

/* Body */
.msg-body__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.18;
  margin-bottom: 8px;
}
.msg-body__role {
  font-size: .98rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.msg-body__rule {
  height: 4px;
  width: 56px;
  border-radius: 4px;
  margin-bottom: 30px;
}
.msg-body__rule--maroon { background: var(--maroon); }
.msg-body__rule--green  { background: var(--green); }

.msg-body p {
  font-size: .97rem;
  line-height: 1.92;
  color: var(--gray-600);
  margin-bottom: 18px;
  text-align: justify;
}

.msg-body__sig {
  margin-top: 40px;
  padding-top: 22px;
}
.sig-rule {
  width: 72px;
  height: 2px;
  background: var(--gray-200);
  margin-bottom: 14px;
  border-radius: 2px;
}
.msg-body__sig strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.msg-body__sig em {
  font-style: normal;
  font-size: .86rem;
  color: var(--gray-400);
}

/* ── ADMIN OFFICERS CARD GRID ───────────────────────── */
.ao-section {
  padding: 88px 0;
  background: var(--maroon-light);
}

.ao-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.ao-section-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
}
.ao-section-num {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--maroon);
  opacity: .18;
  min-width: 96px;
}
.ao-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 6px;
}
.ao-section-sub {
  font-size: .9rem;
  color: var(--gray-400);
}

/* Grid */
.ao-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* Card */
.ao-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.ao-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.ao-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #edd0d0, #c8a0a3);
}
.ao-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .55s ease;
}
.ao-card:hover .ao-card__img img {
  transform: scale(1.08);
}

.ao-card__body {
  padding: 22px 18px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--maroon);
}
.ao-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 6px;
}
.ao-card__role {
  font-size: .82rem;
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.45;
  flex: 1;
  margin-bottom: 16px;
}
.ao-card__num {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  color: var(--white);
  background: var(--maroon);
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

/* ── LIBRARY TABLE SECTION ──────────────────────────── */
.ts { padding: 88px 0; }
.ts--green { background: var(--green-light); }

.ts__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.ts__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.ts__num {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--green);
  opacity: .18;
  min-width: 96px;
}
.ts__headtext h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 6px;
}
.ts__headtext p {
  font-size: .9rem;
  color: var(--gray-400);
}

.ts__scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Table */
.hit-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .92rem;
  min-width: 640px;
}
.ts--green .hit-table thead tr { background: var(--green-dark); }
.hit-table thead tr { background: var(--maroon); }

.hit-table thead th {
  padding: 17px 20px;
  text-align: left;
  font-weight: 700;
  font-size: .80rem;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.hit-table thead th:first-child { width: 56px; text-align: center; }

.hit-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background .15s;
}
.hit-table tbody tr:last-child { border-bottom: none; }

.ts--green .hit-table tbody tr:hover { background: #e8f4e7; }
.hit-table tbody tr:hover { background: #fff0f0; }

.hit-table tbody tr:nth-child(even) { background: #fdfdfd; }
.hit-table tbody tr:nth-child(even):hover { background: #fff0f0; }
.ts--green .hit-table tbody tr:nth-child(even):hover { background: #e8f4e7; }

.hit-table td {
  padding: 15px 20px;
  color: var(--gray-600);
  vertical-align: middle;
}
.hit-table td:first-child {
  font-weight: 700;
  text-align: center;
  font-size: .85rem;
  color: var(--maroon);
  background: rgba(112,24,31,.04);
  white-space: nowrap;
}
.ts--green .hit-table td:first-child {
  color: var(--green-dark);
  background: rgba(66,125,58,.04);
}
.hit-table td a {
  color: var(--maroon);
  text-decoration: none;
  font-weight: 500;
}
.hit-table td a:hover { text-decoration: underline; }
.ts--green .hit-table td a { color: var(--green-dark); }

/* ── CONTACT STRIP ──────────────────────────────────── */
.cstrip {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  padding: 56px 28px;
}
.cstrip__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cstrip h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 36px;
}
.cstrip__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 44px;
}
.cstrip__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .98rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.cstrip__item:hover { color: #ffd97d; }
.cstrip__item i {
  font-size: 1.3rem;
  color: #ffd97d;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .ao-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  .ao-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .msg-inner,
  .msg-inner--rev {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .msg-inner--rev .msg-body    { order: 2; }
  .msg-inner--rev .msg-portrait{ order: 1; }
  .msg-portrait { position: static; max-width: 340px; margin: 0 auto; }
  .msg-portrait__frame img { height: 360px; }
}

@media (max-width: 720px) {
  .ao-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .lhero__content { padding: 70px 20px; }
  .msg-section, .ao-section, .ts { padding: 60px 0; }
  .ao-section-head, .ts__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ao-section-num, .ts__num { font-size: 3.5rem; }
}

@media (max-width: 480px) {
  .ao-grid { grid-template-columns: 1fr; }
  .cstrip__items { gap: 18px; }
}
