/*

.site-footer {
    border-top: 2px solid #D2B48C;
    background-color: #f5f1ec;
    color: #7a5040; 
    padding: 2rem; 
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
    flex: 1; 
    min-width: 200px;
    margin-bottom: 1rem;
  }
  
  .footer-about h3,
  .footer-links h4,
  .footer-contact h4 { 
    font-size: 25px; 
    color: #7a5040; 
    margin-bottom: 0.5rem;
  }
  
  .footer-about p,
  .footer-contact p {
    font-size: 18px;
    color: #7a5040;
  }
  
  .footer-social-icons {
    justify-content: center; 
    font-size: 30px;
    margin-top: 1rem;
    display: flex;
  }
  
  .footer-social-icons a {
    text-decoration: none;
    color: #7a5040; 
    margin-right: 10px; 
    display: flex;
    align-items: center;
  }

  .footer-social-icons i{
    text-align: center;
  }
  
  .footer-social-icons a:hover,
  .footer-social-icons a:focus {
    color: #50372c;
  }
  
  .footer-links ul {
    list-style-type: none; 
    padding: 0;
    text-align: center;
  }
  
  .footer-links ul li a {
    font-size: 18px;
    text-decoration: none;
    color: #7a5040;
    transition: color 0.3s ease-in-out;
  }
  
  .footer-links ul li a:hover,
  .footer-links ul li a:focus {
    color: #50372c;
  }
  
  .footer-contact p {
    margin: 0.25rem 0;
  }
  
  @media (max-width: 768px) {
    .site-footer {
      flex-direction: column;
    }
    
    .social-icons {
      justify-content: center; 
    }
  
    .social-icons a {
      margin-right: 0.5rem;
    }
  }
  
  .footer-bottom {
    text-align: center;
    color: #7a5040;
    font-size: 16px; 
    border-top: 1px solid #D2B48C;
    margin-top: 1rem; 
    width: 100%;
}



*/

.site-footer {
  border-top: 2px solid #a8a397; /* Updated to a muted taupe-gray */
  background-color: #ebe8e1; /* Updated to a lighter gray */
  color: #605e5c; /* Updated text color to a softer charcoal gray */
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-contact {
  text-align: center;
  flex: 1;
  min-width: 200px;
  margin-bottom: 1rem;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 { 
  font-size: 25px;
  color: #6e675f; /* Updated to a warm gray */
  margin-bottom: 0.5rem;
}

.footer-about p,
.footer-contact p {
  font-size: 18px;
  color: #6e675f; /* Consistent warm gray for readability */
}

.footer-social-icons {
  justify-content: center;
  font-size: 30px;
  margin-top: 1rem;
  display: flex;
}

.footer-social-icons a {
  text-decoration: none;
  color: #6e675f; /* Updated color for social icons */
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.footer-social-icons i{
  text-align: center;
}

.footer-social-icons a:hover,
.footer-social-icons a:focus {
  color: #504a43; /* Darker gray for hover/focus states */
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.footer-links ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #6e675f; /* Warm gray for links */
  transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover,
.footer-links ul li a:focus {
  color: #504a43; /* Darker shade for hover/focus states */
}

.footer-contact p {
  margin: 0.25rem 0;
}

@media (max-width: 768px) {
  .site-footer {
      flex-direction: column; /* Stack footer sections vertically on small screens */
  }

  .social-icons {
      justify-content: center; /* Center social icons on small screens */
  }

  .social-icons a {
      margin-right: 0.5rem; /* Smaller space between icons on mobile */
  }
}

.footer-bottom {
  text-align: center; /* Center align the text */
  color: #6e675f; /* Consistent gray color across the footer */
  font-size: 16px; /* Adjust font size as needed */
  border-top: 1px solid #a8a397; /* Muted taupe-gray border */
  margin-top: 1rem; /* Space between main footer content and this line */
  width: 100%;
}
