    /* Custom Styles for Andrews Mechanic Work Shop */
    
    body {
        font-family: 'Outfit', sans-serif;
    }
    
    h1, h2, h3, h4 {
        font-family: 'Playfair Display', serif;
    }

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

    /* Hide scrollbar for chrome/safari/opera */
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .no-scrollbar {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    /* Blob Animation for Hero */
    @keyframes blob {
        0% { transform: translate(0px, 0px) scale(1); }
        33% { transform: translate(30px, -50px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.9); }
        100% { transform: translate(0px, 0px) scale(1); }
    }
    
    .animate-blob {
        animation: blob 7s infinite;
    }
    
    .animation-delay-2000 {
        animation-delay: 2s;
    }

    /* Mobile Menu Transition */
    #mobile-menu {
        transition: all 0.3s ease-in-out;
    }
    
    /* Scroll Reveal Animations (Progressive Enhancement) */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
        .animate-blob {
            animation: none;
        }
        .reveal {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }
