/*
 * footer.css — Website Marrakech
 * Styles for the Elementor Theme Builder footer template.
 * Loaded on ALL pages.
 */

.wmc-footer {
  background: #040409;
  padding: 70px 5vw 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: var(--wmc-z-base);
}

.wmc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.wmc-footer-brand p {
  font-size: 0.83rem;
  color: var(--wmc-white-muted);
  line-height: 1.75;
  max-width: 260px;
}

.wmc-footer-col h4 {
  font-family: var(--wmc-font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
}

.wmc-footer-col ul { list-style: none; padding: 0; }
.wmc-footer-col li { margin-bottom: 0.55rem; }
.wmc-footer-col a {
  font-size: 0.86rem;
  color: rgba(245, 245, 240, 0.48);
  text-decoration: none;
  transition: color var(--wmc-transition-fast);
}
.wmc-footer-col a:hover { color: var(--wmc-white); }

.wmc-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wmc-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
  margin: 0;
}

/* ── SOCIAL LINKS */
.wmc-social { display: flex; gap: 0.8rem; }
.wmc-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wmc-radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all var(--wmc-transition-fast);
}
.wmc-social a:hover {
  border-color: var(--wmc-electric);
  color: var(--wmc-electric);
  background: rgba(255, 59, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .wmc-footer-grid { grid-template-columns: 1fr 1fr; }
  .wmc-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
