:root {
            --primary-red: #d32f2f;
            --flame-orange: #ff6f00;
            --gray: #f4f4f4;
            --light-text: #f4f4f4;
        }

        body {
            margin: 0;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--gray);
            color: var(--light-text);
            display: flex;
            flex-direction: column;
            min-height: 100vh; /* Use 100dvh for better mobile support */
        }

        main {
            flex: 1; /* This pushes the footer to the very bottom */
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background: rgba(0, 0, 0, 0.9);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-red);
        }

        .logo {
            display: flex; /* Enables flexbox */
            align-items: center; /* Centers items vertically */
            gap: 15px; /* Adds space between logo and text */
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--flame-orange);
            text-transform: uppercase;
        }


        .logo-img {
            width: 100px; /* Slightly reduced size for better nav fit */
            height: 100px;
            
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            min-height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://images.unsplash.com");
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero h1 {
            font-size: 4rem;
            margin: 0;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
            color: white;
        }

        /* Menu Section */
        .menu-section {

            padding: 20px 10%;
            text-align: center;
        }

        .menu-item h2{
         color: orange;
     }

     .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .menu-item {
        background: #2a2a2a;
        padding: 10px;
        border-radius: 10px;
        border-left: 6px solid var(--flame-orange);
        border-right: 6px solid var(--flame-orange);
    }

    .price {
        color: var(--flame-orange);
        font-weight: bold;
        font-size: 1.2rem;
    }

    .menu-img {
        width: 100%;
        height: 180px;
        object-fit: cover; /* Crops the image to fit the box without stretching */
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .menu-item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.5s ease;
    }

    .menu-item:hover {
        transform: translateY(-15px); /* Lift effect on hover */
    }

    .menu-img:hover {
        transform: scale(1.3); /* Adjust 1.2 to 1.5 for more/less zoom */
    }

    /* Order Section */
    .order-section {
        color: white;
        padding: 10px 10%;
        text-align: center;
        background: #606060;
    }

    .image-row {
        display: flex; /* Turns the container into a flexbox */
        justify-content: center; /* Centers images horizontally (optional) */
        gap: 30px; /* Adds space between images */
    }

    .image-row img {
        width: 120px; /* Ensures they take up equal space */
        height: 100px; /* Maintains aspect ratio */
    }

    footer {
        background: #000;
        padding: 30px;
        text-align: center;
        border-top: 1px solid #333;
        min-height: 20vh;
    }