*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
a{
    color: inherit;
    text-decoration: none;
}
ul{
    list-style: none;
}

header{
    z-index: 1000;
    position: fixed;
    background-color: #ffffff7e;
    border: 1px solid #ddd;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    width: 90%;
    margin: 20px 5%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo{
        height: 50px;
        img{
            height: 100%;
        }
    }

    .nav{
        display: flex;
        gap: 30px;

        li{
            font-size: 14px;
            font-weight: 500;
            transition: .3s ease;
        }
        li:hover{
            color: #e78b00;
        }
    }
    .hamburger{
        display: none;
    }
    .header-cta{
        padding: 10px 20px;
        background-color: #073b00;
        border: 2px solid white;
        color: white;
        border-radius: 100px;
        transition: .3s ease;
    }
    .header-cta:hover{
        background-color: #e78b00;
        color: white;
    }
}





.menu-hero{
    height: 60vh;
    padding: 30px;
    background-image: url(../images/ethnic\ style\ interior\ of\ restaurant\ lounge.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    margin-bottom: 30px;

    h1{
        color: white;
        font-size: 55px;
        margin-bottom: 10px;
    }
    .hero-link{
        color: white;
        display: flex;
        justify-content: center;
    }
    p{
        font-size: 15px;
        color: grey;
    }
    a{
        font-size: 15px;

        span{
            margin-right: 4px;
            margin-left: 4px;
        }
    }
}



.contact-form{
    padding: 30px;

    h2{
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 30px;
        span{
            color: #e78b00;
        }
    }

    .form-cont{
        display: flex;
        justify-content: center;
        gap: 50px;
        padding: 20px;

        form{
            width: 50%;

            input{
                width: 100%;
                padding: 15px;
                border-radius: 10px;
                border: 1px solid #ddd;
                outline: none;
                margin-top: 5px;
                margin-bottom: 15px;
            }
            label{
                font-weight: 600;
                font-size: 14px;
            }
            textarea{
                width: 100%;
                height: 170px;
                padding: 15px;
                border-radius: 10px;
                border: 1px solid #ddd;
                outline: none;
                margin-top: 5px;
                margin-bottom: 15px;
            }
            button{
                padding: 15px 25px;
                border-radius: 100px;
                border: none;
                outline: none;
                background-color: #e78b00;
                color: #fff;
            }
            .details{
                display: grid;
                gap: 20px;
                grid-template-columns: 2fr 2fr;

            }
        }
        .contact-img{
            width: 30%;
            background-color: #ddd;
            border-radius: 20px;
            height: 510px;
            background-image: url(../images/_Cheerful\ Friends\ Having\ Lunch\ At\ Modern\ Restaurant_\ by\ Stocksy\ Contributor\ \ _BONNINSTUDIO\ _.jpg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }
    }
}

.contact-us-link{
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
    text-align: center;

    .link-box{
        width: 300px;
        padding: 30px;
        border: 1px solid #ddd;
        border-radius: 15px;

        .icon{
            height: 50px;
            width: 50px;
            font-size: 30px;
            border-radius: 100px;
            background-color: #e78b00;
            margin: 0px auto 20px auto;
        }
        h5{
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        p{
            color: grey;
            font-size: 13px;
            margin-bottom: 10px;
        }
    }
}

.map{
    margin: 30px;
    height: 350px;
    border-radius: 20px;
    background-color: #ddd;
    background-image: url(../images/image.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}








@media (max-width: 850px) {

    header{
        z-index: 1000;
        .hamburger{
            align-content: center;
            margin-top: 15px;
            display: block;
            cursor: pointer;
            height: 100%;
            transition: transform .5s ease-in-out;
        }
        .bar{
            width: 35px;
            height: 2px;
            background-color: #000000;
            margin-bottom: 6px;
            border-radius: 10px;
            transition: transform .5s ease-in-out;
        }
        .hamburger.change .bar1{
            -webkit-transform: rotate(-45deg) translate(-9px, 6px);
            transform: rotate(-45deg) translate(-5px, 6px);

        }
        .hamburger.change .bar2{
            opacity: 0;
        }
        .hamburger.change .bar3{
            -webkit-transform: rotate(45deg) translate(-8px, -8px);
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav {
            z-index: 99;
            height: 100vh;
            text-align: left;
            left: -500px;
            top: 0;
            width: 70%;
            margin: -22px -6%;
            padding: 30px;
            padding-top: 90px;
            backdrop-filter: blur(10px);
            position: fixed;
            display: block;
            background-color: #ffffffee;
            transition: left .5s ease-in-out;
            color: #000000;
        }
        .nav.visible{   
            z-index: 99;
            width: 70%;
            left: 0;
            margin: -22px -6%;
            text-align: left;
        }
        
        .nav li {
            text-align: left;
            line-height: 80px;
            font-size: 15px;
            margin: 0;
        }
        
    }

    .contact-form{
        .form-cont{
            flex-direction: column;
            form{
                width: 100%;
            }
            .contact-img{
                width: 100%;
            }
        }
    }

    .map{
        margin: 30px;
        height: 240px;
        border-radius: 20px;
        background-color: #ddd;
        background-image: url(../images/image.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}


@media (max-width: 500px) {
    .menu-hero{
        h1{
            font-size: 45px;
        }
    }

    .contact-form{
        padding: 20px;
        h2{
            font-size: 30px;
        }
        .form-cont{
            padding: 10px;
        }
    }

    .map{
        margin: 30px 20px;
    }
}