/* CSS Reset & Variables */
:root {
    --primary-color: #1a365d;
    --accent-color: #d69e2e;
    --accent-hover: #b7791f;
    --text-main: #2d3748;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}
.btn-secondary:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}
.btn-primary-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--accent-color);
}
.nav-links .btn-primary-outline {
    padding: 8px 20px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05);
}

.hero-slideshow .slide.slide-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.6), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.title-underline {
    height: 4px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Events Transition Bar */
.events-bar {
    background-color: #0b1a2f;
    padding: 25px 0;
}

.events-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.events-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-family: serif;
    font-style: italic;
    margin: 0;
}

.btn-event {
    background-color: var(--accent-color);
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 1px;
}
.btn-event:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Mission Section (What We Do) */
.mission {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: center;
}

@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Profile Left Column */
.mission-profile {
    padding: 20px;
}

.profile-img-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto 25px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-lg);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.profile-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: opacity 0.5s ease-in-out;
}

.profile-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
    transition: opacity 0.5s ease-in-out;
}

.profile-tag {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    transition: opacity 0.5s ease-in-out;
}

.profile-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.profile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.profile-socials a:hover {
    background-color: var(--accent-color);
    color: white;
}

/* What We Do Right Column */
.mission-main-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: serif;
}

.mission-divider {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.mission-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
    margin-left: 15px;
}

.mission-divider span {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-feature {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}
.mission-feature:last-child {
    margin-bottom: 0;
}

/* What We Do — Roman numeral markers */
.feature-num {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 44px;
    line-height: 1.3;
    flex-shrink: 0;
    margin-top: 2px;
    border-right: 2px solid #ece9e3;
    padding-right: 20px;
    margin-right: 4px;
}

.feature-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Congregations section header — title left, search right */
.cong-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid #ddd;
}
.cong-section-header .search-wrapper {
    max-width: 300px;
    flex: 1;
}
.search-wrapper {
    position: relative;
    max-width: 650px;
    margin: 0 auto 40px auto;
}
.search-input {
    width: 100%;
    padding: 22px 30px 22px 60px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 12px 40px rgba(11,26,47,0.08);
    font-size: 1.15rem;
    outline: none;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
}
.search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 15px 50px rgba(214, 158, 46, 0.15);
    transform: translateY(-3px);
}
.search-icon-svg {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.search-hint {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    pointer-events: none;
}

.congregation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.cong-directory-row {
    background: transparent;
    border-radius: 16px;
    border: 1px solid transparent;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 25px 35px;
    display: grid;
    grid-template-columns: minmax(200px, 1.5fr) minmax(200px, 2fr) auto;
    gap: 20px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.cong-directory-row:last-child {
    border-bottom: 1px solid transparent;
}
.cong-directory-row:hover {
    background: var(--bg-white);
    box-shadow: 0 15px 40px rgba(11,26,47,0.06);
    transform: translateY(-2px);
    border-color: transparent;
    z-index: 2;
}

@media (max-width: 768px) {
    .cong-directory-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
}

.cong-row-header h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.cong-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cong-row-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cong-row-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.cong-row-icon {
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.cong-row-action .btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 0;
}

.cong-row-action .btn-text-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* Contact CTA */
.contact-cta {
    background-color: var(--primary-color);
    color: white;
}
.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #0f213a;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.footer-brand p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
        gap: 1.5rem;
    }
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; }
    
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 26, 47, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: white;
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-hero {
    height: 140px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0b1a2f 100%);
}

.modal-hero-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    bottom: -45px;
    left: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    object-fit: cover;
    background: white;
}

.modal-header {
    padding: 65px 40px 20px 40px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 40px;
    background: #fcfcfc;
}

@media (max-width: 600px) {
    .modal-stat-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.stat-card-full {
    grid-column: 1 / -1;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.stat-value {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.modal-close:hover {
    background: white;
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Academy Photo Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.gallery-caption {
    padding: 15px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sponsorship Banner */
.sponsor-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0b1a2f 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.sponsor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.sponsor-left {
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sponsor-title {
    font-size: 4rem;
    font-family: inherit;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.sponsor-title span {
    color: var(--accent-color);
}
.sponsor-vision {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}
.sponsor-vision h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-family: serif;
    font-style: italic;
    margin-bottom: 12px;
}
.sponsor-vision p {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
}
.sponsor-contact-text {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}
.sponsor-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-icon {
    background: var(--accent-color);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.contact-item a, .contact-item span:not(.contact-icon) {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
}
.sponsor-right {
    background-color: var(--bg-white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sponsor-right h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 600;
    line-height: 1.4;
}
.sponsor-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.sponsor-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
}
.check-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .sponsor-grid { grid-template-columns: 1fr; }
    .sponsor-left, .sponsor-right { padding: 40px 20px; }
    .sponsor-title { font-size: 3rem; }
}

/* Academy Feature Section — Homepage Redesign */
.academy-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 650px;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.academy-feature-img {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    padding: 30px 0 30px 30px; /* Inset frame effect */
}

.academy-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.academy-feature:hover .academy-feature-img img {
    transform: scale(1.02);
}

.academy-feature-content {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary-color);
}

.academy-eyebrow {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.academy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.academy-year {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.academy-year strong {
    color: var(--accent-color);
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    margin-left: 5px;
}

.academy-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 400;
}

.academy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.academy-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.academy-cta {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-color);
    width: fit-content;
    padding-bottom: 8px;
}

.academy-cta:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

@media (max-width: 900px) {
    .academy-feature {
        grid-template-columns: 1fr;
    }
    .academy-feature-img {
        height: 350px;
    }
    .academy-feature-content {
        padding: 60px 20px;
    }
    .academy-title {
        font-size: 2.5rem;
    }
}
