.footer ::selection {
  background: white;
  color: black;
}

.footer ::-moz-selection {
  background: white;
  color: black;
}

.footer {
  background-color: black;
  padding: clamp(30px, 5vh, 60px) 0 clamp(16px, 3vh, 32px);
  position: sticky;
  bottom: 0;
  z-index: 0;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
}

.footer-header {
  text-align: center;
  margin-bottom: clamp(10px, 2vh, 20px);
  padding: 0 clamp(1rem, 5vw, 4rem);
}

.footer-header h5 {
  color: rgba(255, 255, 255, 0.4);
}

.footer-header h2 {
  color: white;
  white-space: normal;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(3rem, 15vw, 20rem);
  margin-bottom: clamp(20px, 4vh, 40px);
  margin-top: clamp(20px, 4vh, 40px);
  flex-wrap: wrap;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

.footer-column {
  text-align: center;
}

.footer-heading {
  font-size: clamp(0.6rem, 0.8vw, 0.7rem);
  color: #555;
  margin-bottom: 0.5rem;
  font-family: sohne-bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  font-family: sohne-bold;
  text-decoration: none;
  color: white;
  font-size: clamp(11px, 1.1vw, 13px);
  transition: color 0.3s ease, transform 0.3s ease;
}

a {
  font-family: sohne-bold;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.copyright {
  text-align: center;
  font-size: clamp(0.6rem, 0.8vw, 0.65rem);
  color: #777;
  padding: clamp(10px, 2vh, 20px) 0;
}

/* =========================
   Cursor Follower
   ========================= */
.follower {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(60px, 6vw, 90px);
  height: clamp(60px, 6vw, 90px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.80);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  scale: 0;
}

.follower p {
  color: #fff;
  font-size: clamp(11px, 1.2vw, 15px);
  text-align: center;
  user-select: none;
  font-family: sohne-medium;
}

.follower .txt2 {
  display: none;
}

.contact-me-container {
  text-align: center;
  color: white;
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 600px;
}

.contact-me-container p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
  font-family: sohne-medium;
}

@media (max-width: 480px) {
  .footer-content {
    gap: 2.5rem;
  }
}