/*
Theme Name: Neve Child - Real Bible Translation
Theme URI: https://www.realbible.tech
Description: Custom child theme for Real Bible Translation Project with enhanced footer
Author: Real Bible Translation Project
Author URI: https://www.realbible.tech
Template: neve
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neve-child
*/

/* Enhanced Footer Styles */
.rbt-footer {
    background: linear-gradient(135deg, #312317 0%, #50331c 100%);
    color: #e0e0e0;
    padding: 0;
    margin-top: 40px;
}

.rbt-footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 30px;
}

.rbt-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5px;
}

.rbt-footer-section h4 {
    color: #b78550;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 2px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b78550;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rbt-footer-section h4 i {
    font-size: 14px;
}

.rbt-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rbt-footer-nav li {
    margin-bottom: 12px;
}

.rbt-footer-nav a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    padding: 6px 0;
}

.rbt-footer-nav a i {
    color: #b78550;
    font-size: 12px;
    width: 16px;
    text-align: center;
    transition: transform 0.2s ease;
}

.rbt-footer-nav a:hover {
    color: #b78550;
    padding-left: 5px;
}

.rbt-footer-nav a:hover i {
    transform: translateX(3px);
}

.rbt-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(183, 133, 80, 0.2);
}

.rbt-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

.rbt-footer-bottom a {
    color: #b78550;
    text-decoration: none;
}

.rbt-footer-bottom a:hover {
    text-decoration: underline;
}

/* Social Links */
.rbt-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rbt-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(183, 133, 80, 0.15);
    border: 1px solid rgba(183, 133, 80, 0.3);
    border-radius: 8px;
    color: #b78550;
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.rbt-social-links a:hover {
    background: #b78550;
    color: #fff;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rbt-footer-main {
        padding: 30px 15px 20px;
    }
    
    .rbt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .rbt-footer-section h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .rbt-footer-nav a {
        font-size: 13px;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    .rbt-footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rbt-footer-section {
        text-align: center;
    }
    
    .rbt-footer-nav a {
        justify-content: center;
    }
    
    .rbt-social-links {
        justify-content: center;
    }
}
