    /* Custom Styles for Classic Stoneworks */
    body {
        font-family: 'DM Sans', sans-serif;
    }
    
    h1, h2, h3, h4, .font-serif {
        font-family: 'Playfair Display', serif;
    }

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

    /* Scroll Reveal Animation */
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #F4F1DE;
    }
    ::-webkit-scrollbar-thumb {
        background: #E07A5F;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #D16045;
    }

    /* Mobile Menu Animation */
    #mobile-menu {
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }
