/* =========================
   GENERAL STYLES
========================= */

:root {
    --purple: #8e50e4;
    --light-purple: #d4b1ff;
    --lilac: #d5bbf4;
    --dark-purple: #3f3155;
    --white: #FFFFFF;
    --soft-purple: #e7d1ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--light-purple);
    color: var(--dark-purple);
    line-height: 1.6;
}

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


/* =========================
   NAVIGATION
========================= */

header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(63, 49, 85, 0.08);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 18px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 28px;
    font-weight: bold;
    color: var(--dark-purple);
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--purple);
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 60px 30px;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: auto;
}

.footer-content h2 {
    margin-bottom: 5px;
}

.footer-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a:hover {
    color: var(--lilac);
}

.copyright {
    font-size: 13px;
    opacity: 0.7;
}

/* =========================
   PAGE HEADER
========================= */
.page-header {
    background: linear-gradient(
        135deg,
        var(--purple),
        var(--lilac)
    );
    text-align: center;
    padding: 100px 20px;
    color: var(--white);
}

.page-header .section-label {
    color: var(--white);
}

.page-header h1 {
    font-size: 55px;
    margin-bottom: 15px;
}

.page-header p:last-child {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

/* =========================
   SECTION CONTENT
========================= */
.section-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.section-label {
    color: var(--purple);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.section-content p:not(.section-label) {
    color: #665b72;
    font-size: 17px;
    margin-bottom: 25px;
}

/* =========================
   LEADERSHIP INTRO
========================= */
.leadership-intro {
    background-color: var(--white);
    padding: 100px 30px;
}

/* =========================
   LEADERSHIP SECTION
========================= */
.leadership-section {
    background-color: var(--light-purple);
    padding: 100px 30px;
}

.leadership-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================
   LEADER CARDS
========================= */
.leader-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(63, 49, 85, 0.08);
    transition: 0.3s;
}

.leader-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(63, 49, 85, 0.15);
}

/* =========================
   LEADER PHOTO
========================= */
.leader-photo {
    width: 100%;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--soft-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.leader-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lily-photo {
    width: 100%;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--soft-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.lily-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* =========================
   LEADER INFORMATION
========================= */
.leader-info {
    position: static;
    padding: 30px;
    background-color: var(--white);
}

.leader-position {
    color: var(--purple);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.leader-info h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.leader-intro {
    color: #665b72;
    font-size: 15px;
    margin-bottom: 0;
}

/* =========================
   FUN FACT
========================= */
.fun-fact {
    margin-top: 25px;
    padding: 15px 18px;
    background-color: var(--soft-purple);
    border-radius: 12px;
    border-left: 4px solid var(--purple);
}

.fun-fact-label {
    display: block;
    color: var(--purple);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.fun-fact p {
    color: var(--dark-purple);
    font-size: 14px;
    margin: 0;
}

/* =========================
   BUTTON
========================= */
.button {
    display: inline-block;
    background-color: var(--purple);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    background-color: var(--dark-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 49, 85, 0.2);
}



.leader-card:last-child {
    grid-column: 2;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px
    }

    .page-header h1 {
        font-size: 42px;
    }

    .leadership-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {

    .page-header {
        padding: 80px 20px;
    }

    .page-header h1{
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }
}

