/**
 * ÔKeyHouse — Footer commun à toutes les pages
 * Mêmes styles que celui de /equipement.html mais autonome :
 * couleurs, polices et media queries définies directement ici.
 */

/* Variables locales au footer (pour éviter les conflits avec celles d'autres pages) */
.okh-footer {
  --okh-navy: #1a2540;
  --okh-gold: #b8963e;
  --okh-gold-light: #e8d5a3;
}

/* Wrapper du footer */
.okh-footer {
  margin: 60px auto 0;
  max-width: 1280px;
  background: var(--okh-navy);
  border-radius: 12px;
  overflow: hidden;
  color: #ccc;
  font-family: 'DM Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.okh-footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.okh-footer-col {
  flex: 1;
  min-width: 160px;
}

.okh-footer-brand p {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #bbb;
}
.okh-footer-brand a {
  color: var(--okh-gold-light);
  text-decoration: none;
}
.okh-footer-brand a:hover {
  color: var(--okh-gold);
}

.okh-footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--okh-gold-light);
  letter-spacing: .5px;
}
.okh-footer-logo-text span {
  color: var(--okh-gold);
}

.okh-footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}
.okh-footer-social a {
  color: #aaa;
  transition: color .2s;
  text-decoration: none;
}
.okh-footer-social a:hover {
  color: var(--okh-gold);
}

.okh-footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--okh-gold);
  margin: 0 0 14px;
}

.okh-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.okh-footer-col ul li {
  margin-bottom: 7px;
}
.okh-footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: #bbb;
  text-decoration: none;
  transition: color .2s;
}
.okh-footer-col ul li a:hover {
  color: var(--okh-gold-light);
}
.okh-footer-col p {
  color: #bbb;
  margin: 0 0 8px;
}

.okh-footer-insta-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  border: 1px solid var(--okh-gold);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--okh-gold-light);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.okh-footer-insta-btn:hover {
  background: var(--okh-gold);
  color: var(--okh-navy);
}

.okh-footer-bottom {
  padding: 16px 36px;
  font-size: 11.5px;
  font-weight: 300;
  color: #888;
  text-align: center;
  line-height: 1.8;
}
.okh-footer-bottom a {
  color: #aaa;
  text-decoration: none;
}
.okh-footer-bottom a:hover {
  color: var(--okh-gold-light);
}

/* Mobile */
@media (max-width: 768px) {
  .okh-footer { margin: 40px 12px 0; border-radius: 10px; }
  .okh-footer-main { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .okh-footer-col { min-width: unset; width: 100%; }
  .okh-footer-bottom { padding: 14px 20px; font-size: 10.5px; }
}
