/* Footer Styles */

footer {
  background-color: var(--footer-dark);
  color: white;
  padding: 4rem 0 0;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  background-color: var(--footer-darker);
  padding: 1.5rem 0;
  margin-top: 3rem;
  width: 100%;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-bottom-content a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom-content i.fa-heart {
  color: #e25555;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
