/* ===================================================
   COCO FÉE DU MÉNAGE — FOOTER CSS
   =================================================== */

#footer {
  background: linear-gradient(160deg, #0f2035 0%, #1a2744 60%, #0d1b2e 100%);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
}

/* Decorative blobs */
#footer::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,188,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top { padding: 4rem 2rem 3rem; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

/* Brand column */
.footer-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-logo span:first-child { font-size: 1.3rem; }
.footer-logo strong { color: var(--primary-light); }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,188,212,0.4);
}

/* Nav columns */
.footer-links h4,
.footer-contact h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-links ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.25s ease;
  display: block;
  padding: 0.1rem 0;
}

.footer-links ul a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

/* Contact column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-list li i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 16px;
  min-width: 16px;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover { color: var(--primary-light); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 2rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover { color: var(--primary-light); }
