/* footer is always visible */
.site-footer {
  visibility: visible;
}

.footer {
  background: linear-gradient(to bottom, #001726bc, #002f4ee1);       /* full-width background */
  color: #fff;
  padding: 10px 0;              /* vertical padding only */
  text-align: center;
  font-family: 'Nunito', 'Arial', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5pt;
  width: 100%;                  /* full viewport width */
}

.footer-container {
  max-width: 1200px;            /* constrain content */
  margin: 0 auto;               /* center content */
  display: flex;
  flex-direction: column;       /* stack on mobile */
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  /* padding: 0 20px;              optional horizontal padding */
  width: 100%;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 16px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #12cef3ff;
}

.footer-social {
  margin-bottom: 15px;
}

.footer-links {
  margin-top: 8px;
  /* margin-bottom: 10px; */
}

/* Social icons */
.footer-social a {
  font-size: 24px;
  margin: 0 8px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  display: inline-block;
  text-align: center;
  border-radius: 20%;
  transition: all 0.3s;
}

.footer-social a:hover {
  background-color: #00c2d8ff;
  /* color: #111; */
}

.footer-copy {
  font-size: 12px;
  color: #e6e6e6;
}

.footer-copy p {
  font-size: 12px;
  color:  #e6e6e6;
}

/* the x */
.social-icon { 
    width: 30px; 
    height: 30px; 
    vertical-align: middle; 
    margin-top: -5px; /* pushes it upward */
    filter: invert(100%); /* make it white like other icons */ 
}



/* Responsive - mobile */
@media (max-width: 768px) {
  .footer a {
    font-size: 16px;
    margin: 0 16px;
  }

  .footer-social a {
    font-size: 21px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin: 0 8px;
  }

  .footer-links,
  .footer-social {
    display: flex;
    justify-content: center; /* spread items evenly */
    flex-wrap: wrap;
  }
}

/* Desktop layout: side by side */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    /*max-width: 500px; /* optional desktop width */
    margin: 0 auto 15px auto;
  }
}
