﻿.footer-root {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 5rem var(--layout-padding-mobile) 2.5rem var(--layout-padding-mobile);
}

.footer-container {
    max-width: var(--layout_container-maxwidth);
    margin: 0 auto;
}

.sr-only {
    visibility: hidden;
    height: 0;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

/* Brand */
.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #00E599;
}

.footer-brand-title {
    font-family: "Outfit", system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
}

.footer-brand-accent {
    color: #00E599;
}

.footer-brand-text {
    color: #9ca3af;
    max-width: 420px;
    line-height: 1.7;
}

/* Contact */
.footer-section-label {
    font-family: monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #00E599;
    margin-bottom: 1.25rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #00E599;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E599;
    height: 22px;
    width: 22px;
}

/* Icône MapPin uniquement */
#pin svg {
    width: 22px;
    height: 22px;
    stroke: #00E599 !important;
    fill: none !important;
    opacity: 1;
    display: block;
}

.footer-arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

/* Location */
.footer-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    margin-top: 0.8rem;
}

/* Navigation */
.footer-nav {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    align-items: flex-start;
}

.footer-nav-list li {
    width: 100%;
    display: block;
    text-align: left;
}

.footer-nav-link {
    color: #9ca3af;
    transition: color 0.3s ease;
    display: block; /* très important */
    text-align: left;
    text-decoration: none;
}

.footer-nav-link:hover {
    color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom-left {
    font-family: monospace;
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-bottom-right {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer-contact-link,
.footer-nav-link {
    text-decoration: none !important;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 6fr 3fr 3fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-root {
        padding-left: var(--layout-padding-desktop);
        padding-right: var(--layout-padding-desktop);
    }
}