    /* Custom styles supplementing Tailwind */
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: #fdf9f0;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #e19672;
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #c55c36;
    }
    
    /* Selection color */
    ::selection {
        background: #f5d5c8;
        color: #6e3021;
    }
    
    /* Mobile menu animations */
    .mobile-link {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }
    
    #mobile-menu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
    #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
    #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
    
    /* Menu button animation */
    #menu-btn.active #menu-line-1 {
        transform: rotate(45deg) translate(3px, 3px);
    }
    
    #menu-btn.active #menu-line-2 {
        transform: rotate(-45deg) translate(3px, -3px);
    }
    
    /* Image hover effect */
    img {
        transition: transform 0.6s ease;
    }
    
    /* Subtle hover lift on cards */
    @media (prefers-reduced-motion: no-preference) {
        .menu-item {
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-2px);
        }
    }
    
    /* Form focus styles */
    input:focus,
    textarea:focus {
        outline: none;
    }
    
    /* Ensure proper contrast for all text */
    h1, h2, h3, p, span, a, button, label, input, textarea {
        color: inherit;
    }
    
    /* Prevent layout shift on images */
    img {
        max-width: 100%;
        height: auto;
    }
