/* Comprehensive Font Override - Cambria for all elements */
*, *::before, *::after,
body, html,
h1, h2, h3, h4, h5, h6,
p, span, div, a, li, td, th,
.main-nav, .main-nav *, .main-nav a, .main-nav li,
.dropdown, .dropdown *, .dropdown a,
.dropdown-content, .dropdown-content *, .dropdown-content li, .dropdown-content li a,
.dropdown-menu, .dropdown-menu *, .dropdown-menu li, .dropdown-menu a {
    font-family: 'Cambria', 'Cambria Math', Georgia, 'Times New Roman', Times, serif !important;
}

/* Teaching & Learning Page Styles */
.teaching-learning-page {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    padding-bottom: 4rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.3), rgba(30, 41, 59, 0.8));
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 3rem 0;
}

.hero-text {
    color: #ffffff;
    max-width: 600px;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.hero-text .badge i {
    color: #fcd34d;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.stats-card {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.stats-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
}

.stats-text p {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .stats-card {
        position: static;
        margin-top: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Styles */
.content-card {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.card-header {
    background: linear-gradient(to right, #1E293B, #364559);
    color: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-content {
    padding: 1.5rem 2rem;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(30, 41, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1E293B;
}

.feature-text p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Sidebar Styles */
.program-list,
.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li,
.resource-list li {
    border-bottom: 1px solid #e2e8f0;
}

.program-list li:last-child,
.resource-list li:last-child {
    border-bottom: none;
}

.program-list a,
.resource-list a {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #1E293B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-list a:hover,
.resource-list a:hover {
    color: #2563eb;
    transform: translateX(5px);
}

.program-list i,
.resource-list i {
    margin-right: 0.75rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.program-list a:hover i,
.resource-list a:hover i {
    color: #2563eb;
}

/* Contact Card */
.contact-card .card-content {
    background: linear-gradient(135deg, #1E293B, #364559);
    color: white;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1E293B;
}

.breadcrumb i {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        margin: 1rem;
        height: 40vh;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .stats-card {
        position: static;
        margin: 1rem 0;
    }

    .content-section {
        padding: 1rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }
} 