/* =====================================================
   Footer — footer.css  v1
   Footer global Quantic Lift
   Fond : #1A2422 (plus sombre que §8 #2A3836)
   Police : Rajdhani uniquement
   Palette : --dark #2A3836 / --footer-bg #1A2422
             --sage #4A6B61 / --light #CAD5D3
===================================================== */

/* ─── Footer wrapper ────────────────────────────────── */
#ql-footer {
  background: #1A2422;
  position: relative;
  overflow: hidden;
  font-family: 'Rajdhani', sans-serif;
  color: rgba(202, 213, 211, 0.6);
}

/* Trait décoratif haut — séparation avec §8 */
#ql-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(202, 213, 211, 0.15);
  pointer-events: none;
}

/* ─── Inner — deux colonnes ─────────────────────────── */
.qlf-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 4.5rem 2.4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

/* ─── Colonne info (gauche) ─────────────────────────── */
.qlf-col--info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* Logo */
.qlf-logo {
  display: inline-block;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.qlf-logo:hover {
  opacity: 1;
}

.qlf-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* Adresse */
.qlf-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.82rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(202, 213, 211, 0.5);
}

.qlf-address-name {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(202, 213, 211, 0.7);
  margin-bottom: 0.3rem;
}

/* Contact */
.qlf-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.qlf-tel {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--light, #CAD5D3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.qlf-tel:hover {
  color: #FFFFFF;
}

/* ─── Colonne nav (droite) ──────────────────────────── */
.qlf-col--nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  padding-top: 0.5rem;
}

/* Liens légaux */
.qlf-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.qlf-legal a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(202, 213, 211, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.qlf-legal a:hover {
  color: var(--sage, #4A6B61);
}

/* Instagram */
.qlf-social {
  display: flex;
  align-items: center;
}

.qlf-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(202, 213, 211, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.qlf-ig:hover {
  color: var(--sage, #4A6B61);
}

.qlf-ig svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.qlf-ig span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ─── Barre basse — copyright + crédit ────────────────── */
.qlf-bottom {
  border-top: 1px solid rgba(202, 213, 211, 0.08);
  padding: 1.4rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qlf-copy {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(202, 213, 211, 0.3);
  margin: 0;
}

/* Branding dans le copyright */
.qlf-copy .ql-bold {
  font-weight: 700;
}

.qlf-copy .ql-light {
  font-weight: 300;
}

.qlf-copy .ql-tm {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
}

/* ─── Crédit — logo Cloé Chapelier ────────────────── */
.qlf-credit {
  display: inline-flex;
  align-items: center;
  opacity: 0.3;
  transition: opacity 0.25s;
  flex-shrink: 0;
}
.qlf-credit:hover {
  opacity: 0.6;
}
.qlf-credit-logo {
  height: 14px;
  width: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════
   MOBILE ≤768px
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .qlf-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 3.5rem 1.8rem 2.5rem;
  }

  .qlf-col--info {
    align-items: center;
  }

  .qlf-address {
    align-items: center;
  }

  .qlf-col--nav {
    align-items: center;
    width: 100%;
  }

  .qlf-legal {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.2rem;
  }

  /* Séparateurs entre liens sur mobile */
  .qlf-legal a + a::before {
    content: '·';
    margin-right: 1.2rem;
    color: rgba(202, 213, 211, 0.2);
  }

  .qlf-bottom {
    padding: 1.2rem 1.8rem;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .qlf-copy {
    font-size: 0.65rem;
  }

  .qlf-credit-logo {
    height: 12px;
  }
}
