/* Sunday School Specific Styles */

/* Hero Section */
.sunday-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d8bcc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}

/* Info Section */
.sunday-info {
    padding: 80px 0;
    background-color: var(--white);
}

.sunday-info .section-content {
    background: none;
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background-color: var(--white);
    border: 2px solid var(--background-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(80, 162, 233, 0.2);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Info Description */
.info-description {
    background-color: var(--background-light);
    border-radius: 20px;
    padding: 50px;
    margin-top: 50px;
    text-align: left;
}

.info-description h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-description p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.education-list {
    list-style: none;
    margin-top: 20px;
}

.education-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.education-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Contact Section */
.sunday-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.sunday-contact .section-content {
    background: none;
}

.contact-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
    margin: 30px 0 50px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: #3d8bcc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(80, 162, 233, 0.3);
}

.contact-btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Active Menu Item */
.navbar-menu li a.active {
    color: var(--primary-color);
    font-weight: bold;
}

.navbar-menu li a.active::after {
    width: 80%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .sunday-hero {
        height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-description {
        padding: 30px 20px;
    }

    .info-description h3 {
        font-size: 1.5rem;
    }

    .info-description p {
        font-size: 1rem;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .sunday-hero {
        height: 250px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-description {
        padding: 25px 15px;
    }
}
