/* ===== FOOTER GLOBAL ===== */

.site-footer {
  width: calc(100% - 30px); /* ⭐ ultra propre */
  margin: 0 15px 15px 15px;
  background: #001f3f;
  border: 1px solid #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #cfd6dd;
  display: block;
  flex-shrink: 0;
}
/* ===== CONTENEUR INTERNE ALIGNÉ ===== */

.footer-inner {
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr 2fr 1fr; /* ⭐ EXACT comme .dashboard */
  align-items: stretch;
}


/* ===== ZONES ===== */

.footer-zone {
  padding: 6px 12px;
  display: flex;
  align-items: center;
}

/* séparateurs verticaux */
.footer-center {
  justify-content: center;
  flex-direction: column;
  text-align: center;

  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
/* ===== TITRE CENTRE ===== */

.footer-title {
  color: var(--neon-green);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
}

/* ===== ANNÉE PLUS FINE ===== */

.footer-year {
  font-weight: 300;   /* ⭐ comme demandé */
  opacity: 0.9;
}

.footer-left {
  justify-content: flex-start;
  gap: 12px;
}
.footer-follow {
  font-size: 12px;
  opacity: 0.85;
  white-space: nowrap;
}
.footer-brand {
  color: #00ff66 !important;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 255, 102, 0.4);
}
.footer-legal-text {
  font-size: 10px;
  opacity: 0.75;
  line-height: 1.4;
  margin-top: 6px;

  white-space: normal;
  max-width: 100%;        /* ⭐ prend toute la largeur dispo */
  padding: 0 10px;        /* ⭐ évite de coller aux bords */
  text-align: center;     /* ⭐ reste centré */
}
.footer-link-inline {
  color: #00ff66;
  text-decoration: none;
  margin-left: 4px;
  opacity: 0.9;
  transition: opacity 0.2s ease, text-shadow 0.2s ease;
}

.footer-link-inline:hover {
  opacity: 1;
  text-shadow: 0 0 5px rgba(0, 255, 102, 0.4);
}
.footer-rights {
  opacity: 0.85;
}

.footer-right {
  justify-content: flex-end;
}

/* ===== ICONES ===== */

.social-icon {
  color: #cfd6dd;
  transition: all 0.2s ease;
}

.social-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== MAIL ===== */

.footer-mail {
  color: #cfd6dd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-mail:hover {
  color: #ffffff;
}
.social-feed {
  border: none;
  background: transparent;
  padding: 0;
}


/* ===== ZONES ===== */

.footer-zone {
  padding: 6px 12px;
  display: flex;
  align-items: center;
}

/* séparateurs verticaux */
.footer-center {
  justify-content: center;
  flex-direction: column;
  text-align: center;

  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
/* ===== TITRE CENTRE ===== */

.footer-title {
  color: var(--neon-green);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
}

/* ===== ANNÉE PLUS FINE ===== */

.footer-year {
  font-weight: 300;   /* ⭐ comme demandé */
  opacity: 0.9;
}

.footer-left {
  justify-content: flex-start;
  gap: 12px;
}
.footer-follow {
  font-size: 12px;
  opacity: 0.85;
  white-space: nowrap;
}
.footer-brand {
  color: #00ff66 !important;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 255, 102, 0.4);
}
.footer-legal-text {
  font-size: 10px;
  opacity: 0.75;
  line-height: 1.4;
  margin-top: 6px;

  white-space: normal;
  max-width: 100%;        /* ⭐ prend toute la largeur dispo */
  padding: 0 10px;        /* ⭐ évite de coller aux bords */
  text-align: center;     /* ⭐ reste centré */
}
.footer-link-inline {
  color: #00ff66;
  text-decoration: none;
  margin-left: 4px;
  opacity: 0.9;
  transition: opacity 0.2s ease, text-shadow 0.2s ease;
}

.footer-link-inline:hover {
  opacity: 1;
  text-shadow: 0 0 5px rgba(0, 255, 102, 0.4);
}
.footer-rights {
  opacity: 0.85;
}

.footer-right {
  justify-content: flex-end;
}

/* ===== ICONES ===== */

.social-icon {
  color: #cfd6dd;
  transition: all 0.2s ease;
}

.social-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== MAIL ===== */

.footer-mail {
  color: #cfd6dd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-mail:hover {
  color: #ffffff;
}
.social-feed {
  border: none;
  background: transparent;
  padding: 0;
}
/* ===== Footer social icons — taille uniforme ===== */

.footer-left .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-left .footer-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.social-icon:hover .footer-icon {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 4px rgba(0,255,102,0.6));
}
