/* ═══════════════════════════════════════════════
   WEBSAIT — Footer CSS global
   Fichier : assets/css/footer.css
   Chargé automatiquement par footer.js
   ═══════════════════════════════════════════════ */
/* FOOTER */
footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.25s; }
.footer-links a:hover { color: var(--orange-bg); }

/* ── FOOTER 1 — Navigation ── */
.footer-nav {
  background: #2C2920;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
  white-space: nowrap;
}
.footer-nav a:hover { color: #E8A070; }

/* ── FOOTER 2 — Coordonnées & légales ── */
.footer-info {
  background: #1A1815;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
}
.footer-info-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.footer-logo-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #C8581A;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 0.95rem; color: #fff;
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.footer-address {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.95;
}
.footer-address a { color: #E8A070; text-decoration: none; }
.footer-address a:hover { text-decoration: underline; }
.footer-legal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #E8A070;
  margin-bottom: 1rem;
}
.footer-legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-legal-list a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s;
}
.footer-legal-list a:hover { color: #E8A070; }
.footer-legal-list a::before {
  content: '●';
  color: #C8581A;
  font-size: 0.4rem;
  flex-shrink: 0;
}

/* ── FOOTER 3 — Copyright ── */
.footer-copy {
  background: #111009;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.1rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  justify-content: center;
}
.footer-copy p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.footer-copy a {
  color: #E8A070;
  text-decoration: none;
}
.footer-copy a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .footer-info-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { gap: 1rem; }
}
