/* ==============================
   FOOTER STYLING
============================== */

.site-footer {
  background: #DAC0A3; /* Beige background */
  color: #000;         /* Black text */
  font-family: Arial, sans-serif;
  padding: 40px 5%;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
}

/* Footer Links Layout */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
}

/* Social Links Column */
.footer-col ul.social-links li a i {
  margin-right: 10px;
}

/* Contact Column */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col p a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col p a:hover {
  color: #FFFFFF;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.2);
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  text-align: center;
}

.footer-bottom .divider {
  color: #000;
  font-weight: bold;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* Footer Bottom Social Icons */
.footer-bottom .social-icons a {
  margin-right: 10px;
  color: #000;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-bottom .social-icons a:hover {
  color: #FFFFFF;
}

/* ==============================
   Responsive Design
============================== */
@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 20px;
  }
}
