* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.3), 
        rgba(0, 0, 0, 0.3)
      ),
      url('/images/bg.png'); 
    background-repeat: no-repeat;
    background-size: contain;
}

header {
    /* position: fixed; */
    text-align: center;
    padding: 2rem;
    background-color: antiquewhite;
    height: auto;
    width: auto;
    opacity: 55%;
    transition: 0.5s;
    /* margin-top: 0;
    top: 0; */
}

header:hover {
    opacity: 100%;
    box-shadow: 0px 0px 10px 1px black;
}

header .header-contents {
    display: flex;
    justify-content: center;
    /* border: 1px solid black; */
}

header .header-contents .icon {
    display: none;
    text-decoration: none;
}

header nav {
    /* border: 1px solid black; */
    /* position: fixed; */
    align-self: center;
    margin-left: auto;
}

a {
    font-size: 25px;
    padding: 0rem 3rem;
    text-decoration: none;
    color: black;
    transition: 0.5s;
    height: auto;
    width: auto;
    /* transition: 2s; */
}

#img-a {
    padding: 0;
    margin: 0;
}

a:hover {
    text-decoration: underline;
}

header img {
    max-width: 200px;
    max-height: 200px;
    clear: left;
}

body .menu-nav {
    text-align: center;
}

body .menu-nav a {
    color: gold;
    font-weight: bolder;
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    text-decoration: none;
}

body .menu-nav a:hover {
    text-decoration: underline;
}

body .nav .navigate {
    display: none;
}

body .nav {
    display: none;
    /* border: 1px solid white; */
    z-index: 99;
    width: 10rem;
}

body .title-menu {
    font-size: 70px;
    text-align: center;
    margin-top: 5rem;
    color: orange;
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}

body .menu {
    /* border: 1px solid blue; */
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin-top: 15rem;    
    padding: 5rem;
    gap: 50px;
    width: auto;
    background-color: antiquewhite;
    box-shadow: 0px 0px 10px 1px black;
}

body .menu .items {
    text-align: center;
    /* border: 1px solid black; */
    padding: 1rem;
    width: auto;
    height: auto;
    border-radius: 10px;
    background-color: rgb(247, 239, 131);
    transition: 0.5s;
}

body .menu .items:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 10px -1px black;
}

body .menu .items p {
    margin-top: 1rem;
    /* padding: 1rem; */
    text-justify: auto;
}

body .menu .items img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 25px;
    margin-top: 1rem;
    border: 1px solid black;
}

body .menu .items .prices {
    /* border: 1px solid black; */
    margin-top: 1rem;
    padding-bottom: 1rem;
}

body .breakfast-meals-title {
    font-size: 70px;
    color: orange;
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}

body .breakfast-meals {
    border-top: 2px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    width: auto;
    background-image: url(/images/breakfast\ bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

body .breakfast-meals img {
    margin-top: 2rem;
    max-width: 50rem;
    max-height: 50rem;
    transition: 0.5s;
    border-radius: 10px;
}

body .breakfast-meals img:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px -1px black;
 }
/* back to top button */
 #myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: burlywood; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }

  footer {
    padding: 3rem 2rem;
    background-color: antiquewhite;
    box-shadow: 0px 0px 10px 1px black;
    height: auto;
}

footer .footer-text {
    display: flex;
    /* border: 1px solid blue; */
    padding: 2rem 0rem;
}

footer .footer-text h4 {
    color: gray;
}

footer .footer-text .logo-flag {
    /* border: 1px solid black; */
    margin-left: auto;
}

footer .footer-text img {
    padding-right: 2rem;
    max-width: 100px;
    max-height: 100px;
}


footer .links {
    display: flex;
    /* border: 1px solid black; */
    justify-content: center;
    padding: 1rem;
}

footer .links nav #footer-menu-link, footer .links nav #footer-location-link, footer .links nav #footer-order-link  {
    font-size: 18px;
    text-decoration: none;
    padding: 1rem;
}

footer .all-rights {
    text-align: center;
}

  @media only screen and (max-width: 600px) {
    * {
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.4), 
            rgba(0, 0, 0, 0.4)
          ),
          url('/images/bg.jpg'); 
        background-repeat: repeat;
        background-size: auto;
        background-position: center;
    }

    header {
        text-align: center;
        padding: 1.5rem;
        background-color: antiquewhite;
        height: auto;
        width: auto;
        opacity: 100%;
    }

    header .header-contents {
        display: flex;
        justify-content: center;
        /* border: 1px solid black; */
        width: 100%;
    }

    header .header-contents .icon {
        display: block;
        font-size: 30px;
    } 

    header nav {
        /* border: 1px solid green; */
        align-self: center;
        margin-left: auto;
    }

    a {
        display: none;
    }

    header img {
        max-width: 125px;
        max-height: 110px;
        clear: left;
        border-radius: 10px;
    }

    #img-a {
        display: inline;
        padding: 0;
        margin: 0;
    } 

    body .title-menu {
        font-size: 50px;
        text-align: center;
        margin-top: 5rem;
        padding: 0 1.5rem;
        color: orange;
        text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
        /* border: 1px solid white; */
    }
    

    body .menu-nav {
        text-align: center;
        /* border: 1px solid white; */
        margin: 3.5rem 0;
        padding: 0 0;
        width: auto;
        height: auto;
    }
    
    body .menu-nav a {
        text-align: center;
        display: inline-block;
        padding: 1.5rem;
        color: gold;
        font-size: 23px;
        font-weight: bolder;
    }

    body .menu {
        /* border: 1px solid blue; */
        display: grid;
        grid-template-columns: auto;
        justify-content: center;
        align-items: center;
        padding: 2.5rem 1rem;        
        width: auto;
        height: auto;
        background-color: none;
    }

    body .menu .items {
        text-align: center;
        /* border: 1px solid black; */
        padding: 1rem;
        margin: 1rem;
        width: auto;
        height: auto;
        border-radius: 10px;
        background-color: rgb(247, 239, 131);
        transition: 0.5s;
    }

    body .menu .items:hover {
        transform: scale(1.1);
        box-shadow: 0px 0px 10px -1px black;
    }

    body .menu .items img {
        max-width: 100px;
        max-height: 100px;
        border-radius: 25px;
        margin-top: 1rem;
        border: 1px solid black;
    }

    body .nav .navigate {
        display: block;
        text-align: center;
        font-size: 16px;
    }

    body .nav {
        visibility: hidden;
        display: flex;
        justify-content: center;
        /* border-top: 1.5px solid black; */
        z-index: 1;
        width: auto;
        background-color: antiquewhite;
        box-shadow: 0px 10px 10px -1px black;
    }   
    
    body .nav nav {
        display: flex;
        padding-bottom: 1rem;
        /* border: 1px solid black; */
    }

    body .breakfast-meals {
        border-top: 2px solid black;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5rem;
        padding-bottom: 10rem;
        width: auto;
        height: auto;
        background-image: url(/images/breakfast\ bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
    }

    body .breakfast-meals .breakfast-meals-title {
        font-size: 45px;
    }
    
    body .breakfast-meals img {
        margin-top: 2rem;
        max-width: 30rem;
        max-height: 30rem;
        transition: 0.5s;
        border-radius: 10px;
    }

    footer .links nav {
        height: auto;
        width: auto;
        overflow-y: hidden;
    }

    footer .links nav #footer-menu-link, footer .links nav #footer-location-link, footer .links nav #footer-order-link {
        display: inline;
        font-size: 13px;
        text-decoration: none;
        padding: 1rem;
    }
  }

