/**
 * MycvTop Store - Footer Styles
 * Design moderne et responsive
 */

/* ============================================
   FOOTER PRINCIPAL - MINIMALISTE (MODERN STARTUP)
   ============================================ */
.main-footer {
    background: var(--g-ink, #111827); /* Deep modern blue-gray */
    color: var(--g-muted, #9ca3af);
    padding: 1.5rem 0;
    margin-top: 4rem; /* More breathing room */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

/* Footer content supprimé - seulement copyright */

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-section ul li {
    margin: 0;
}

.footer-section ul li a {
    color: rgba(254, 240, 138, 0.9);
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) 0;
}

.footer-section ul li a:hover {
    color: #fef08a;
    transform: translateX(-5px);
    padding-right: var(--spacing-sm);
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition-fast);
    font-size: var(--font-size-lg);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(-3px);
}

/* Contact Info */
.footer-section p {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.footer-section p::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Footer Bottom - Copyright seulement */
.footer-bottom {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(254, 240, 138, 0.95);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Footer SEO nav links */
.footer-seo-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    margin-top: 0.5rem;
}
.footer-seo-links a {
    color: rgba(254,240,138,0.75);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-seo-links a:hover {
    color: #fef08a;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .main-footer {
        padding: 0.875rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 0.75rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}
