/* 
 * Footer Styles
 */

.footer {
  background: var(--dark-color);
  color: #adb5bd;
  padding: 60px 0 30px;
}

.footer h5 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer .list-unstyled li {
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: white;
}

.footer hr {
  margin: 30px 0;
  opacity: 0.1;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
