    /* Custom Styles for Our Lady Tattoo Parlor */
    
    body {
        background-color: #020617; /* Slate 950 */
    }

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

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #14b8a6;
    }

    /* Animation Utilities */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile Menu Transition */
    #mobile-menu {
        transition: transform 0.3s ease-in-out;
    }
    
    /* Gold Gradient Text Utility */
    .text-gold-gradient {
        background: linear-gradient(to right, #d4af37, #f3e5ab, #d4af37);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
