 /* Custom CSS */
:root {
    --primary-blue: #0962E8;
    --secondary-blue: #064AAE;
    --accent-orange: #FF7F27;
    --dark-text: #333;
    --light-text: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}

.blue-section {
    background-color: var(--primary-blue);
    color: white;
}

.navbar-brand img {
    max-height: 50px;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}


.btn-secondary {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.bg-primary-blue{
    background-color: var(--primary-blue);
}

.bg-secondary-custom{
     background-color: var(--accent-orange);
}

.text-secondary-custom{
     color: var(--accent-orange);
}


.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
}

.cta-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 50px 0;
    background-image: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.sponsor-section {
    background: linear-gradient(rgba(0, 57, 166, 0.9), rgba(0, 57, 166, 0.9)), 
                url('images/children-bg.jpg');
    background-size: cover;
    color: white;
    padding: 70px 0;
}

        .section-padding {
            padding: 60px 0;
        }
        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        .statement-of-faith ul {
            list-style: none;
            padding: 0;
        }
        .statement-of-faith ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        .statement-of-faith ul li::before {
            content: "\2713"; /* Checkmark icon */
            color: #007bff; /* Bootstrap primary color */
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold;
        }

.hero-lisa {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1500x600?text=LISA+School+Building') no-repeat center center; /* Replace with a relevant school image */
            background-size: cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-padding {
            padding: 60px 0;
        }
        .info-card {
            background-color: #f8f9fa; /* Light grey background for info cards */
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,.05);
            text-align: center;
            height: 100%; /* Ensure cards are the same height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .info-card h4 {
            color: #007bff; /* Bootstrap primary color */
            margin-bottom: 15px;
        }
        .cta-section {
            background-color: #e9ecef; /* Lighter grey for CTA background */
            padding: 40px 0;
        }
        .directors-section img {
            max-width: 200px;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
        }
.info-card {
    padding: 20px;
    border-radius: 10px;
    color: #333;
    transition: box-shadow 0.3s ease;
    min-height: 180px;
}

.info-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Soft background colors that complement blue & orange */
.card-levels {
    background-color: #fef6e4; /* soft peach */
}

.card-curriculum {
    background-color: #e0f7fa; /* light aqua */
}

.card-admissions {
    background-color: #f3e5f5; /* lavender */
}

.card-message {
    background-color: #fff9c4; /* light yellow */
}

.card-history {
    background-color: #dcedc8; /* pale green */
}

.card-coming {
    background-color: #ffecb3; /* warm soft orange */
}
