    /* Custom styles for Carniceria Los Potrillos */

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

    /* Selection color */
    ::selection {
        background-color: rgba(232, 93, 74, 0.3);
        color: #fff;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #1e2025;
    }
    ::-webkit-scrollbar-thumb {
        background: #54575f;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #E85D4A;
    }

    /* Scroll reveal base - content is visible by default */
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Reveal animations only apply when JS is active and user prefers motion */
    @media (prefers-reduced-motion: no-preference) {
        .reveal.is-hidden {
            opacity: 0;
            transform: translateY(30px);
        }
        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(15, 16, 19, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(232, 93, 74, 0.1);
    }

    /* Geometric shape animations */
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(45deg); }
        50% { transform: translateY(-20px) rotate(45deg); }
    }

    @keyframes float-reverse {
        0%, 100% { transform: translateY(0) rotate(12deg); }
        50% { transform: translateY(15px) rotate(12deg); }
    }

    .geometric-float {
        animation: float 6s ease-in-out infinite;
    }

    .geometric-float-reverse {
        animation: float-reverse 8s ease-in-out infinite;
    }

    /* Pulse for accent elements */
    @keyframes soft-pulse {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
    }

    .soft-pulse {
        animation: soft-pulse 3s ease-in-out infinite;
    }

    /* Hero text gradient animation */
    @keyframes gradient-shift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .gradient-text {
        background: linear-gradient(135deg, #ff8a6e, #E85D4A, #e04a35);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradient-shift 4s ease-in-out infinite;
    }

    /* Image hover zoom */
    .img-zoom {
        transition: transform 0.5s ease;
    }
    .img-zoom:hover {
        transform: scale(1.05);
    }
