/* summit.css - Summit Learning page specific styles */

:root {
    --primary-blue: #1E3A8A;
    --secondary-blue: #2563EB;
    --light-blue: #EFF6FF;
    --accent-gold: #D4AF37;
}

/* Summit Hero */
.summit-hero {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(203, 210, 228, 0.8)),
                url('../images/summit_logo.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 70px;
}

.summit-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.summit-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
}

.summit-hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.features-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
    text-align: center;
    border-top: 4px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* Programs Section */
.programs-section {
    padding: var(--section-padding);
    background-color: var(--light-blue);
}

.programs-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.tab-btn {
    padding: 0.8rem 2rem;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.curriculum-info {
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.curriculum-info p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.curriculum-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.highlight span {
    color: #444;
    font-weight: 500;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.subject-category h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.subject-list {
    list-style: none;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.subject-list li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.subject-list li:last-child {
    border-bottom: none;
}

.programs-list {
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-blue);
}

.program-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.program-item p {
    color: #666;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.gallery-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    height: 200px;
    background-color: var(--light-blue);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder {
    text-align: center;
    color: var(--primary-blue);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    color: #666;
}

/* Admissions Section */
.admissions-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1E3A8A 100%);
    color: var(--white);
}

.admissions-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.admissions-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step p {
    color: #cccccc;
    font-size: 0.9rem;
}

.admissions-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Faculty Section */
.faculty-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.faculty-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.faculty-card {
    background: var(--light-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faculty-placeholder {
    height: 150px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-placeholder i {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.8;
}

.faculty-info {
    padding: 1.5rem;
}

.faculty-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.faculty-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Student Life Section */
.student-life-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.student-life-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.activity {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.activity i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.activity h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.activity p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Admissions */
.contact-admissions {
    padding: var(--section-padding);
    background: linear-gradient(rgba(30, 58, 138, 0.05), rgba(30, 58, 138, 0.1));
}

.contact-admissions-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-admissions h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-admissions p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    min-width: 40px;
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    text-align: left;
}

.contact-item p {
    color: #666;
    margin: 0;
    text-align: left;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admissions-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .subjects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .curriculum-highlights {
        grid-template-columns: 1fr;
    }
    
    .admissions-steps {
        grid-template-columns: 1fr;
    }
    
    .admissions-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item h4,
    .contact-item p {
        text-align: center;
    }
}