﻿/* Hero Section */
.hero-section {
    
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0D0D0D;
    background-attachment: fixed;
}

/* Mission Section */
.mission-section {
    background-color: #F8F9FA;
}

    .mission-section h2 {
        color: #3D6973;
    }

/* Curriculum Section */
.curriculum-section {
    background-color: #0D0D0D;
}

    .curriculum-section .card:nth-child(1) {
        background-color: #6BACC8;
        color: #0D0D0D;
    }

    .curriculum-section .card:nth-child(2) {
        background-color: #3D6973;
        color: #F8F9FA;
    }

    .curriculum-section .card:nth-child(3) {
        background-color: #699677;
        color: #0D0D0D;
    }

    .curriculum-section .card:nth-child(4) {
        background-color: #6BACC8;
        color: #0D0D0D;
    }

    .curriculum-section .card:nth-child(5) {
        background-color: #3D6973;
        color: #F8F9FA;
    }

    .curriculum-section .card:nth-child(6) {
        background-color: #699677;
        color: #0D0D0D;
    }

/* Contact Section */
.contact-section {
    background-color: #F8F9FA;
}

    .contact-section h2 {
        color: #3D6973;
    }

/* Map Section */
.map-section {
    background-color: #0D0D0D;
}

/* General Styles */
.btn-primary {
    background-color: #6BACC8;
    border-color: #6BACC8;
}

    .btn-primary:hover {
        background-color: #5A9BB7;
        border-color: #5A9BB7;
    }

.card {
    transition: transform 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
    }

        .hero-section h1 {
            font-size: 2.5rem;
        }

        .hero-section .lead {
            font-size: 1rem;
        }
}
