/* Footer Styles */
.main-footer {
  background: #333;
  color: #fff;
  padding: 60px 0 100px;
  position: relative;
}

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #9f7e5e;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #9f7e5e;
  padding-left: 8px;
}

.contact-info-footer {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.contact-info-footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.contact-info-footer a:hover {
  color: #9f7e5e;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #9f7e5e;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.developer-credit {
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.developer-credit a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-credit a:hover {
  color: #9f7e5e;
}

@media (max-width: 768px) {
  .footer-col {
      text-align: center;
      margin-bottom: 30px;
  }
  
  .footer-links {
      padding-left: 0;
  }
  
  .footer-links li {
      display: block;
  }
  
  .contact-info-footer {
      text-align: center;
  }
  
  .social-links {
      justify-content: center;
  }
  
  .footer-logo {
      margin-left: auto;
      margin-right: auto;
  }
  
  .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
  }
}