/* Parents & Community Page Styles */

.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../New_folder/IMG-20250616-WA0125.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.content-section {
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.parents-section, 
.faith-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.parents-section h2, 
.faith-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

.parents-section p,
.faith-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.parents-section h3 {
    color: var(--accent-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.involvement-list {
    max-width: 800px;
    margin: 1rem auto;
    list-style: none;
    padding-left: 0;
}

.involvement-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.involvement-list li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
}

.faith-section {
    background-color: var(--light-color);
    border-left: 5px solid var(--primary-color);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .content-section {
        padding: 3rem 30px;
    }

    .parents-section, 
    .faith-section {
        padding: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header {
        height: 300px;
        margin-top: 70px;
        padding: 0 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 3rem 20px;
    }

    .parents-section, 
    .faith-section {
        margin-bottom: 2rem;
        padding: 1.8rem;
    }

    .parents-section h2, 
    .faith-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .parents-section p,
    .faith-section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .parents-section h3 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem 0;
    }

    .involvement-list {
        max-width: 100%;
        margin: 0.8rem 0;
    }

    .involvement-list li {
        font-size: 1rem;
        padding-left: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .involvement-list li::before {
        font-size: 1.3rem;
    }

    .faith-section {
        border-left-width: 4px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .page-header {
        height: 250px;
        padding: 0 15px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 2rem 15px;
    }

    .parents-section, 
    .faith-section {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        border-radius: 6px;
    }

    .parents-section h2, 
    .faith-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .parents-section p,
    .faith-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .parents-section h3 {
        font-size: 1.1rem;
        margin: 1rem 0 0.7rem 0;
    }

    .involvement-list {
        margin: 0.7rem 0;
    }

    .involvement-list li {
        font-size: 0.95rem;
        padding-left: 1.6rem;
        margin-bottom: 0.7rem;
    }

    .involvement-list li::before {
        font-size: 1.2rem;
    }

    .faith-section {
        border-left-width: 3px;
    }
}