/* Variables pour le footer (dupliquées pour l'autonomie) */
:root {
    --primary-color: #007AFF;
    --primary-dark: #0056b3;
    --primary-light: #e6f2ff;
    --text-secondary: #6C757D;
    --border-radius: 16px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --transition-speed: 0.3s;
}

/* Footer styles */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

footer a {
    color: var(--text-secondary);
    font-size: 24px;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    transition: color var(--transition-speed), transform var(--transition-speed);
    text-decoration: none;
}

footer a:hover, footer a.active {
    color: var(--primary-color);
    transform: translateY(-4px);
}

/* Pour les écrans mobiles */
@media (max-width: 480px) {
    footer {
        max-width: 100%;
        border-radius: 0;
    }
}

/* Pour les écrans plus grands */
@media (min-width: 481px) {
    footer {
        max-width: 480px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }
}