/* Sundays Page Specific Styles */

/* Hero Section */
.sundays-hero {
    min-height: 450px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    min-height: 450px;
}

.hero-image-section {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-title {
    color: #fff;
    font-size: 66px;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
}

.hero-logo {
    width: 141px;
    max-width: 100%;
    height: auto;
}

.hero-text-section {
    background-color: #508fae;
    display: flex;
    align-items: center;
    padding: 76px;
}

.hero-text-section h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
}

/* Service Times Section */
.service-section {
    padding: 76px 20px;
    background-color: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.service-title {
    display: flex;
    align-items: flex-start;
}

.service-title h2 {
    font-size: 36px;
    font-weight: 900;
    color: #242424;
    margin: 0;
    line-height: 1.2;
}

.service-time {
    text-align: center;
}

.service-location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.time-display {
    font-size: 48px;
    font-weight: 900;
    color: #185b8f;
    margin: 0 0 10px;
    line-height: 1.2;
}

.service-time p {
    font-size: 24px;
    color: #333;
}

.service-location h3 {
    font-size: 26px;
    font-weight: 700;
    color: #242424;
    margin: 0 0 15px;
    line-height: 1.2;
}

.service-location p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-online h3 {
    font-size: 26px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 20px;
}

.service-online p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* What to Expect Section */
.expect-section {
    background-color: #f7f7f7;
    padding: 76px 20px;
}

.expect-section h2 {
    font-size: 50px;
    font-weight: 900;
    color: #242424;
    text-align: center;
    margin-bottom: 50px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.expect-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 15px;
}

.expect-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Kids & Youth Section */
.kids-section {
    background-color: #fff;
}

.kids-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.kids-image {
    background-size: cover;
    background-position: center;
}

.kids-content {
    padding: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kids-content h2 {
    font-size: 50px;
    font-weight: 900;
    color: #242424;
    margin-bottom: 40px;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.program h3 {
    font-size: 22px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 8px;
}

.age-range {
    font-size: 14px;
    color: #185b8f;
    font-weight: 600;
    margin-bottom: 10px;
}

.program p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* Coffee & Community Section */
.community-section {
    background-color: #f2ede8;
}

.community-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.community-content {
    padding: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.community-content h2 {
    font-size: 50px;
    font-weight: 900;
    color: #2f2f2f;
    margin-bottom: 20px;
}

.community-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.community-image {
    background-size: cover;
    background-position: center;
}

/* Worship Section */
.worship-section {
    background-color: #fff;
}

.worship-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.worship-image {
    background-size: cover;
    background-position: center;
}

.worship-content {
    padding: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.worship-content h2 {
    font-size: 50px;
    font-weight: 900;
    color: #2f2f2f;
    margin-bottom: 20px;
}

.worship-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button Styles */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    width: auto !important;
}

.btn-primary {
    background-color: #185b8f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #144a75;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #242424;
    color: #242424;
}

.btn-outline:hover {
    background-color: #242424;
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: #242424;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Footer enhancements */
.site-footer {
    background-color: #242424;
    color: #fff;
    padding: 56px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 900;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.footer-section p {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #fff;
}

.footer-bottom {
    background-color: #131313;
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    width: 139px;
    max-width: 100%;
    height: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: #535353;
}

.social-links a:hover svg {
    fill: #508fae;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-title {
        justify-content: center;
    }
    
    .service-title h2 {
        text-align: center;
    }
    
    .service-time {
        text-align: center;
    }
    
    .service-location {
        align-items: center;
        text-align: center;
    }
    
    .service-location p {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text-section {
        padding: 50px 30px;
    }
    
    .hero-text-section h2 {
        font-size: 26px;
    }
    
    .kids-container {
        grid-template-columns: 1fr;
    }
    
    .community-container {
        grid-template-columns: 1fr;
    }
    
    .worship-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-logo {
        width: 100px;
    }
    
    .hero-text-section {
        padding: 40px 20px;
    }
    
    .hero-text-section h2 {
        font-size: 22px;
    }
    
    .service-section {
        padding: 40px 20px;
    }
    
    .service-title h2 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .time-display {
        font-size: 36px;
    }
    
    .service-time p {
        font-size: 20px;
        margin: 0;
    }
    
    .expect-section {
        padding: 40px 20px;
    }
    
    .expect-section h2 {
        font-size: 36px;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .kids-content {
        padding: 40px 20px;
    }
    
    .kids-content h2 {
        font-size: 36px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .community-content {
        padding: 40px 20px;
    }
    
    .community-content h2 {
        font-size: 36px;
    }
    
    .worship-content {
        padding: 40px 20px;
    }
    
    .worship-content h2 {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .service-time h2 {
        font-size: 28px;
    }
    
    .time-display {
        font-size: 28px;
    }
    
    .expect-section h2 {
        font-size: 28px;
    }
    
    .kids-content h2 {
        font-size: 28px;
    }
    
    .community-content h2 {
        font-size: 28px;
    }
    
    .worship-content h2 {
        font-size: 28px;
    }
}