/* ==========================================
   NOTFOUND PAGE STYLES
   ========================================== */

.notfound-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 8%;
  background: var(--bg-gradient);
}

.notfound-content {
  text-align: center;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.notfound-icon {
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

.notfound-icon svg {
  width: 120px;
  height: 120px;
  color: var(--primary-color);
  filter: drop-shadow(0 4px 15px rgba(0, 119, 182, 0.3));
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.notfound-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.notfound-message {
  margin-bottom: 25px;
}

.notfound-message p {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
}
.notfound-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.notfound-actions .btn {
  padding: 14px 28px;
  font-size: 0.95rem;
}

.notfound-actions .btn svg {
  flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  .notfound-container {
    padding: 40px 5%;
    min-height: calc(100vh - 150px);
  }

  .notfound-icon svg {
    width: 100px;
    height: 100px;
  }

  .notfound-actions {
    flex-direction: column;
    align-items: center;
  }

  .notfound-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .notfound-container {
    padding: 30px 4%;
  }

  .notfound-icon svg {
    width: 80px;
    height: 80px;
  }

  .notfound-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
