


.go-top-btn {
  position: fixed;
  bottom: 50px;
  right: 30px;
  border: 0.2rem solid var(--logo-dark);
  border-radius: var(--border-radius);
  width: 48px;
  height: 48px;
  color: var(--logo-dark);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99999;
}

.go-top-btn:hover,
.go-top-btn:focus {
  background: var(--logo-dark);
  color: var(--logo-yellow);
  outline: none;
  transform: scale(1.1);
}

/* Show button when scrolling down */
.go-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-bottom-bar {
  background: var(--theme-background);
  padding: 0px var(--theme-section-gap);
  font-size: 0.9rem;
  color: var(--logo-dark);
}

.footer-bottom-container {
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Social icons (matching main footer glow style) */
.footer-bottom-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  background: transparent;
  color:  var(--logo-dark);
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-bottom-copy {
  display: none;
  text-align: center;
  flex: 1;
}

.footer-bottom-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-bottom-bar a {
  color: var(--logo-dark);
  text-decoration: none;
  border-bottom: 3px solid transparent; 
  transition: border-color 0.3s ease;
}

.footer-bottom-bar a:hover,  
.footer-bottom-bar a:focus{
  color: var(--logo-green);
  border-color: var(--logo-yellow); /* animate from transparent to yellow */
}

.footer-bottom-links p{
  margin-bottom: unset;
}

.shown-desktop-only{
    display: block;
  }

/* Responsive for mobile */
@media (max-width: 600px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .footer-bottom-copy {
    display: block;
  }
  .shown-desktop-only{
    display: none;
  }
}
