/* Custom styles for Valid Resume Platform */

body {
  font-family: 'Inter', sans-serif;
}

.nav-link {
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #0D9488;
}

/* Animation for notifications */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out;
}

/* Customized form inputs */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0D9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Button hover effects */
button {
  transition: all 0.2s ease;
}

/* Card hover animations */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Timeline styling */
.timeline-line {
  position: absolute;
  left: 6px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background-color: #E5E7EB;
}

.timeline-dot {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #0D9488;
}

/* Validation badge animation */
.validation-badge {
  position: relative;
  overflow: hidden;
}

.validation-badge:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.validation-badge:hover:after {
  left: 100%;
}

/* Profile image hover effect */
.profile-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.profile-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(13, 148, 136, 0.7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image-container:hover .profile-image-overlay {
  height: 100%;
}