/*
Theme Name: STHellen
Description: A WordPress theme for ACK St Hellen's church.
Author: Patrick Muriungi
Author URI: https://codingpatrick.netlify.com
Version: 1.2.24
Requires at least: 5.9
Tested up to: 6.2
Requires PHP: 7.0
Text Domain: ST Hellen theme
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: StHellen
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

StHellen is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/
:root {
    primary-color: #290bcd;
}

  .footer-main {
            background-image: url('https://acksthellensgithurai.org/wp-content/uploads/2025/06/footer-bg-1920-x-1080-px-1.png');
            background-position: top center;
            background-repeat: no-repeat;
            background-color: var(--primary-color);
            color: white;
        }
        
        .footer-section {
            padding: 5rem 1rem;
        }
        
        .footer-title {
            font-family: 'Jost', sans-serif;
            font-weight: 500;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .connect-title {
            font-size: 45px;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .footer-text {
            color: var(--light-text);
        }
        
        .footer-btn {
            border-radius: 100px;
            border: 2px solid transparent;
            padding: 0.5rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .footer-btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .footer-btn-primary:hover {
            background-color: #70fd37;
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .contact-heading {
            color: var(--secondary-color);
            font-weight: 400;
            font-size: 1.25rem;
        }
        
        .icon-list-item {
            margin-bottom: 1rem;
            color: white;
        }
        
        .icon-list-item i {
            margin-right: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-links i {
            margin-right: 10px;
        }
        
        .footer-bottom {
            background-color: var(--primary-color);
            border-top: 1px solid rgba(255,255,255,0.2);
            padding: 24px 0;
        }
        
        .footer-bottom a {
            color: white;
            text-decoration: underline;
        }
        
        .footer-bottom a:hover {
            color: var(--secondary-color);
        }
        
        @media (max-width: 768px) {
            .footer-section {
                padding: 2rem 1rem;
            }
            
            .connect-title {
                font-size: 36px;
            }
            
            .footer-col {
                margin-bottom: 2rem;
            }
        }