.main-footer {
  background: #0a0a0a;
  color: #bbb;
  padding: 80px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 100px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 2fr;
  gap: 50px 40px;
}

/* ===================== MARQUE ===================== */
.brand-col .logo-text {
  font-size: 1.45rem;
  letter-spacing: 2px;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  line-height: 1.65;
  font-size: 0.93rem;
  max-width: 320px;
  margin-bottom: 20px;
}

.tmdb-credit {
  font-size: 0.8rem;
  color: #666;
}

/* ===================== COLONNES ===================== */
.footer-col h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #e50914;
}

/* ===================== NEWSLETTER ===================== */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: white;
}

.newsletter-form button {
  padding: 15px 32px;
  background: linear-gradient(90deg, #e50914, #ff2d3d);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}


/* ===================== RÉSEAUX SOCIAUX ===================== */
.social-section {
  margin-top: 24px;
}

.social-section h4 {
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  font-size: 1.65rem;
  color: #bbb;
  transition: all 0.25s ease;
  line-height: 1;
}

.social-icons a:hover {
  color: #e50914;
  transform: scale(1.2);
}

/* ===================== BARRE DU BAS ===================== */

.footer-bottom {
  max-width: 900px;
  margin: 60px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: #666;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
}
.footer-legal-links a {
  margin-right: 18px;
  color: #666;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #aaa;
}

.heart {
  color: #e50914;
}

.footer-legal-links a.highlight-link {
  color: #e50914;
  font-weight: 600;
  margin-left: 8px;
}

.footer-legal-links a.highlight-link:hover {
  color: #ff2d3d;
  text-decoration: underline;
}

/* Espacement global des liens */
.footer-legal-links a {
  margin-right: 16px;
}
/* ===================== BARRE PARTENAIRES (dans le footer) ===================== */
.partners-bar {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.partners-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 20px;
}

.partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
  white-space: nowrap;
  margin-right: 20px;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.partners-logos img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(60%);
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .main-footer {
    padding: 60px 16px 36px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
