/* =========================================
   FOOTER
========================================= */
.bg-black { background-color: #000000; }
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.border-t-gray-800 { border-top: 1px solid #1f2937; }

.footer {
    padding-top: 3rem; /* py-12 */
    padding-bottom: 3rem;
}

.footer-container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    margin-bottom: 2rem; /* mb-8 */
}

/* Utilities */
.mb-4 { margin-bottom: 1rem; }
.text-sm { font-size: 0.875rem; }
.hover-primary:hover { color: var(--clr-primary); }
.transition-colors { transition: color var(--transition-speed) ease-in-out; }

/* Logo */
.footer-logo-link {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 3.5rem; /* h-14 */
    width: auto;
    object-fit: contain;
}

.group:hover .footer-logo {
    transform: scale(1.05);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem; /* gap-4 */
}

.social-icon {
    color: #9ca3af;
    transition: color var(--transition-speed);
}

.social-icon svg {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
}

.social-icon:hover {
    color: var(--clr-primary);
}

/* Columns & Lists */
.footer-heading {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--clr-primary);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* space-y-3 */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--clr-primary);
    flex-shrink: 0;
    margin-top: 0.125rem; /* mt-0.5 pour l'alignement */
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.text-center { text-align: center; }

.legal-links {
    display: flex;
    gap: 1.5rem; /* gap-6 */
}

.footer-bottom-content a{
    text-decoration: none;
    color: #9ca3af;
}
/* =========================================
   MEDIA QUERIES FOOTER
========================================= */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .md-text-left {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}