/* Root Variables */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* VibeCSS Base Overrides if needed */
}

/* Global Reset & Typography */
body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #a3a3a3;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #989898;
}

/* Animations not covered by VibeCSS default */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

section {
    overflow-x: hidden;
    max-width: 100vw;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}