/* Footer styles */
.footer {
    background-color: rgba(0, 0, 0, 1);
    color: white;
    padding: 40px 20px;
    margin-top: auto;
    border-top: 3px solid #ffff00;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ffff00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.email-group {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.email-group h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #ffff00;
    font-weight: bold;
}

.email-group p {
    font-family: 'SundaySchool', Arial, sans-serif;
    margin: 10px 0;
    font-size: 1.1em;
}

.email-group a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

.email-group a:hover {
    color: #ffff00;
    background-color: rgba(255, 255, 0, 0.1);
    transform: scale(1.05);
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffff00;
}

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

.social-btn {
    font-family: 'SundaySchool', Arial, sans-serif;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: #ff0050;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    color: white;
    min-width: 120px;
    text-align: center;
}

.social-btn:hover {
    color: #ffff00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
    border: 2px solid #ffff00;
}

.social-btn.tiktok:hover {
    background-color: #ff0050;
    border-color: #ff0050;
    background: #f09433;
    color: white;
    border: 2px solid #ffff00;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: white;
    border: 2px solid #ffff00;
}