/* footer */
/* Footer Styling */
.footer {
  background-color: #2e2e1f;
  color: #ffffff;
  padding: 50px 20px 30px;
  font-family: 'Lato', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  color: #c77b30;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #c77b30;
  text-decoration: underline;
}

.tagline {
  color: #c77b30;
  font-size: 16px;
  margin-top: 5px;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c77b30;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #e29e4f;
  transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
  color: #ddd;
}

.footer-bottom .disclaimer {
  margin-top: 5px;
  font-size: 13px;
  color: #bbb;
}

/* Responsive Footer */