/* Styles unique to about.php.
   Everything shared (tokens, header, nav, drawer, footer, layout,
   cards, responsive rules) lives in style.css. */

.hero {
    position: relative;
    height: 62vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,33,88,0.92) 0%, rgba(10,33,88,0.45) 55%, rgba(10,33,88,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 2rem;
    animation: heroUp 0.8s ease-out;
}

@keyframes heroUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.75;
    margin-bottom: 0.75rem;
}

.breadcrumb a { color: var(--white); text-decoration: none; }

.breadcrumb a:hover { color: var(--gold-light); }

.breadcrumb i { font-size: 0.6rem; opacity: 0.6; }

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,162,39,0.22);
    border: 1px solid rgba(201,162,39,0.5);
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.7;
}

.page-tabs {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 76px;
    z-index: 800;
}

.page-tabs .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.page-tabs .inner::-webkit-scrollbar { display: none; }

.page-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.25rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.page-tab:hover { color: var(--blue); }

.page-tab.active { color: var(--blue); border-bottom-color: var(--gold); }

.page-tab i { font-size: 0.8rem; }

.page-body {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-heading .line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    white-space: nowrap;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem 1.5rem;
    border-top: 4px solid var(--gold);
    transition: transform 0.25s, box-shadow 0.25s;
}

.mv-card:nth-child(2) { border-top-color: var(--blue); }

.mv-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(10,33,88,0.14); }

.mv-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.1rem;
}

.mv-card:nth-child(2) .mv-icon { color: var(--blue); }

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.mv-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.card img { width: 100%; height: 220px; object-fit: cover; display: block; }

.accordion { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

.acc-item { border-bottom: 1px solid var(--border); }

.acc-item:last-child { border-bottom: none; }

.acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: var(--white);
    transition: background 0.15s;
    user-select: none;
}

.acc-header:hover { background: var(--cream); }

.acc-header .acc-year {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.acc-header .acc-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 0.7rem;
    transition: transform 0.3s, background 0.2s;
    flex-shrink: 0;
}

.acc-item.open .acc-header { background: var(--cream); }

.acc-item.open .acc-icon { transform: rotate(180deg); background: var(--gold-light); color: var(--navy); }

.acc-body {
    display: none;
    padding: 0 1.25rem 1.25rem;
    background: var(--cream);
}

.acc-item.open .acc-body { display: block; }

.acc-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

.leadership-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ldr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.ldr-person {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: background 0.2s, transform 0.2s;
}

.ldr-person:hover { background: var(--cream); transform: translateY(-2px); }

.ldr-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.6rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.ldr-name { font-weight: 700; font-size: 0.87rem; color: var(--navy); margin-bottom: 0.2rem; }

.ldr-role { font-size: 0.78rem; color: var(--text-muted); }

.sidebar-card-header.rust { background: #7c2d12; }

.sidebar-card-header.rust i, .sidebar-card-header.rust h3 { color: var(--white); }

.contact-list { list-style: none; margin-top: 0.5rem; }

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.86rem;
}

.contact-list li:last-child { border-bottom: none; }

.contact-list i { color: var(--gold); width: 16px; margin-top: 2px; flex-shrink: 0; }

.contact-list a { color: var(--blue); text-decoration: none; }

.contact-list a:hover { color: var(--navy); }

.quick-links { list-style: none; }

.quick-links li { border-bottom: 1px solid var(--border); }

.quick-links li:last-child { border-bottom: none; }

.quick-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

.quick-links a:hover { color: var(--blue); }

.quick-links a i { font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 960px) {
    .mv-grid { grid-template-columns: 1fr; }
    /* This page uses a 300px sidebar rather than the shared 320px, so its
       own .page-body rule overrides style.css. That means the mobile
       collapse has to be repeated here or the two columns never stack. */
    .page-body { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .page-tabs { top: 76px; }
}

@media (max-width: 480px) {
    .hero-content { padding: 2rem 1rem; }
    .ldr-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    /* Repeated here because this file restates .hero h1 and .page-body
       outside a media query, which would otherwise beat style.css. */
    .hero h1 { font-size: 2rem; }
    .page-body { padding: 2rem 1rem; }
}
