@import "root.css";

.footer {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin-inline: auto;
}

.footer-brand {
  height: 150px;
  width: auto;
}

.footer-desc {
  color: var(--text-inverse);
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-links h5,
.footer-contact h5 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--text-inverse);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--color-accent);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.512);
}

.footer-copy p {
  color: var(--text-inverse);
  opacity: 0.8;
  margin: 0;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-links a {
    margin: 0 0.5rem;
  }
}
