﻿/* ============================================================
   FOOTER HORIZONTAL
   ============================================================ */

#mainFooter {
    background: var(--bg-footer);
    border-radius: 20px 20px 0 0;
    padding: 10px 20px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-bottom: none;
    transition: background var(--transition);
}

.footer-horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
}

/* ===== ÉLÉMENTS ===== */
.footer-h-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-h-item:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
}

.footer-h-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-h-item a:hover {
    color: var(--gold);
}

.f-icon {
    font-size: 0.85rem;
}

/* ===== LOGO ===== */
.footer-logo-h {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo-h span {
    background: linear-gradient(135deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== RÉSEAUX SOCIAUX ===== */
.social-group {
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: var(--gold-glow);
    color: var(--gold);
}

/* ===== COPYRIGHT & LOCALISATION ===== */
.copyright {
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: transparent;
    border: none;
}

.location {
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: transparent;
    border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-horizontal {
        justify-content: center;
        gap: 8px;
    }
    
    .footer-h-item {
        padding: 3px 10px;
    }
}

@media (max-width: 768px) {
    #mainFooter {
        padding: 8px 14px;
        border-radius: 16px 16px 0 0;
    }
    
    .footer-horizontal {
        gap: 6px;
    }
    
    .footer-h-item {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .footer-h-item a {
        font-size: 0.65rem;
    }
    
    .footer-logo-h {
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
    
    .copyright {
        font-size: 0.6rem;
    }
    
    .location {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .footer-horizontal {
        gap: 4px;
    }
    
    .footer-h-item {
        padding: 2px 6px;
        border-radius: 20px;
        gap: 3px;
    }
    
    .footer-h-item a {
        font-size: 0.55rem;
    }
    
    .f-icon {
        font-size: 0.65rem;
    }
    
    .footer-logo-h {
        font-size: 0.65rem;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }
    
    .copyright,
    .location {
        font-size: 0.5rem;
    }
}
