/* ===== Base Footer Styles ===== */
footer {
  background-color: #333;
  padding: 2rem 1rem;
  font-family: sans-serif;
  color: #FF6B00;
}

.footer-centered {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-wrap {
  max-width: 300px;
  flex: 1;
   top: -100px;
}

.footer-logo-wrap img {
  max-width: 100%;
  height: auto;
}

.footer-logo-wrap p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: white;
    position: relative;
    top: -10px;

}

.footer-columns-group {
  display: flex;
  justify-content: center;     /* <-- This centers the 3 menus */
  align-items: flex-start;
  gap: 2rem;                   /* Adjust gap as needed */
  flex-wrap: wrap;
  text-align: left;
  margin: 0 auto;              /* Ensures it centers inside parent */
    transform: translateX(-75px); /* ⬅️ shift left */

}

.footer-column {
  flex: 0 1 auto;                /* prevent full width stretch */
  margin: 0;                     /* no margin between columns */
  padding: 0 0.5rem;             /* small internal spacing */
  min-width: 100px;              /* allows wrapping if needed */
}

.footer-column h4 {
  margin-bottom: 0.5rem;
}

.footer-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li {
  margin: 0.3rem 0;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
  display: inline-block; /* Needed for transform to work properly */
}

.footer-column a:hover {
  transform: scale(1.1); /* Slight magnification */
    color: #FFA64D;
}

/* ===== Footer Bottom Bar ===== */
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 10px 10px 5px; /* reduce top and bottom padding */
  font-size: 12px;
  color: #aaa;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 5px; /* optional: shrink bottom gap too */
  line-height: 1.2; /* tighter line spacing */
}

.wheres-your-business {
  color: #FF6B00;
}
.wheres-your-business:hover {
  color: #FFA64D;
}
