html{
    scroll-behavior: smooth;
}

.footer {
  margin-top: 80px;
  padding: 40px 20px;
  background: #171a16;
  color: white;
  position: relative;
}

/* Container width */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left column */
.footer-left h3 {
  margin-bottom: 10px;
}

.footer-left p {
  margin: 6px 0;
}

.footer-left a {
  color: #00ff55;
  text-decoration: none;
  max-width: 410px;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 18px;
  font-size: 22px;
}

.social-icons a {
  color: white;
  transition: 0.2s;
}

.social-icons a:hover {
  color: #00ff55;
}



/* Back to top button */
.back-to-top {
  position: absolute;
  right: 30px;
  bottom: 30px;

  width: 45px;
  height: 45px;

  background-image: url("images/back-to-top.png");
  background-size: cover;
  background-position: center;
  object-fit: contain;
  background-repeat: no-repeat;

  display: block;

  transition: 0.2s;
}

.back-to-top:hover {
  transform: translateY(-4px);
}





/*SOCIAL MEDIA menu */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.link-item a {
  width: 45px;
  height: 45px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  overflow: hidden;

  transition: 0.2s;
}

/* image scaling */
.link-item img {
  max-width: 45px;
  max-height: 45px;
  object-fit: contain;
}

/* hover effect */
.link-item a:hover {
  transform: translateY(-3px);
}

.link-item span {
  font-size: 16px;
}


social-section-image{
  max-width: 45px;
  max-height: 45px;
  object-fit: contain;
}

