/* Copyright Section Styles */
.copyright-section {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--background-color-2);
}

.copyright-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text {
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.85;
  text-align: center;
}

.copyright-text .highlight {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.copyright-text .highlight:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: var(--main-color);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.copyright-text .highlight:hover {
  color: var(--main-color);
}

.copyright-text .highlight:hover:before {
  visibility: visible;
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: var(--background-color-1);
  color: var(--text-color);
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--neomorphic-shadow);
}

.footer-social .social-link:hover {
  transform: translateY(-3px);
  color: var(--primary-color);
  box-shadow: var(--neomorphic-shadow-pressed);
}

@media (max-width: 768px) {
  .copyright-content {
    flex-direction: column;
    text-align: center;
  }
}
