* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

body {
    background: rgb(64, 63, 65);
    color: white;
}

h2 {
    font-size: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    text-align: left;
}

a {
    text-decoration: none;
    color: white;
}

li {
    list-style: none;
}

nav {
    background: black;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 80px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul li a {
    font-size: 20px;
}

nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #f44336;
    margin-right: auto;
    transition: 0.4s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: orangered;
}

.herosection {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 4rem;
}

.herosection .left {
    width: 50%;
}

.herosection .left h1 {
    font-size: 100px;
}

.herosection .left p {
    font-size: 18px;
    color: rgb(238, 187, 187);
    padding-block: 20px;
    font-weight: 300;
}

.herosection .left a {
    font-weight: 600;
}

.btn {
    background: rgb(247, 69, 4);
    padding: 12px 30px;
    border-radius: 10px;
    display: inline-block;
    transition: 0.4s;
    cursor: pointer;
}

.btn:hover {
    background: rgb(188, 53, 4);
}

.herosection .right {
    width: 50%;
}

.herosection .right img {
    width: 100%;
}

#menusection {
    padding: 100px 4rem;
}

#menusection h2 {
    text-align: center;
    font-size: 50px;
}

.menucontainer {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.menuitem {
    width: 420px;
    background: white;
    padding: 20px;
}

.menuitem img {
    width: 380px;
    height: 250px;
    object-fit: cover;
}

.menuitem h4 {
    padding-block: 15px;
    font-weight: 800;
    font-size: 20px;
    text-align: left;
    color: black;
}

/* Mobile Responsive Adjustments */
@media only screen and (max-width: 768px) {

    .herosection {
        flex-direction: column;
        padding: 50px 2rem;
        text-align: center;
    }

    .herosection .left,
    .herosection .right {
        width: 100%;
    }

    .herosection .left h1 {
        font-size: 50px;
    }

    .herosection .left p {
        font-size: 16px;
    }

    #menusection {
        padding: 50px 2rem;
    }

    #menusection h2 {
        font-size: 40px;
    }

    .menuitem {
        width: 100%;
    }

    .menuitem img {
        width: 100%;
        height: auto;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        font-size: 16px;
    }
}
