.temp-footer {
  background-color: #E6C3A0;
  padding: 50px 20px;
}

@media (min-width: 1024px) and (max-width: 2560px) {
  /* Footer Container */

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 30px;
  height: 500px;
}

/* Left Side */
.footer-left {
  flex: 0 0 500px; /* fixed width approx 500px */
  max-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-left: 40px;
}

.footer-animated-logo {
  width: 200px;
  height: auto;
  padding-left: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  gap: 40px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-left p {
  font-family: 'Futura', sans-serif;
  color: #865E47;
  text-transform: uppercase;
}
/* Right Side */
.footer-right {
  display: flex;
  flex: 1;
  gap: 5px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-family: 'Futura', sans-serif;
  color: #865E47;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
}

.footer-column p, 
.footer-column a {
font-family: 'Acumin Pro', sans-serif;
  color: #865E47;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: -35px;
  text-decoration: none;
}

.footer-column img {
  width: 150px;
  height: 150px;
  padding-top: 40px;
}
.footer-column a:hover {
  text-decoration: underline;
}

.footer-column img {
  width: auto;
  height: 20px;
  vertical-align: ; /* aligns with text */
  margin-right: 8px; /* space between icon and text */
}

.scan .scan-image {
 height: 150px;
  margin-top: 15px; /* space above the image */

}


/* Reset any previous keyframe attempts on this class */
.footer-animated-logo {
  animation: none !important;
  opacity: 0;
  transform: translateX(-60px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
}

.footer-animated-logo.show {
  opacity: 1;
  transform: translateX(0);
}

/* Optional: prevent the offscreen start from spilling */
.footer-left { overflow: hidden; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .footer-animated-logo {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a { display: inline-block; }

/* initial (hidden) state */
/* Initial hidden state and fade-in on scroll */
.social-icons a img,
.social-icons img {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

/* Revealed state when footer is in view */
.social-icons a.visible img,
.social-icons img.visible {
  opacity: 1;
  transform: translateY(0); /* now fully visible */
}

/* Hover: gentle rise */
.social-icons a img:hover,
.social-icons img:hover {
  transform: translateY(-6px); /* lift on hover */
  transition: transform 0.3s ease; /* smooth rise/fall */
}

/* Optional: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .social-icons a img,
  .social-icons img {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

}


@media (min-width: 320px) and (max-width: 1024px){
  .temp-footer {
  background-color: #E6C3A0;
  padding: 50px 20px;
}
  .footer-container {
    flex-direction: column;
    align-items: center;
    height: 400px;
  }
  .footer-animated-logo {
  width: 100px;
  height: auto;
  padding-left: 10px;
}
.footer-left {
  width: 200px;
}
.text {
  font-family: 'Futura', sans-serif;
  font-size: 10px;
  color: #865E47;      /* optional: match footer text color */
  text-transform: uppercase;  /* optional: match style */
  margin: 0;            /* optional: remove extra spacing */
}

.footer-left, .footer-right {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: left;
  }

  .footer-right {
    flex-direction: row;
    justify-content: left;
    gap: 10px;
  }

  .footer-column {
    min-width: 200px;
  }
  .social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a { display: inline-block; }

/* initial (hidden) state */
/* Initial hidden state and fade-in on scroll */
.social-icons a img,
.social-icons img {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

/* Revealed state when footer is in view */
.social-icons a.visible img,
.social-icons img.visible {
  opacity: 1;
  transform: translateY(0); /* now fully visible */
}

/* Hover: gentle rise */
.social-icons a img:hover,
.social-icons img:hover {
  transform: translateY(-6px); /* lift on hover */
  transition: transform 0.3s ease; /* smooth rise/fall */
}

/* Optional: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .social-icons a img,
  .social-icons img {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Reset any previous keyframe attempts on this class */
.footer-animated-logo {
  animation: none !important;
  opacity: 0;
  transform: translateX(-60px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
}

.footer-animated-logo.show {
  opacity: 1;
  transform: translateX(0);
}

/* Optional: prevent the offscreen start from spilling */
.footer-left { overflow: hidden; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .footer-animated-logo {
    transition: none;
    opacity: 1;
    transform: none;
  }
}


  .footer-right {
    padding-bottom: 0px;

  }

  /**office info**/
  .footer-column {
    padding-top: 0px;
    width: 350px;
    padding-left: 0px;
    margin-top: -30px
  }

  .footer-column h3 {
    margin-bottom: -20px;
  }
  .scan .scan-image {
 height: 100px;
  margin-top: 15px; /* space above the image */

}
}

/* ======================================
   FOOTER — EXTRA SMALL (≤390px)
   Overrides desktop/tablet styles
====================================== */
@media (max-width: 390px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    gap: 20px;
    padding: 20px;
  }

  /* Left Section stacked */
  .footer-left {
    flex: 1 1 100%;
    width: 100%;
    margin: 0;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-animated-logo {
    width: 120px;
    height: auto;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .footer-left p {
    font-size: 10px;
  }

  /* Social icons centered */
  .social-icons {
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
  }

  .social-icons img {
    width: 20px;
    height: auto;
  }

  /* Right Section stacked */
  .footer-right {
    flex-direction: column;
    flex: 1 1 100%;
    width: 100%;
    gap: 15px;
    text-align: left;
  }

  .footer-column {
    flex: 1 1 100%;
    width: 100%;
    min-width: auto;
    margin: 0;
    padding-left: 40px;
  }

  .footer-column h3 {
 font-family: 'Futura', sans-serif;
  color: #865E47;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
    margin-bottom: 5px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .footer-column img {
    height: 16px;
    width: auto;
    margin-right: 6px;
  }

  /* QR / Scan image smaller */
  .scan .scan-image {
    height: 90px;
    width: auto;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  /* Copyright centered */
  .footer-copyright {
    font-size: 9px;
    text-align: center;
    margin-top: 15px;
    color: #865E47;
    font-family: 'Futura', sans-serif;
    text-transform: uppercase;
  }
}

@media (min-width: 391px) and (max-width: 1366px){
.social-icons img {
  width: 25px;
  height: 25px;
  gap: 40px;
  transition: transform 0.3s;
}
}