/* Footer styles */
.site-footer .container {
  display: flex;            /* makes children sit in a row */
  width: 100%;
  flex-wrap: wrap;          /* allows wrapping on small screens */
  justify-content: space-between; /* spread columns evenly */
  gap: 20px;                /* space between columns */
}


.site-footer {
  display: flex;  
  width: 100%;
  justify-content: space-between;
  background-color: #eee; /* light gray */
  padding: 40px;
  font-family: 'Inter', sans-serif;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1 1 200px;
}

.footer-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.9;
  margin: 0;
  text-align: left;
}

.footer-center,
.footer-right {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-section h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.footer-section p, .footer-section a {
  margin: 0;
  padding-bottom: 6px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: auto;
  font-size: 13px;
  color: #555;
}

.footer-bottom p {
  margin: 2px 0;  /* tiny gap instead of full default margin */
  line-height: 1.4;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;  /* stack sections vertically */
    align-items: center;     /* center the content */
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: unset;
    min-width: unset;
    width: 100%; 
    text-align: center;
    margin-bottom: 20px;    /* spacing between stacked sections */
  }
  .footer-title {
    display: inline-block; /* keeps <br> text centered */
    text-align: center;
  }
   .footer-section h3 {
    font-size: 0.9rem;
    text-align: center;
   }

  .footer-section p,
  .footer-section a,
  .footer-bottom {
    font-size: 0.8rem;
    text-align: center;
  }
}

