    .restaurent-hero {
        position: relative;
        overflow: hidden;
        min-height: 60vh;
        display: flex;
        align-items: center;
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

     /* Button */
     .btn-menu {
        margin-top: 2rem;
        background-color: var(--theme);
        color: white;
        font-weight: 700;
        font-size: 0.875rem;
        padding: 0.45rem 1.5rem;
        border: none;
        border-radius: 0.15rem;
        transition: background-color 0.3s ease;
        text-transform: uppercase;
    }

    .btn-menu:hover,
    .btn-menu:focus {
        background-color: #5a8a20;
        color: white;
        outline: none;
        box-shadow: none;
    }

    /* Organic green shapes */
    .shape-top-left {
        position: absolute;
        top: -8rem;
        left: -12rem;
        width: 300px;
        height: 300px;
        object-fit: contain;
        /* transform: translate(0%, -60%); */
        rotate: 313deg;
        pointer-events: none;
        user-select: none;
        /* clip-path: ellipse(60% 70% at 40% 40%); */
        z-index: 0;
    }

    .shape-bottom-right {
        position: absolute;
        bottom: -4rem;
        right: 0;
        width: 90px;
        height: 190px;
        object-fit: contain;
        pointer-events: none;
        user-select: none;
        z-index: 0;
        opacity: .7 !important;
    }

    /* Floating leaves */
    .leaf-bottom-left {
        position: absolute;
        bottom: 2.5rem;
        left: 2.5rem;
        width: 60px;
        height: 60px;
        object-fit: contain;
        pointer-events: none;
        user-select: none;
        rotate: 190deg;
        z-index: 1;
    }

    .leaf-bottom-center {
        display: none;
        position: absolute;
        bottom: 10rem;
        right: 45%;
        width: 100px;
        height: 75px;
        object-fit: contain;
        pointer-events: none;
        user-select: none;
        /* transform: translateX(42%); */
        clip-path: ellipse(50% 60% at 50% 50%);
        z-index: 1;
        opacity: 0.2;   
    }

    .leaf-top-center {
        position: absolute;
        top: -16rem;
        left: 45%;
        width: 1000px;
        height: 1000px;
        object-fit: contain;
        pointer-events: none;
        user-select: none;
        /* clip-path: ellipse(50% 60% at 50% 50%); */
        transform: translate(-42%, -15%);
        rotate: 50deg;
        z-index: 1;
    }

    /* Text styles */
    .hero-text h1 {
        font-weight: 900;
        color: #0a0a14;
        line-height: 1.1;
        font-size: 2rem;
    }
    
    
    .hero-text h1 .highlight {
        color: var(--theme);
    }

    .hero-text p {
        margin-top: 1.5rem;
        color: #6b7280;
        /* Tailwind gray-500 */
        font-size: 1rem;
        /* max-width: 400px; */
    }
    /* Image styles */
    .hero-image {
        width: 12rem;
        height: 12rem;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
        flex-shrink: 0;
        z-index: 2;
    }
    @media (min-width: 576px) {
        /* Text styles */
        .hero-text h1 {
            line-height: 1.1;
            font-size: 2.5rem;
        }
    }
    @media (min-width: 768px) {
        .restaurent-hero {
            min-height: 75vh;
        }


        .leaf-bottom-center{
            display: block;
            height: 50px;
            bottom: 5rem;
        }
        
        .shape-top-left {
            width: 400px;
            height: 400px;
            top: -12rem;
            left: -14rem;
        }
        .leaf-bottom-left {
            width: 90px;
            height: 90px;
            bottom: 0.5rem;
            left: 0.5rem;
        }
        .shape-bottom-right {
            width: 150px;
            height: 215px;
        }
        .hero-text h1 {
            font-size: 2.5rem;
        }
        .hero-text p {
            font-size: 1.125rem;
        }
        .hero-image {
            width: 15rem;
            height: 15rem;
        }
    }
    @media (min-width: 992px) {
        .restaurent-hero{
            min-height: 100vh;
        }

        .leaf-bottom-center{
            height: 70px;
            bottom: 10rem;
        }
        
        .shape-top-left {
            width: 400px;
            height: 400px;
            top: -8rem;
            left: -12rem;
        }
        .leaf-bottom-left {
            width: 135px;
            height: 135px;
            bottom: 0.5rem;
            left: 0.5rem;
        }
        .shape-bottom-right {
            width: 150px;
            height: 215px;
        }
        .hero-text h1 {
            font-size: 3rem;
        }
        .hero-text p {
            font-size: 1.125rem;
        }
        .hero-image {
            width: 24rem;
            height: 24rem;
        }
    }
