/* Copyright 2025-2026 Renofy Ltd. All rights reserved. */
/* === Footer === */
/* Mobile-first styles */
.footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  padding: 1rem;
  gap: 0.75rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  margin: 1rem;
}

/* === Footer Left (Location/Contact/Social) === */
.footer__left {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
}

.footer__left-location,
.footer__left-contact,
.footer__left-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* === Footer Right (Copyright/Legal) === */
.footer__right {
  text-align: center;
}

.footer__link-separator {
  margin: 0 0.5rem;
}

.footer__link {
  font-size: var(--font-size-sm);
}

/* === Social Links === */
.footer__social-links {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  margin-top: 2px; /* Optical alignment with adjacent text */
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

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

/* === Desktop Styles === */
@media (min-width: 821px) {
  .footer {
    background-color: var(--color-white);
    grid-template-columns: auto auto;
    justify-content: space-between;
    text-align: left;
    padding: 1rem 2rem;
    gap: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--color-border);
    box-shadow: none;
  }

  .footer__left {
    justify-content: flex-start;
    gap: 2.5rem;
  }

  .footer__left-location,
  .footer__left-contact,
  .footer__left-social {
    align-items: flex-start;
    text-align: left;
  }

  .footer__right {
    text-align: right;
  }
}
