    :root {
        --navy: #1e3a5f;
        --gold: #d4af37;
        --rose: #f7ecea;
        --stone: #f5f5f4;
    }

    html {
        scroll-behavior: smooth;
    }

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

    .font-serif {
        font-family: 'Lora', serif;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    .animate-fade-in-up {
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .animate-float {
        animation: float 4s ease-in-out infinite;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: var(--stone);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--navy);
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #152a45;
    }
