/* The fixed banner */
        .napoleon-banner {
            /* The image we generated earlier */
            background-image: url("images/hero_grill_1774371593197.png");

            /* Make the banner take up the full view height so the content starts much lower */
            height: 100vh;

            /* CRITICAL: This makes the image stay in place while scrolling */
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;

            /* Visual styling for the text inside */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Optional: A dark overlay over the image so text is readable */
        .napoleon-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .napoleon-banner h1 {
            position: relative;
            z-index: 1;
            font-size: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            margin: 0;
        }

        /* The scrolling content area */
        .napoleon-content {
            /* Tall height just to force the page to scroll */
            height: 1200px;

            /* Solid background so it completely covers the image behind it */
            background-color: #0d0f12;

            /* Shadow on the top edge to give 3D depth as it slides up */
            box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.6);

            /* Keep it above the banner */
            position: relative;
            z-index: 2;

            padding: 4rem 2rem;
            text-align: center;
        }

        .napoleon-content p {
            max-width: 600px;
            margin: 0 auto 1.5rem auto;
            font-size: 1.25rem;
            line-height: 1.6;
            color: #9aa5b6;
        }
