/*
Theme Name: News Magazine X - Custom
Description: Thème enfant de News Magazine X avec footer personnalisé
Template: news-magazine-x
Version: 1.0
*/

/* Import du CSS du thème parent */
@import url("../news-magazine-x/style.css");

/* Personnalisations CSS pour le footer */
.custom-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.custom-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.custom-footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.custom-footer-section p,
.custom-footer-section li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.custom-footer-section ul {
    list-style: none;
    padding: 0;
}

.custom-footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-footer-section a:hover {
    color: #007cba;
}

.custom-footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    color: #888888;
    font-size: 14px;
}


/* Masquer le footer du thème original */
#site-footer.newsx-site-footer {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .custom-footer-container {
        padding: 0 15px;
    }
}