
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FF3E4D; /* Vibrant red */
    --secondary: #00E0FF; /* Electric blue */
    --dark: #121212; /* Darker background */
    --accent: #FFD700; /* Gold accent */
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: var(--dark);
    color: white;
}

::selection {
    background: rgba(255, 62, 77, 0.5); /* Using primary color */
}

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

::-webkit-scrollbar-track {
    background: #121212;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}
/* Animation classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom styling for about page */
.border-l-2 {
    position: relative;
}

.border-l-2::before {
    content: "⸻";
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

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

.delay-3 {
    animation-delay: 0.6s;
}