@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-image: url('../img/bgs.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    align-items: center;
    justify-content: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.header {
  margin-top: 4rem;
    display: flex;
    background-color: rgba(0, 0, 0, 0);
}

.logo {
    flex: 0.25;
    height: 100px;
    justify-content: center;
    flex-direction: column;
    width: 100px;
    background-position: center;
}

.brand {
    flex: 0.75;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
}

.menu {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: rgba(255, 251, 0, 0);
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.menu-header {
  display: flex;
    background-color: rgba(134, 134, 134, 0.6);
  border-radius: 16px;
    padding: 0.4rem 1rem 0.4rem 1rem;

    margin: 1rem;
    flex-direction: column;
    align-items: left;
    font-size: 1rem;
    color: #ffffff;
}

.menu-items {
  display: flex;
    padding: 0.4rem;
    background-color: rgba(134, 134, 134, 0.6);


    border-radius: 8px;
    align-items: center;
    flex-direction: column;
    min-width: 100%;
}

.item-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24rem;
}

.item-name {
  display: flex;
    flex: 1;
    text-align: left;
    white-space: nowrap;
    font-size: 16px;
}

.item-description {
    flex: 1;
    text-align: left;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 1rem;
}

.item-price {
    flex: 15rem;
    text-align: right;
    margin-right: 2rem;
    font-size: 1rem;
}

.item-image {
    flex: 1;
    height: 90px;
    width: 90px;
    margin-right: 0.2rem;

}


dl,
dd {
  display: flex;
  direction: rtl;
  flex: 13rem;
  text-align: center;
  font-size: 0.70rem;
}



/*Footer*/
  
  
  @media (max-width:767px) {
    .footer-dark .item:not(.social) {
      text-align:center;
      padding-bottom:20px;
    }
  }
  
  .footer-dark .item.text {
    margin-bottom:36px;
  }
  
  @media (max-width:767px) {
    .footer-dark .item.text {
      margin-bottom:0;
    }
  }
 
  
  .footer-dark .copyright {
    text-align:center;
    margin-top: 1rem;
    font-size:14px;
    margin-bottom:0;
  }
  


@media only screen and (min-width:1200px){ /* XL */

    div{

                    font-size:40px;

    }

}

@media only screen and (min-width:992px) and (max-width:1199px){ /* L */

    div{

                    font-size:35px;
                    

    }

}

@media only screen and (min-width:768px) and (max-width:991px){ /* M */

    div{

                    font-size:30px;

    }

}

@media only screen and (min-width:576px) and (max-width:767px){ /* S */

    div{

                    font-size:25px;

    }

}

@media only screen and (max-width:575px){ /* XS */

    div{

                    font-size:20px;

    }

}

  /* Mobil Cihazlar için CSS */
  @media (max-width: 768px) {
    .menu-icerik {
      width: 100%;
      top: 50px; /* Mobilde yukarıdan 50px boşluk */
    }
}

