/* ============================================
   FOOTER – SMEG 70–80 PREMIUM (HTML ADAPTÉ)
============================================ */

.footer-wrapper,
footer {
  position: relative;
  margin-top: 6rem;
  padding: 2.5rem 1.5rem 1.5rem;
  background: transparent;
  color: #4a2600;
  overflow: hidden;
  text-align: center;
}

/* Coque plastique beige */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;

  background: radial-gradient(
    ellipse at center,
    #fff6df 0%,
    #f8ddb0 45%,
    #ebc58c 75%,
    #d4a468 100%
  );

  
  border: 2px solid #7a3e00;

  box-shadow:
    0 -16px 34px rgba(0,0,0,0.18),
    inset 0 0 0 2px rgba(255,245,220,0.9),
    inset 0 8px 14px rgba(255,255,255,0.55),
    inset 0 -8px 12px rgba(0,0,0,0.12),
    inset 0 0 0 4px rgba(122,62,0,0.22);

  z-index: 0;
}

/* Conteneur principal */
.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* ======================
   NEWSLETTER
====================== */

.footer-newsletter {
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 100%;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

.footer-newsletter h5 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b3500;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 160px;
  max-width: 280px;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  border: 2px solid #7a3e00;
  background: #fffdf6;
  font-size: 0.9rem;
  color: #4a2600;
}

.newsletter-input::placeholder {
  color: rgba(74,38,0,0.55);
}

.newsletter-input:focus {
  outline: none;
  border-color: #b85a00;
  box-shadow: 0 0 8px rgba(184,90,0,0.25);
}

/* Bouton newsletter */
.newsletter-btn {
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  border: 2px solid #7a3e00;
  background: radial-gradient(circle at top, #fffdf6, #f7e2ba);
  color: #6b3500;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;

  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.7),
    inset 0 -2px 4px rgba(0,0,0,0.08),
    0 6px 12px rgba(0,0,0,0.15);

  transition: all 0.25s ease;
}

.newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.8),
    0 8px 16px rgba(0,0,0,0.2);
}

/* ======================
   LIENS FOOTER
====================== */

.footer-links {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.footer-links a {
  color: #4a2600;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #b85a00;
}

/* ======================
   COPYRIGHT
====================== */

.footer-copyright-section {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(122,62,0,0.3);
  text-align: center;
}

.footer-copyright-section p,
.footer-copyright-text {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(74,38,0,0.7);
}


/* ============================================
   SECTION RESPONSIVE – MOBILE & TABLETTE
   ============================================ */



@media (max-width: 576px) {
  .footer-links ul {
    flex-direction: column;
    gap: 1.2rem;
  }
}
