/* === ABOUT US DIRECTORY STYLES (about.css) === */

:root {
    --gold: #D4AF37;
    --navy: #272945;
    --dark: #1a1b2e;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --font-trajan: 'Cinzel', serif;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); background: var(--white); color: #333; overflow-x: hidden; }

/* Utilities */
.content-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.block-padding { padding: 100px 0; }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
.bg-navy { background-color: var(--navy); }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gold-text { color: var(--gold); }
.text-navy { color: var(--navy); }
.mb-lg { margin-bottom: 50px; }
.mt-sm { margin-top: 20px; }

/* Typography */
.section-title-serif { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--navy); margin-bottom: 25px; line-height: 1.2; }
.elegant-paragraph { font-size: 1.15rem; line-height: 1.8; margin-bottom: 25px; color: #4a4a4a; }

/* Hero Section */
.about-hero {
    height: 80vh;
    background: linear-gradient(rgba(26, 27, 46, 0.85), rgba(26, 27, 46, 0.85)), url('../PICTURES/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
}

.about-eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; display: block; margin-bottom: 15px; font-weight: 700; }
.about-title-trajan { font-family: var(--font-trajan); font-size: clamp(3rem, 6vw, 5rem); font-weight: 400; line-height: 1.1; margin-bottom: 25px; }
.about-subtitle { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; opacity: 0.9; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 992px) {
    .story-grid { grid-template-columns: 1.2fr 1fr; }
}

.story-image-container {
    position: relative;
    border-radius: 4px;
    box-shadow: 20px 20px 0px 0px rgba(212, 175, 55, 0.15);
}
.story-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* Rank Badge Inline */
.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    background: var(--light-gray);
}
.rank-text {
    font-family: var(--font-trajan);
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.4s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.value-icon-box {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
}
.value-title {
    font-family: var(--font-trajan);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 2px;
}
.value-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.value-desc {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
}

/* Scroll Animation Classes */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.scroll-reveal.fade-in { opacity: 1; transform: translateY(0); }

/* === HISTORY TIMELINE STYLES === */
.history-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

/* The vertical line */
.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.3); /* Muted gold line */
}

.history-era {
    position: relative;
    padding-bottom: 60px;
}

/* The timeline dot */
.history-era::before {
    content: '';
    position: absolute;
    top: 0;
    left: -37px; /* Centers the dot on the line */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.era-year {
    font-family: var(--font-trajan);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1;
}

.era-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.era-content {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.era-content:hover {
    transform: translateX(10px);
}

@media (min-width: 768px) {
    .history-timeline {
        padding-left: 50px;
    }
    .history-era::before {
        left: -57px;
    }
}

/* === UNIVERSITY SEAL SPECIFIC STYLES === */
.seal-presentation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .seal-presentation-grid {
        grid-template-columns: 1fr 1.3fr;
    }
}

/* Elegant Glowing Container for the Seal */
.seal-img-wrapper {
    background: var(--white);
    padding: 60px;
    border-radius: 50%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08), inset 0 0 40px rgba(212, 175, 55, 0.1);
    border: 3px solid rgba(212, 175, 55, 0.5); /* Subtle gold border */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Optional: Creates a subtle rotating aura behind the seal */
.seal-img-wrapper::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border-radius: 50%;
    border: 1px dashed var(--gold);
    animation: slowSpin 40s linear infinite;
    opacity: 0.4;
}

.seal-large-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Layout for the Symbol Explanations */
.symbol-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.symbol-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.symbol-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-top: 5px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.symbol-content h4 {
    font-family: var(--font-trajan);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.symbol-content p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Keyframes for the aura */
@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === ACADEMIC CALENDAR SPECIFIC STYLES === */
.semester-block {
    margin-bottom: 50px;
}

.semester-title {
    font-family: var(--font-trajan);
    font-size: 2rem;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border-left: 4px solid var(--navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.calendar-item.highlight-item {
    border-left: 4px solid var(--gold);
}

.calendar-date-box {
    background: var(--navy);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bg-gold {
    background: var(--gold) !important;
}

.date-month {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-year {
    font-family: var(--font-trajan);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
}

.calendar-event-details {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.event-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustment for desktop */
@media (min-width: 768px) {
    .calendar-item {
        flex-direction: row;
    }
    .calendar-date-box {
        min-width: 200px;
    }
}