#resume-section {
  width: 70%;
  margin: 120px auto;
  text-align: center;
  color: white;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.resume-header {
  margin-bottom: 40px;
}

.resume-header h2 {
  font-size: 2rem;
  color: #a6a3e0;
  margin-bottom: 10px;
}

.resume-header p {
  font-size: 1.1rem;
  color: #cfcdf5;
  margin-bottom: 25px;
}

/* Dugmad */
.download-buttons a {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: rgba(166, 163, 224, 0.15);
  border: 1px solid rgba(166, 163, 224, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 12px 28px;
  margin: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.download-buttons a:hover {
  background: rgba(166, 163, 224, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(166, 163, 224, 0.3);
}

/* Preview okvir */
.resume-preview {
  background: rgba(166, 163, 224, 0.1);
  border-radius: 25px;
  padding: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(166, 163, 224, 0.15);
  animation: fadeInCard 0.8s ease forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

.resume-preview img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.resume-preview img:hover {
  transform: scale(1.01);
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}