/* ==================================================
   FOOTER — ALSACE.CO (lignes verticales + horizontales)
   ================================================== */

.site-footer{
  background:#0b1220;                 /* même fond que widgets */
  color: rgba(234,240,255,.90);
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Ligne horizontale top comme sur l'image */
.site-footer{
  position: relative;
}
.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:32px;
  right:32px;
  height:1px;
  background: rgba(255,255,255,.12);
  pointer-events:none;
}

/* Container */
.footer-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 32px 18px;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 0; /* important pour que les lignes tombent juste */
}

/* Colonnes */
.footer-col{
  padding: 0 28px;
  position: relative;
  min-width: 0;
}

/* LIGNES VERTICALES (dégradé léger) */
.footer-col:not(:last-child)::after{
  content:"";
  position:absolute;
  top: 6px;
  bottom: 6px;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,.14),
    transparent
  );
  opacity: .9;
  pointer-events:none;
}

/* Titres */
.footer-title{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: rgba(234,240,255,.95);
}

.footer-logo{
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Text */
.footer-text{
  color: rgba(234,240,255,.75);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
}

/* Brand contact */
.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
}

.footer-contact li{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(234,240,255,.80);
  font-size: 14px;
}

.footer-contact a{
  color: rgba(234,240,255,.90);
  text-decoration:none;
}
.footer-contact a:hover{ text-decoration: underline; }

.fi{
  width: 30px;
  height: 30px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

/* Lists */
.footer-list,
.footer-cols-2 ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.footer-cols-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer-inner a{
  color: rgba(234,240,255,.80);
  text-decoration:none;
  font-size: 14px;
}
.footer-inner a:hover{ color:#fff; }

/* Newsletter header */
.footer-news-head{
  margin-bottom: 8px;
}
.footer-news-small{
  font-size: 14px;
  font-weight: 800;
  color: rgba(234,240,255,.78);
}
.footer-news-big{
  font-size: 22px;
  font-weight: 900;
  margin-top: 2px;
}

/* Form */
.footer-form{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer-form input{
  height: 44px;
  border-radius: 10px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:#fff;
  padding: 0 12px;
  outline:none;
}
.footer-form input::placeholder{ color: rgba(234,240,255,.55); }

.footer-form button{
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 0;
  background: #e53935;
  color: #fff;
  font-weight: 900;
  cursor:pointer;
}
.footer-form button:hover{ filter: brightness(1.05); }

/* Social (en haut à droite du bloc newsletter) */
.footer-social{
  display:flex;
  gap: 10px;
  justify-content:flex-end;
  margin-top: 14px;
}

.social-btn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff;
  text-decoration:none;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 14px;
}
.social-btn:hover{
  border-color: rgba(255,255,255,.35);
}

/* Bottom (ligne horizontale basse) */
.footer-bottom{
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 32px;
  font-size: 13px;
  color: rgba(234,240,255,.65);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px){
  .site-footer::before{ left:18px; right:18px; }

  .footer-inner{
    grid-template-columns: 1fr 1fr;
    padding: 26px 18px 14px;
  }

  .footer-col{
    padding: 0 18px;
  }

  .footer-col::after{ display:none; } /* lignes verticales off sur tablette */
  .footer-social{ justify-content:flex-start; }
}

@media (max-width: 640px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-form{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    padding: 14px 18px;
  }
}
