/* ─── About Page ─────────────────────────────────────────────────── */

.about-page {
    position: relative;
    background-image: url('../img/hero.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.about-page__overlay {
    position: absolute;
    inset: 0;
    background: #0000008a;
    z-index: 0;
}

.about-page__content {
    position: relative;
    z-index: 1;
}

.about-page-title {
    text-align: center;
    padding: 28px 0 20px;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
    margin: 0;
}

/* ─── Glass Card ─────────────────────────────────────────────────── */
.about-card {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    margin-bottom: 28px;
}

/* ─── Intro Section ──────────────────────────────────────────────── */
.about-intro__img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.about-intro__body {
    padding: 32px 36px;
}

.about-intro__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f0c040;
    margin: 0 0 16px;
    line-height: 1.35;
}

.about-intro__text {
    font-size: .92rem;
    color: rgba(255,255,255,.88);
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}

/* ─── Aims Section ───────────────────────────────────────────────── */
.about-aims__head {
    padding: 18px 28px;
    background: rgba(26,122,26,0.28);
    border-bottom: 1px solid rgba(26,122,26,0.45);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-aims__head h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}

.about-aims__head i { color: #f0c040; font-size: 1.2rem; }

.about-aims__body {
    padding: 24px 28px;
}

.about-aims__lead {
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    margin: 0 0 18px;
    font-style: italic;
}

.about-aims__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-aims__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    transition: background .2s, border-color .2s;
}

.about-aims__list li:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,.18);
}

.about-aims__list li i {
    color: #1a7a1a;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .about-intro__body { padding: 22px 18px; }
    .about-aims__body  { padding: 18px; }
}

/* ─── Chairman Profile ───────────────────────────────────────────── */
.chair-photo-wrap {
    padding: 32px 24px 32px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.chair-photo {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,.25);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    display: block;
    object-fit: cover;
}

.chair-body {
    padding: 32px 36px 32px 8px;
}

.chair-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.25;
}

.chair-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f0c040;
    margin: 0 0 6px;
}

.chair-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,122,26,0.35);
    border: 1px solid rgba(26,122,26,0.55);
    color: #a8e6a8;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.chair-divider {
    border-color: rgba(255,255,255,.18);
    margin: 0 0 20px;
}

.chair-bio {
    font-size: .9rem;
    color: rgba(255,255,255,.85);
    line-height: 1.85;
    text-align: justify;
    margin: 0;
}

@media (max-width: 767px) {
    .chair-photo-wrap { padding: 24px 24px 8px; justify-content: center; }
    .chair-body       { padding: 16px 20px 24px; }
    .chair-photo      { max-width: 200px; }
}
