/* Social Media Icons Styling */
.social-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.social-links a {
  color: var(--text);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(212, 161, 82, 0.1);
  border: 1px solid rgba(212, 161, 82, 0.2);
  position: relative;
  overflow: hidden;
}

.social-links a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.social-links a svg {
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 161, 82, 0.3);
}

.social-links a:hover:before {
  opacity: 1;
}

.social-links a:hover svg {
  transform: scale(1.1);
}

/* Light theme adjustments */
[data-theme="light"] .social-links a {
  background: rgba(194, 136, 39, 0.1);
  border: 1px solid rgba(194, 136, 39, 0.2);
}

[data-theme="light"] .social-links a:hover {
  color: var(--dark-bg);
  box-shadow: 0 5px 15px rgba(194, 136, 39, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .social-links {
    gap: 1.5rem;
  }

  .social-links a {
    width: 3.5rem;
    height: 3.5rem;
  }

  .social-links a svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (max-width: 576px) {
  .social-links {
    justify-content: center;
    gap: 1rem;
  }

  .social-links a {
    width: 3rem;
    height: 3rem;
  }

  .social-links a svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
