/* =========================
   Base
========================= */

.site-footer {
    background: var(--footer-color);
    color: var(--footerTexte-color);
    font-size: 1rem;
}

.container-footer {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   Main layout
========================= */

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 1rem;
}

/* ≥ 576px */
@media (min-width: 576px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-brand {
        flex: 2;
    }

    .footer-columns {
        flex: 1;
    }
}

/* =========================
   Brand column
========================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: inline-block;
    width: 180px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

.footer-tagline {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    color: inherit;
}

.footer-tagline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.footer-tagline:hover::after {
    width: 100%;
}

/* =========================
   Right columns
========================= */

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ≥ 768px */
@media (min-width: 768px) {
    .footer-columns {
        flex-direction: row;
        gap: 4rem;
    }

    .footer-column {
        flex: 1 1 0;
    }
}

.footer-column h5 {
    font-size: 14px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column ul a {
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline animation uniquement pour les liens de liste */
.footer-column ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--orange-color);
    transition: width 0.3s ease;
}

.footer-column ul a:hover::after {
    width: 100%;
}
.footer-column ul a:hover {
    color: var(--orange-color);
}

/* =========================
   Socials
========================= */

.footer-socials {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-socials a {
  font-size: 18px;
}

/* Instagram */
.footer-socials a[aria-label="Instagram"] i {
  color: var(--footerTexte-color);
}

/* Facebook (tu as mis facebook-f dans le code) */
.footer-socials a[aria-label="Facebook"] i {
 color: var(--footerTexte-color);
}
/* Instagram */
.footer-socials a[aria-label="Instagram"] i:hover {
  color: #E1306C;
}

/* Facebook (tu as mis facebook-f dans le code) */
.footer-socials a[aria-label="Facebook"] i:hover {
  color: #1877F2;
}

/* =========================
   Bottom bar
========================= */

.footer-bottom {
    border-top: 1px solid var(--footerTexte-color);;
    padding: 1.5rem 1rem;
     display: flex;
    flex-direction: column;
}

.footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom li {
    position: relative;
}

.footer-bottom li:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: var(--marron-color);
}

.footer-bottom a {
    text-decoration: none;
     color: var(--marron-color);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
     color: var(--orange-color);
}

/* ≥ 576px */
@media (min-width: 900px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
@media (max-width: 544px) {
    .footer-bottom li:not(:first-child)::before {
        display: none;
    }
    .footer-bottom ul {
    gap: 0.5rem;
}
}
@media (max-width: 768px) {

  /* Instagram */
  .footer-socials a[aria-label="Instagram"] i {
    color: #E1306C;
  }

  /* Facebook */
  .footer-socials a[aria-label="Facebook"] i {
    color: #1877F2;
  }
   /* Websitecreation */
  .site-footer p a.color-site {
    color: var(--orange-color);
  }

}
