/* ═══════════════════════════════════════════════════════════════
   ACL Footer — acl-footer.css
   Réplique exacte du footer www.acl.lu
═══════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,200;0,400;0,600;1,400&display=swap");

@font-face {
  font-family: "FaricyNew";
  src: url("../Ressources/WOFF2/FaricyNew-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "FaricyNew";
  src: url("../Ressources/WOFF2/FaricyNewBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "FaricyNew";
  src: url("../Ressources/WOFF2/FaricyNewMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "FaricyNew";
  src: url("../Ressources/WOFF2/FaricyNewRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FaricyNew";
  src: url("../Ressources/WOFF2/FaricyNewLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #f5f5f5;
}

/* ─── Variables ─── */
:root {
  --acl-yellow: #fedb00;
  --acl-dark: #231f20;
  --acl-muted: rgba(35, 31, 32, 0.45);
  --acl-divider: rgba(35, 31, 32, 0.15);
  --acl-gray-1: #4d4d4d;
  --acl-gray-4: #e6e6e6;
}

/* ─── Conteneur centré ─── */
.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SUPÉRIEURE — Je souhaite + colonnes nav
═══════════════════════════════════════════════════════════════ */

.footer-top {
  background: var(--acl-yellow);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 360px 1px 1fr;
  min-height: 340px;
}

/* ── Panneau gauche ── */
.footer-left {
  padding: 52px 56px 52px 0;
}

.footer-label {
  font-family: "Albert Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acl-muted);
  margin-bottom: 20px;
}

.footer-links-primary {
  list-style: none;
}

.footer-links-primary li:not(:last-child) {
  border-bottom: 1px solid var(--acl-divider);
}

.footer-links-primary a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  text-decoration: none;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--acl-dark);
  transition: opacity 0.2s ease;
}

.footer-links-primary a::after {
  content: "›";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
}

.footer-links-primary a:hover {
  opacity: 0.6;
}

/* ── Séparateur vertical ── */
.footer-vdivider {
  background: var(--acl-divider);
  align-self: stretch;
  margin: 40px 0;
}

/* ── Colonnes droites ── */
.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  padding: 52px 0 52px 60px;
}

.footer-col-label {
  font-family: "Albert Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acl-muted);
  margin-bottom: 22px;
}

.footer-col-links {
  list-style: none;
}

.footer-col-links li {
  margin-bottom: 14px;
}

.footer-col-links a {
  text-decoration: none;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--acl-dark);
  transition: opacity 0.2s ease;
}

.footer-col-links a:hover {
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION INFÉRIEURE — Logo + adresses
═══════════════════════════════════════════════════════════════ */

.footer-info {
  background: var(--acl-yellow);
  border-top: 1px solid var(--acl-divider);
}

.footer-info-grid {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 1fr;
  column-gap: 48px;
  padding-top: 48px;
  padding-bottom: 56px;
}

/* ── Logo ACL ── */
.footer-logo-col {
  display: flex;
  align-items: flex-start;
}

.footer-logo-link {
  display: block;
  line-height: 1;
}

.footer-logo-svg {
  width: 120px;
  height: auto;
  display: block;
}

/* ── Blocs d'adresse ── */
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-address-name {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--acl-dark);
  margin-bottom: 2px;
}

.footer-address p {
  font-family: "Albert Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--acl-dark);
  line-height: 1.65;
}

.footer-address a {
  font-family: "Albert Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--acl-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.footer-address a:hover {
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   BARRE LÉGALE
═══════════════════════════════════════════════════════════════ */

.footer-legal {
  background: #ffffff;
  border-top: 1px solid var(--acl-gray-4);
}

.footer-legal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-copyright {
  font-family: "Albert Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--acl-gray-1);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.footer-legal-links a {
  font-family: "Albert Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--acl-gray-1);
  text-decoration: none;
}

.footer-legal-links a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
