/**
 * Lumière — Footer (مطابق لـ Footer.tsx)
 */

.lumiere-footer {
  background: var(--lm-footer, #1E1E1E);
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 6rem;
}

.lumiere-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .lumiere-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .lumiere-footer__grid {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.lumiere-footer__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #fff;
}

.lumiere-footer__brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lm-primary), #d4a96a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lumiere-footer__brand-name {
  font-family: "Scheherazade New", "Amiri", serif;
 font-size: 1.125rem;
  font-weight: 700;
}

.lumiere-footer__tagline {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 22rem;
}

.lumiere-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lumiere-footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lumiere-footer__social-link:hover {
  border-color: var(--lm-primary);
  color: #d4a96a;
}

.lumiere-footer__social-link svg {
  width: 18px;
  height: 18px;
}

.lumiere-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.lumiere-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lumiere-footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lumiere-footer__links a:hover {
  color: #fff;
}

.lumiere-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lumiere-footer__bottom {
    flex-direction: row;
  }
}

.lumiere-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.lumiere-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lumiere-footer__bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lumiere-footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}
