/* Custom scrollbar for a more modern look (optional) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a202c; /* Dark background for track */
}
::-webkit-scrollbar-thumb {
    background: #4a5568; /* Gray thumb */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #718096; /* Lighter gray on hover */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827; /* Dark blue-gray background */
    color: #d1d5db; /* Light gray text */
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for sections */
.section-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Project card hover effect */
.project-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}
.project-card {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

/* Skill tag styling */
.skill-tag {
    background-color: #374151; /* Darker gray for tags */
    color: #e5e7eb; /* Lighter text for tags */
    padding: 0.5rem 1rem;
    border-radius: 9999px; /* Pill shape */
    font-size: 0.875rem;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.skill-tag:hover {
    background-color: #4f46e5; /* Indigo on hover */
    transform: scale(1.05);
}

/* Header and Nav link styling */
header a {
    transition: color 0.2s ease-in-out;
}
header a:hover {
    color: #6366f1; /* Indigo hover for nav links */
}