/* menu bölümü */

*{
    font-family: 'Poppins', sans-serif;
    left: 0;
    top: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: #b61a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: auto;
    border-left: 1px solid #0e5148;
    border-right: 1px solid #0e5148;
    scroll-behavior: smooth;
}

.mainText{
    text-align: center;
    color: #ffffff;
    font-size: 18px;
}
.mainLink{
    margin-left: 5px;
    margin-right: 5px;
}

.mainBtn{
    border-radius: 12px;
    font-size: 20px;
    color: #0e5148;
    padding: 2%;
    border: none;
    background-color: #ffffff;
    cursor: pointer;
    width: 20%;
    margin-bottom: 30px;
}

.menuHeader{
    width: 100%;
}

.menu{
    top: 0px;
    position: sticky;
    width: 100%;
    z-index: 999;
}

.kayanMenu{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: auto;
    overflow-y: scroll;
    background-color: #0e5148e8;
    box-shadow: 0 8px 16px rgba(0,0,0,.464);
    padding: 20px 10px 0px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter:blur(10px);
}
::-webkit-scrollbar {
    display:none;
  }

.menuBtn{
    background-color: #b61a1a;
    padding: 2%;
    margin-left: 5px;
    border-start-end-radius: 12px;
}

.menuLink{
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    text-wrap: nowrap;
}

main{
    width: 100%;
    padding: 0% 2% 0% 2%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
}

.menuH1{
    width: 100%;
    background-color: #0e5148;
    border-radius: 12px;
    margin-bottom: 25px;
}

.menuBaslik{
    font-size: 20px;
    color: #ffffff;
    padding: 4%;  
}

/* menu items*/
.menuBoxItem{
    width: 49%;
    background-color: #0e5148;
    height: 200px;
    border-radius: 12px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
    box-shadow: 0 28px 43px rgba(0, 0, 0, 0.08);
}

.menuBoxImg{
    height: 200px;
    width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px 0px 0px 12px;
}

.boxItemImg{
    width: 100%;
    object-fit: cover;
}

.menuBoxText{
    width: 50%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:flex-start;
    overflow-y: scroll ;
}

.menuBoxHead{
    font-size: 15px;
    margin: 0px;
    background-color: #f62424;
    color: #ffffff;
    border-radius: 0px 12px 0px 0px;
    text-align: center;
    width: 100%;
}

.menuBoxContent{
    padding-left: 7px;
    padding-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 15px;
    margin: 0px;
    word-wrap: wrap;
    height: auto;
    color: #ffffff;
}

.menuBoxContent > p {
    margin: 0px;
    text-transform:lowercase;
    
}

.menuBoxPrice{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin-top: 10px;
    color: #ffffff;
}
.menuBoxPrice > p{
    margin: 0px;
}

@media screen and (max-width:767px) {

    main{
        display: block;
        column-gap: 0px;
    }

    .menuBoxItem{
        width: 100%;
    }

    .menuH1{
        margin-bottom: 5px;
    }
    
}

.linkGrafih {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.macaron {
    display: none;
}

#hotdog, .hotdogs, #burger, .burgers{
    display: none;
}