@import url("https://fonts.googleapis.com/css2?family=Handlee&family=Montserrat&family=Roboto&display=swap");

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 90%;
    margin: auto;
}

.row {
    width: 100%;
}

.row::after {
    clear: both;
    content: "";
    display: block;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

[class*="col-"] {
    width: 100%;
}

/* header-section-start */
header {
    background: #24a19c;
    padding: 0% 1%;
    text-align: center;
}

.logo {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
}

.logo:hover {
    box-shadow: 0px 0px 10px 2px #fff;
}

nav-menu ul li {
    display: block;
}

nav-menu ul li a {
    display: block;
    text-decoration: none;
    color: white;
    line-height: 70px;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: "Roboto", sans-serif;
    transition: 0.4s;
}

nav-menu ul li a:hover {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}
/* header-section-end */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

/* main-section-start */

/* banner-section */
#banner-section {
    background-image: url("../images/bg-img.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-contents {
    padding: 50px 10px;
    text-align: center;
}

.banner-contents h1 {
    width: 100%;
    margin: 15px auto;
    font-size: 3rem;
    background: rgba(218, 218, 206, 0.233);
    color: #e5260d;
    border-radius: 5px;
    padding: 10px;
    font-family: "Handlee", cursive;
    font-weight: bolder;
}

.banner-contents p {
    width: 300px;
    margin: 15px auto;
    background: rgba(0, 0, 0, 0.616);
    color: yellow;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: bolder;
    border-radius: 5px;
}

.btn {
    width: 160px;
    padding: 10px;
    font-size: 1.3rem;
    border: none;
    outline: none;
    border-radius: 5px;
    background: rgba(0, 125, 0);
    text-transform: uppercase;
    color: white;
    transition: 0.4s;
}

.btn:hover {
    transform: scale(1.2);
}

/* about-us-section */
#about-us {
    padding: 1%;
}

.about-us-contents {
    text-align: center;
}

.about-us-contents h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bolder;
}

.about-us-contents p {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* food-menu-section */
#menu {
    padding: 1%;
}

.card-body {
    text-align: center;
}

.card-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

.item-des {
    background: rgba(145, 164, 164);
}

.item-name {
    background: green;
    color: white;
    padding: 10px;
}

.item-des p {
    font-size: 0.8rem;
    padding: 10px;
    font-weight: bold;
}

.card {
    transition: 0.4s;
}

.card:hover {
    transform: scale(1.1);
}

/* contact-section */
#contact {
    padding: 1%;
    background: #595b83;
}

.contact-details {
    color: white;
    text-align: center;
    padding: 20px 0;
}

.map {
    width: 100%;
    height: 250px;
}

.contact-details p,
address {
    font-size: 0.8rem;
}

/* main-section-end */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

/* footer-section-start */
footer {
    padding: 1%;
    color: white;
    background: #060930;
}

.footer p {
    line-height: 32px;
    font-size: 0.8rem;
    text-align: center;
}

.social-menus {
    text-align: center;
}

.icon-style {
    color: white;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    border: 1px solid white;
    padding: 6px;
    margin: 0 10px;
    transition: 0.4s;
    text-align: center;
}

.icon-style:hover {
    background-color: grey;
    transform: scale(1.2);
}
/* footer-section-end */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

/* media-queries */
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 576px) {
    .col-sm-1 {
        width: 8.33%;
    }
    .col-sm-2 {
        width: 16.66%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33%;
    }
    .col-sm-5 {
        width: 41.66%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.33%;
    }
    .col-sm-8 {
        width: 66.66%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.33%;
    }
    .col-sm-11 {
        width: 91.66%;
    }
    .col-sm-12 {
        width: 100%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .col-md-1 {
        width: 8.33%;
    }
    .col-md-2 {
        width: 16.66%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.33%;
    }
    .col-md-5 {
        width: 41.66%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.33%;
    }
    .col-md-8 {
        width: 66.66%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.33%;
    }
    .col-md-11 {
        width: 91.66%;
    }
    .col-md-12 {
        width: 100%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /* header-section */
    .logo-div {
        text-align: left;
    }

    nav-menu ul {
        text-align: right;
    }

    nav-menu ul li {
        display: inline-block;
    }

    nav-menu ul li a {
        display: inline-block;
        transition: 0.4s;
    }

    nav-menu ul li a:hover {
        background: transparent;
        transform: scale(1.2);
        text-decoration: underline;
        border-radius: 0;
    }

    /* banner-section */
    #banner-section {
        position: relative;
        height: 100vh;
    }

    .banner-contents {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .banner-contents h1 {
        width: 700px;
        font-size: 3.5rem;
    }

    .banner-contents p {
        width: 500px;
        font-size: 2rem;
    }

    /* footer-section */
    footer p {
        text-align: left;
    }

    .social-menus {
        text-align: right;
    }

    .col-lg-1 {
        width: 8.33%;
    }
    .col-lg-2 {
        width: 16.66%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.33%;
    }
    .col-lg-5 {
        width: 41.66%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.33%;
    }
    .col-lg-8 {
        width: 66.66%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-10 {
        width: 83.33%;
    }
    .col-lg-11 {
        width: 91.66%;
    }
    .col-lg-12 {
        width: 100%;
    }
}
