/* Animations and Transitions */

/* Interactive Elements Transitions */
.social-icon-link {
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
}

.valentino-underline {
  transition: all 0.3s ease;
}

.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.decor-circle {
  transition: all 0.3s ease;
}

.decor-circle:hover {
  transform: scale(1.1);
}

#theme-toggle-btn {
  transition: all 0.3s ease;
}

#theme-toggle-btn:hover {
  transform: scale(1.1);
}

/* Skill Modal Animations */
.skill-item {
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.theme-light .skill-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Certificate Item Animations */
.certificate-item {
  transition: all 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.theme-light .certificate-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Project Item Animations */
.project-item {
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.theme-light .project-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Modal Animations */
#skillModal {
  animation: fadeIn 0.3s ease;
}

#skillModal.hidden {
  animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
