/**
 * @file
 * Footer styles for AllData React theme.
 */

/* Footer region */
.region-footer {
  background: #1a1a1a;
  color: #fff;
  margin-top: 4rem;
}

.site-footer {
  padding: 3rem 0 1rem;
}

.site-footer .container {
  max-width: 1400px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
}

.footer-column p {
  color: #999;
  line-height: 1.6;
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #2196f3;
}

.footer-about p {
  font-size: 0.95rem;
}

.contact-info li {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-info strong {
  color: #fff;
  display: inline-block;
  min-width: 60px;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #2196f3;
}

.footer-legal .separator {
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}
