/**
 * UCAPR - Footer
 * Design moderne aux couleurs de l'association
 */

/* =========================================================================
   FOOTER PRINCIPAL
   ========================================================================= */

.ucapr-footer {
    background: #1a1a1a;
    color: #cccccc;
    font-size: 0.92em;
    line-height: 1.7;
    margin-top: 0;
}

.ucapr-footer a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ucapr-footer a:hover {
    color: #96B83D;
}

/* =========================================================================
   FOOTER TOP - 4 colonnes
   ========================================================================= */

.ucapr-footer-top {
    background: #1D5C29;
    padding: 50px 0 40px;
}

.ucapr-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.ucapr-footer-top a {
    color: rgba(255, 255, 255, 0.8);
}

.ucapr-footer-top a:hover {
    color: #ffffff;
}

/* Titres des colonnes */
.ucapr-footer-col h4 {
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #96B83D;
    letter-spacing: 0.02em;
}

/* Listes */
.ucapr-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ucapr-footer-col ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ucapr-footer-col ul li i {
    width: 16px;
    text-align: center;
    color: #96B83D;
    font-size: 0.9em;
}

.ucapr-footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* About column */
.ucapr-footer-about .ucapr-footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.ucapr-footer-about .ucapr-footer-logo img {
    max-width: 160px;
    height: auto;
    border-radius: 8px;
}

.ucapr-footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92em;
    line-height: 1.6;
    margin: 0;
}

/* Social icons */
.ucapr-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.ucapr-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.ucapr-footer-social a:hover {
    background: #96B83D;
    transform: translateY(-2px);
}

/* =========================================================================
   FOOTER BOTTOM - Copyright
   ========================================================================= */

.ucapr-footer-bottom {
    background: #163f1e;
    padding: 18px 0;
}

.ucapr-footer-bottom .ucapr-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ucapr-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
}

.ucapr-footer-credits {
    font-style: italic;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media screen and (max-width: 900px) {
    .ucapr-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 600px) {
    .ucapr-footer-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ucapr-footer-top {
        padding: 35px 0 30px;
    }
    
    .ucapr-footer-bottom .ucapr-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
