/* --------------------------------------------
   Base footer container 
   -------------------------------------------- */
.footer-container {
  width: 100vw;
  background-color: #121212;
  box-sizing: border-box;
  padding: 2vh 1vh;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'Sofia Pro', sans-serif;
}

/* --------------------------------------------
   Inner content grid (3 equal columns on desktop,
   2 columns on tablet, 1 column on mobile)
   -------------------------------------------- */
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vh;               /* space between columns & rows */
  max-width: 100%;       /* optional cap for very wide screens */
  margin: 0 auto;
  align-items: start;
  justify-items: center;
}

/* --------------------------------------------
   Column 1: Logo 
   -------------------------------------------- */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-image {
  width: 100%;     /* fill its column’s width */
  /* you can add a max-width if you don’t want it extremely large:
     max-width: 200px; 
  */
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align on desktop */
}

.footer-heading {
  font-size: 3.25vh; /* ~20px */
  margin-bottom: 0.5vh;
  font-weight: 600;
  color: #ffffff;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer-nav ul li {
  margin-bottom: 0.5vh;
}

.footer-nav ul li a {
  color: #969696;
  text-decoration: none;
  font-size: 2.5vh; /* ~16px */
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.footer-nav ul li a:hover {
  color: #ffffff;
}

/* --------------------------------------------
   Column 3: Social Media 
   -------------------------------------------- */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align on desktop */
}

.social-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.social-nav ul li {
  margin-bottom: 0.5vh;
}

.social-nav ul li a {
  color: #969696;
  text-decoration: none;
  font-size: 2.5vh; /* ~16px */
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.social-nav ul li a img {
  display: inline-block;
  width: 3.25vh; /* ~20px */
  height: auto;
  margin-right: 0.5rem;
}

.social-nav ul li a:hover {
  color: #ffffff;
}

/* --------------------------------------------
   Powered-by row (spans full width)
   -------------------------------------------- */
.footer-powered {
  grid-column: 1 / -1;  /* span all three columns */
  text-align: center;
  margin-top: 2vh;
}

.powered-text {
  font-size: 3vh;    /* ~16px */
  font-weight: 500;
  margin: 0;
}

.powered-by {
  font-weight: 100;
  font-family: 'Funnel Display', sans-serif;
}

.powered-link {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.powered-link:hover {
  color: #a061c2;
}

/* --------------------------------------------
   Responsive: tablet & below (≤ 1024px)
   → all columns stack vertically, center‐aligned
   -------------------------------------------- */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr; /* single column */
    text-align: center;
    gap: 1.5rem;      /* slightly smaller gap on mobile */
  }

  .footer-logo,
  .footer-links,
  .footer-social {
    align-items: center;    /* center their contents */
    justify-content: center;
    text-align: center;
  }

  .footer-nav ul li,
  .social-nav ul li {
    margin-bottom: 0.75rem; /* a bit more vertical space */
  }

  .footer-powered {
    margin-top: 1.5rem;
  }
}