/* Footer component styles */
.site-footer {
  background-color: var(--dark);
  color: var(--text);
  padding: 50px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section.contact {
  text-align: right;
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: #c0c0c0;
}

.footer-tagline {
  color: var(--text);
  margin-bottom: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--text);
  transition: var(--transition);
  padding: 10px;
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  color: #c0c0c0;
}

.contact-text {
  color: #c0c0c0;
  line-height: 1.5;
}

.contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #ffffff;
}

/* Copyright */
.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section.contact {
    text-align: center;
  }

  .footer-links-container {
    flex-direction: column;
    gap: 10px;
  }

  .footer-section {
    width: 100%;
    padding-right: 0;
  }
}
