/* Custom styles for the portfolio */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Animation delays */
.animation-delay-1000 {
  animation-delay: 1s;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--b2));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--p));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--pf));
}

/* Section spacing */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

/* Project card hover effect */
.card:hover {
  transform: translateY(-5px);
}

/* Contact form adjustments */
.contact-form .input,
.contact-form .textarea {
  transition: all 0.3s ease;
}

.contact-form .input:focus,
.contact-form .textarea:focus {
  border-color: hsl(var(--p));
  box-shadow: 0 0 0 2px hsl(var(--p) / 0.2);
}

/* Navigation active state */
.navbar a.active {
  color: hsl(var(--p));
  font-weight: 500;
}