    /* Custom Color Palette */
    :root {
        --navy-dark: #0a192f;
        --navy-light: #1a365d;
        --gold-light: #c5a059;
        --gold-dark: #a08040;
    }

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

    h1, h2, h3, h4, .font-serif {
        font-family: 'Cormorant Garamond', serif;
    }

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

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

    ::-webkit-scrollbar-thumb {
        background: var(--navy-dark);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold-light);
    }

    /* Animations */
    .reveal-text {
        opacity: 0;
        transform: translateY(30px);
        animation: reveal 0.8s ease forwards;
    }

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

    .delay-300 {
        animation-delay: 0.3s;
    }

    @keyframes reveal {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Menu Transitions */
    #mobile-menu {
        backdrop-filter: blur(10px);
    }

    /* Utility for text selection */
    ::selection {
        background: var(--gold-light);
        color: white;
    }
