/* ACADEMICS DIRECTORY STYLES */

: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(--light-gray); 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; }
.mb-md { margin-bottom: 25px; }
.mt-sm { margin-top: 20px; }

/* Typography */
.section-title-serif { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 15px; }
.elegant-paragraph { font-size: 1.15rem; line-height: 1.8; color: #4a4a4a; max-width: 800px; margin: 0 auto; }
.header-divider { width: 60px; height: 3px; background-color: var(--gold); margin: 0 auto 20px auto; }

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

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

/* Grid for Colleges/Schools */
.acad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.acad-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.acad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.acad-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.acad-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.acad-card:hover .acad-img-wrapper img {
    transform: scale(1.08);
}

.acad-card-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.acad-school-title {
    font-family: var(--font-trajan);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.acad-school-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.acad-card:hover .acad-school-title {
    color: var(--gold);
}

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