/* Valeurs par défaut (thème garage : rouge/vert) */
.footer-principale {
  --footer-bg: #1f2937;
  --footer-border: #ff3131;
  --footer-title: #ff3131;
  --footer-text: #ffffff;
  --footer-company-name: #98d129;
  --footer-hr: rgba(255, 255, 255, 0.2);
  --footer-link-hover: #ff3131;

  background-color: var(--footer-bg);
  padding: 3rem 1rem 1.5rem;
  color: var(--footer-text);
  border-top: 3px solid var(--footer-border);
}

.footer-principale .container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.column-footer {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.25rem;
  font-family: 'Arial Black', 'Franklin Gothic Bold', sans-serif;
  font-weight: 700;
  color: var(--footer-title);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.item-footer {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-content {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-content .company-name {
  font-weight: 700;
  color: var(--footer-company-name);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-content hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid var(--footer-hr);
}

.link-footer {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.link-footer:hover {
  color: var(--footer-link-hover);
}

hr.item-footer {
  border: none;
  border-top: 1px solid var(--footer-hr);
  margin: 0.5rem 0 1rem 0;
}