﻿
/* ================= ROOT ================= */
:root {
    --purple: #4B1D69;
    --gold: #FDBC01;
    --bg-light: #F6F3FB;
    --card: #ffffff;
    --text: #222;
    --muted: #555;
}

/* ================= PAGE BASE ================= */
#academic-page {
    background: #fff;
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 55px;
    color: var(--text);
}

@media(max-width:600px) {
    #academic-page {
        margin-top: 70px;
    }
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
    max-width: 1200px;
    padding: 20px 15px;
    margin-bottom: 3px;
    font-size: 14.5px;
    color: #666;
}

    .breadcrumb a {
        color: var(--purple);
        text-decoration: none;
    }

    .breadcrumb span {
        margin: 0 8px;
    }

/* ================= HERO ================= */
.acad-hero {
    background: linear-gradient(135deg, #4B1D69, #6b2a8d);
    padding: 90px 24px;
    color: #fff;
}

.acad-hero-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.acad-hero h1 {
    font-size: 46px;
    line-height: 1.25;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 18px;
    opacity: .95;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 26px;
    color: #f1eefe;
}

.acad-points {
    list-style: none;
    padding: 0;
}

    .acad-points li {
        font-size: 16px;
        margin-bottom: 10px;
    }

/* ================= HERO MEDIA ================= */
.acad-hero-media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

    .acad-hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ================= SECTION ================= */
.section {
    padding: 80px 24px;
}

    .section.alt {
        background: var(--bg-light);
    }

.section-inner {
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    font-size: 34px;
    color: var(--purple);
    margin-bottom: 14px;
    font-weight: 700;
}

.section p.lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 100%;
}

/* ================= CARDS ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.card {
    background: var(--card);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

    .card h3 {
        color: var(--purple);
        margin-bottom: 10px;
        font-size: 20px;
    }

    .card p {
        color: var(--muted);
        font-size: 15.5px;
        line-height: 1.65;
    }

/* ================= CULTURE ================= */
.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.culture-list li {
    font-size: 16px;
    margin-bottom: 12px;
}

/* ================= VIDEO ================= */
.acad-video {
    position: relative;
    aspect-ratio: 16/10;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

    .acad-video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ================= CTA ================= */
.final-cta {
    background: linear-gradient(135deg, #4B1D69, #3a1452);
    color: #fff;
    text-align: center;
    padding: 85px 24px;
}

    .final-cta h2 {
        font-size: 38px;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .final-cta p {
        font-size: 18px;
        color: #ddd;
        margin-bottom: 30px;
    }

    .final-cta a {
        display: inline-block;
        padding: 14px 36px;
        background: var(--gold);
        color: #000;
        font-weight: 600;
        border-radius: 999px;
        text-decoration: none;
    }

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
    .acad-hero-inner {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .acad-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section h2 {
        font-size: 26px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

/* ================= TEXT JUSTIFICATION (ACADEMIC STYLE) ================= */

/* Main paragraphs */
/* Justify long-form academic text only */
.hero-desc,
.section p.lead {
    text-align: justify;
}

/* DO NOT justify cards */
.card p {
    text-align: left;
}


/* Culture & bullet content */
.acad-points li,
.culture-list li {
    text-align: justify;
}

/* Improve readability when justified */
.hero-desc,
.section p.lead,
.card p,
.acad-points li,
.culture-list li {
    line-height: 1.75;
}
/* ================= FACULTY CTA ================= */
/* ================= FACULTY LINK – CLEAN ACADEMIC ================= */
.faculty-cta {
    margin-top: 28px;
    text-align: left;
    margin-bottom: 26px;
}

    .faculty-cta a {
        font-size: 15.5px;
        font-weight: 600;
        color: var(--purple);
        text-decoration: none;
    }

        .faculty-cta a:hover {
            text-decoration: underline;
        }

.hero-cta {
    display: inline-block;
    padding: 14px 34px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
}

/* HERO BULLETS: white circle + purple tick */
.acad-points {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    padding-bottom: 30px;
}

    .acad-points li {
        position: relative;
        padding-left: 44px; /* space for circle */
        margin-bottom: 12px;
    }

        .acad-points li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .15em;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: #fff; /* white circle */
            box-shadow: 0 10px 25px rgba(0,0,0,.22);
        }

        .acad-points li::after {
            content: "✓";
            position: absolute;
            left: 0;
            top: .15em;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4B1D69; /* purple tick */
            font-weight: 800;
            font-size: 16px;
        }

    /* bullet text */
    .acad-points .bp-text {
        display: block;
        color: #fff; /* white text */
        font-size: 16px;
        line-height: 1.7;
    }

/* Responsive scaling */
@media (max-width: 600px) {
    .acad-points li {
        padding-left: 40px;
    }

        .acad-points li::before,
        .acad-points li::after {
            width: 24px;
            height: 24px;
            font-size: 14px;
            top: .2em;
        }

    .acad-points .bp-text {
        font-size: 15px;
    }
}

/* ================= CULTURE BULLETS ================= */
.culture-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

    .culture-list li {
        position: relative;
        padding-left: 44px; /* space for circle */
        margin-bottom: 12px;
    }

        .culture-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .15em;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: #4B1D69; /* purple circle */
            box-shadow: 0 10px 25px rgba(0,0,0,.15);
        }

        .culture-list li::after {
            content: "✓";
            position: absolute;
            left: 0;
            top: .15em;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff; /* white tick */
            font-weight: 800;
            font-size: 16px;
        }

    .culture-list .bp-text {
        display: block;
        font-size: 16px;
        line-height: 1.7;
        color: #333;
    }

/* Responsive */
@media (max-width: 600px) {
    .culture-list li {
        padding-left: 40px;
    }

        .culture-list li::before,
        .culture-list li::after {
            width: 24px;
            height: 24px;
            font-size: 14px;
            top: .2em;
        }

    .culture-list .bp-text {
        font-size: 15px;
    }
}

/* FIX: Remove extra gap between header and breadcrumb on mobile */
@media (max-width: 600px) {
    #academic-page {
        margin-top: 0 !important;
    }

    .breadcrumb {
        padding-top: 10px;
        margin-top: 0;
    }
}

/* FIX: Keep CTA text in one line on mobile */
.hero-cta {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hero-cta {
        font-size: 15px;
        padding: 12px 26px;
    }
}

@media (max-width: 600px) {
    .final-cta {
        font-size: 12px;
        padding: 12px 26px;
    }
}
