    :root {
        --burgundy: #701a3e;
        --burgundy-dark: #5d1530;
        --blush: #fce7f3;
        --stone-50: #fafaf9;
        --stone-900: #1c1917;
    }

    body {
        font-family: 'Inter', sans-serif;
    }

    h1, h2, h3, h4, .font-outfit {
        font-family: 'Outfit', sans-serif;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
        background: var(--burgundy);
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--burgundy-dark);
    }

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

    /* Animation Utility */
    .fade-in-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
