/* =========================
   FOOTER CORRIGÉ
========================= */

.footer {
  width: 100%;
  background: #052d1f;
  padding: 80px 0 40px 0;
  color: rgba(255,255,255,0.8);
}

.footer-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 50px;
  text-align: left; /* IMPORTANT */
}

/* TITRES */

.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: white;
}

/* LISTES */

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-left: 0px;
  margin-bottom: 8px;
}

.footer a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: 0.3s ease;
}

.footer a:hover {
  color: var(--green-light);
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;

  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start; /* <-- au lieu de center */
  text-align: left; /* <-- au lieu de center */
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

/* FOOTER BRAND */

.footer-brand-name {
  font-size: 2.5rem; /* plus gros */
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.footer-brand-name .brand-dot {
  color: var(--green-light);
}


/* Desktop */

@media (min-width: 768px) {

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}
