/* Church Footer CSS - footer.css */

.madale-church-main-footer-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #2980b9 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.madale-church-main-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    pointer-events: none;
}

.church-footer-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 20px;
}

/* Main Footer Grid */
.church-footer-primary-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Church Information Column */
.church-footer-info-column {
    padding-right: 20px;
}

.church-footer-logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.church-footer-brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.church-footer-organization-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.church-footer-organization-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.church-footer-mission-statement {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.church-footer-social-media-links {
    display: flex;
    gap: 15px;
}

.church-footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.facebook-link {
    background: #1877f2;
    color: #ffffff;
}

.youtube-link {
    background: #ff0000;
    color: #ffffff;
}

.whatsapp-link {
    background: #25d366;
    color: #ffffff;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.church-footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Navigation Column */
.church-footer-navigation-column {
    padding-left: 10px;
}

.church-footer-column-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.church-footer-navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.church-footer-navigation-list li {
    margin-bottom: 12px;
}

.church-footer-navigation-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
}

.church-footer-navigation-link::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.church-footer-navigation-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.church-footer-navigation-link:hover::before {
    color: #ffffff;
}

/* Services Column */
.church-footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.church-footer-service-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.church-footer-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.church-footer-service-icon {
    font-size: 1.1rem;
    color: #3498db;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.church-footer-service-details {
    display: flex;
    flex-direction: column;
}

.church-footer-service-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2px;
}

.church-footer-service-time {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Column */
.church-footer-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.church-footer-contact-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.church-footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.church-footer-contact-icon {
    font-size: 1.1rem;
    color: #3498db;
    margin-right: 12px;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.church-footer-contact-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.church-footer-contact-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.church-footer-contact-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
    text-decoration: none;
}

.church-footer-phone-link {
    transition: color 0.3s ease;
}

.church-footer-phone-link:hover {
    color: #3498db;
}

/* Footer Bottom Section */
.church-footer-bottom-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 40px;
}

.church-footer-copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.church-footer-copyright-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 5px 0;
}

.church-footer-bible-verse {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem !important;
}

.church-footer-additional-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.church-footer-auth-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.church-footer-auth-link:hover {
    color: #3498db;
}

.church-footer-link-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Tablet View */
@media (max-width: 992px) {
    .church-footer-primary-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .church-footer-content-wrapper {
        padding: 50px 20px 20px;
    }
    
    .church-footer-info-column {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .church-footer-primary-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .church-footer-content-wrapper {
        padding: 40px 15px 15px;
    }
    
    .church-footer-organization-name {
        font-size: 1.3rem;
    }
    
    .church-footer-column-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .church-footer-logo-section {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .church-footer-brand-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .church-footer-social-media-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .church-footer-copyright-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .church-footer-additional-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .church-footer-content-wrapper {
        padding: 30px 10px 10px;
    }
    
    .church-footer-organization-name {
        font-size: 1.2rem;
    }
    
    .church-footer-column-heading {
        font-size: 1.1rem;
    }
    
    .church-footer-service-item,
    .church-footer-contact-item {
        padding: 10px;
    }
    
    .church-footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .church-footer-social-media-links {
        gap: 12px;
    }
}