/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --first-color: #d38e49;
  --first-color-alt: #d38e49;
  --wrong-color: #ff0000;
  --success-color: #09ff00;
  --text-color-light: #A6A6A6;
  --title-color: #F1F3F2;
  --text-color: #C7D1CC;
  --body-color: #171717;
  --container-color: #171717;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

.evoeszkoz{
  color:#C7D1CC;
}

.evoeszkoz:hover{
  color:#D38E49;
}

@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== BASE ==========*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: #F1F3F2;
  --text-color: #C7D1CC;
  --body-color: #171717;
  --container-color: #171717;
}

/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

body {
  margin: 0 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

sup {
  color: var(--first-color);
  position: relative;
  top: -6px;
  left: 2px;
  font-size: 12px;
  font-weight: bold;
}

sub {
  color: var(--text-color);
  position: relative;
  top: -4px;
  left: 0px;
  font-size: 12px;
  font-weight: bold;
}

hr{
  height: 1px;
  width: 100%;
  color: #383838;
  border-radius: 50%;
  border-top: 1px solid #d38e49;
  border-bottom: 1px solid #d38e49;
  border-left: 1px solid #d38e49;
  border-right: 1px solid #d38e49;
  /* border-top: 1px solid #383838;
  border-bottom: 1px solid #383838;
  border-left: 1px solid #383838;
  border-right: 1px solid #383838; */
}

/* .valasztas{
  display: flex;
  width: 100%;
  gap: 80px;
} */
/*========== Pre-Order ==========*/
#datepicker::placeholder,
#timepicker::placeholder{
  color: #7a7a7a;
  font-weight: 600;
}
#datepicker,
#timepicker{
  background: #2e2e2e;
  outline: none;
  border: none;
  padding: 10px;
  color: #d38e49;
}
/* #checkelorendeles{
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #d38e49;
  border-radius: 50%;
  width: 10px;
  height: 10px;
} */
.list-center{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .listcenter{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
}
.list-preorder{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #D38E49;
}
.list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(350px, 1fr));
    width: 90%;
    grid-template-rows: masonry;
}
.list-elem{
    border: 0px solid #D38E49;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    box-shadow: 0px 0px 10px red;
    background: linear-gradient(rgba(255, 0, 0, 0.1) 0%, rgb(23, 23, 23) 100%);
}
.list-elem.active{
  box-shadow: 0px 0px 10px green;
  background: linear-gradient(rgba(0, 128, 0, 0.1) 0%, rgb(23, 23, 23) 100%);
}
.list-name{
  color: #D38E49;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  width: 100%;
}
.list-address,
.list-phone,
.list-datetime{
  font-size: 16px;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 5px;
  color: #fff;
}
.list-datetime{
  color: #D38E49;
  font-size: 20px;
  font-weight: bold;
}
.list-order{
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px;
}
.list-price{
  color: #D38E49;
  font-size: 20px;
  font-weight: bold;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.list-print{
  color: green;
  font-size: 20px;
  font-weight: bold;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
table.darkTable {
  /* font-family: "Arial Black", Gadget, sans-serif; */
  width: 100%;
  border-collapse: collapse;
}
table.darkTable td, table.darkTable th {
  padding: 3px 2px;
}
table.darkTable tbody td {
  font-size: 14px;
  border: 0px solid red;
  padding: 5px 5px;
}
table.darkTable tbody td:nth-child(1) {
  width: 70%;
  text-align: left;
}
table.darkTable tbody td:nth-child(2) {
  width: 12%;
  text-align: right;
}
table.darkTable tbody td:nth-child(3) {
  width: 18%;
  text-align: right;
}
table.darkTable tbody tr:nth-child(odd) {
  background: #202020;
}
table.darkTable tfoot tr:nth-child(even) {
  background: #202020;
}
table.darkTable tfoot td {
  font-size: 14px;
  padding: 5px 5px;
}
table.darkTable tfoot td:nth-child(1) {
  font-size: 14px;
  width: 82%;
  text-align: left;
}
table.darkTable tfoot td:nth-child(2) {
  font-size: 14px;
  width: 18%;
  text-align: right;
}
/*========== APP ==========*/
section.top-products{
  background:var(--light);
  margin: 20px 0;
}

.section-heading{
  text-align:center;
  Position:relative;
  margin-bottom:6rem;
}
.section-heading:after{
  content:'';
  display:block;
  width: 100%;
  height:30px;
  background-image:url(../icons/hr.svg);
  background-repeat: no-repeat;
  background-position: center;
  position:absolute;
  bottom:-40px;
}
section.top-products .food-slider .food-card{
  background:var(--heaven);
  padding:1.5rem 0;
  border-radius: 4px;
  height: 400px;
  box-shadow: 0 2px 4px #d38e4926;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
section.top-products .food-slider .food-card .product-image img{
  width:80%;
  height:200px;
  object-fit:contain;
  padding-bottom:1rem;
}
hr{
  /* border:1px solid var(--light); */
  opacity: 0.4;
  margin:1rem 0;
}
section.top-products .food-slider .food-card h2{
  font-size:1.2rem;
  margin-bottom:0.25rem;
}
.text-center{
  text-align: center;
}
section.top-products .food-slider .food-card .stars{
  margin-bottom:0.5rem;
  font-size: 14px;
}
section.top-products .food-slider .food-card .stars img{
  margin-right:0.25rem;
}
section.top-products .food-slider .food-card .price{
  color:var(--danger);
  margin-bottom: 1rem;
}
section.top-products .food-slider .food-card button{
  font-family:var(--body-font);
  color:var(--secondary);
  background:var(--heaven);
  border:2px solid var(--primary);
  border-radius: .5rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display:flex;
  align-items: center;
  width:135px;
  font-size:0.8rem;
  font-weight: normal;
  cursor: pointer;
  transition:all .3s ease;
  -webkit-transition:all .3s ease;
  -moz-transition:all .3s ease;
  -ms-transition:all .3s ease;
  -o-transition:all .3s ease;
}
section.top-products .food-slider .food-card button:hover{
  /* background:var(--primary); */
  background: #d38e49;
  color: #fff;
}
.food-slider .food-card button img{
  background:var(--primary);
  color:var(--light);
  padding:0.50rem;
  height:32px;
  margin-right:1.2rem;
}

.slick-slide{
  margin:0 27px;
}
.slick-list{
  margin:0 -27px;
}
.top-products .slider-btn{
  width: 30px;
  height:30px;
  border: none;
  background:var(--primary);
  border-radius:4px;
  -webkit-border-radius:4px;
  -moz-border-radius:4px;
  -ms-border-radius:4px;
  -o-border-radius:4px;
  cursor:pointer;
  outline:none;
}

.prev-btn{
  position:absolute;
  top:46%;
  left:-3rem;
  z-index: 1;
}
.next-btn{
  position:absolute;
  top:46%;
  right:-3rem;
  z-index: 1;
}
.top-products .slider{
  position: relative;
}
.top-products .btn-wrapper{
  margin-top:2rem;
}
.slick-track{
  padding:1rem 0;
}

section.about-meal img{
  width:85%;
}

.flex{
  display:flex;
}

.items-center{
  align-items: center;
}

.justify-center{
  justify-content:center;
}

.magic-shadow-sm{
  position: relative;
  background:var(--heaven);
}
.magic-shadow-sm:after{
  content:'';
  display:block;
  width:100%;
  height:69px;
  /* background-image:url(../icons/shadow-sm.svg); */
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom:-20px;
  left:50%;
  transform:translateX(-50%);
  z-index:-1;
  -webkit-transform:translateX(-50%);
  -moz-transform:translateX(-50%);
  -ms-transform:translateX(-50%);
  -o-transform:translateX(-50%);
}

.container {
  width:80%;
  padding:0 15px;
  margin:0 auto;
}

/*========= Kosár ==========*/

table.kosar {
  border: 0px solid #D38E49;
  background-color: #171717;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

table.kosar td,
table.kosar th {
  border: 0px solid #D38E49;
  padding: 10px 0px;
}

table.kosar tbody td {
  font-size: 14px;
  color: #FFFFFF;
}

table.kosar tr:nth-child(even) {
  background: #202020;
}

table.kosar thead {
  background: #171717;
  background: -moz-linear-gradient(top, #515151 0%, #2e2e2e 66%, #171717 100%);
  background: -webkit-linear-gradient(top, #515151 0%, #2e2e2e 66%, #171717 100%);
  background: linear-gradient(to bottom, #515151 0%, #2e2e2e 66%, #171717 100%);
}

table.kosar thead th {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
}

table.kosar tfoot td {
  font-size: 16px;
  color: #D38E49;
  text-align: right;
  font-weight: bold;
}

table.kosar td i {
  color: #fff;
}

table.kosar td i:hover {
  color: #D38E49;
}

/*========= input ==========*/

#content1 {
  display: none;
}

#content2 {
  display: none;
}

#content3 {
  display: none;
}

label {
  font-size: 15px;
  font-weight: bold;
}

#toggle1:checked~#content1 {
  display: block;
}

#toggle11:checked~#content1 {
  display: block;
}

#toggle2:checked~#content2 {
  display: block;
}

#toggle3:checked~#content3 {
  display: block;
}

.checkbox {
  appearance: none;
  background-color: #171717;
  border: 2px solid #414141;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: relative;
}

.checkbox:checked {
  appearance: none;
  border: 2px solid #D38E49;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: relative;
  transition: border 600ms ease-in-out;
}

.checkbox::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  padding: 5px;
  background-color: #171717;
  border-radius: 50%;
  transition: background 400ms ease-in-out;
}

.checkbox:checked::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  padding: 5px;
  border-radius: 50%;
  background-color: #D38E49;
  transition: background 400ms ease-in-out;
}

.checkboxx:checked::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  padding: 6px;
  background-color: #D38E49;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transition: background 250ms ease-in-out;
}

.checkbox:checked+label {
  color: #D38E49;
  transition: color 400ms ease-in-out;
}

.karacsony {
  width: 100%;
  position: relative;
}

.karacsony::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #202020;
  position: absolute;
  top: 27px;
  left: 32px;
  z-index: -1;
}

.karacsony img {
  width: 100%;
  height: 100%;
  margin: 0;
}

/*========== Rendelések ==========*/

.rendelesek {
  width: 100%;
  margin: 10px auto;
  padding: 20px 12px 10px 20px;
  background-color: #202020;
  border-radius: 20px;
}

.rendeles-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.rendeles-flex div {
  flex-basis: 90px;
}

table.rendelestabla {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

table.rendelestabla td,
table.rendelestabla th {
  padding: 3px 4px;
}

table.rendelestabla td:nth-child(1) {
  width: 120px;
}

table.rendelestabla td:nth-child(2) {
  width: 60px;
}

table.rendelestabla td:nth-child(3) {
  width: 60px;
}

table.rendelestabla tbody tr:nth-child(even) {
  background-color: #2e2e2e;
}

table.rendelestabla tbody td:nth-child(1) {
  text-align: left;
}

table.rendelestabla tbody td:nth-child(2) {
  text-align: center;
}

table.rendelestabla tbody td:nth-child(3) {
  text-align: right;
}

table.rendelestabla tfoot td:nth-child(1) {
  font-weight: bold;
  text-align: left;
}

table.rendelestabla tfoot td:nth-child(2) {
  font-weight: bold;
  text-align: right;
}

/* table.rendelestabla tbody {
  text-align: left;
} */

/*========== Rendelések ==========*/

/*========== Tab Content ==========*/

.tab {
  overflow: hidden;
  background-color: transparent;
  display: flex;
  gap: 1px;
  justify-content: center;
  align-items: center;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  font-weight: bold;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: transparent;
  color: #d38e49;
}

/* Create an active/current tablink class */
.tab button.tabactive {
  background-color: transparent;
  color: #d38e49;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*========== CLASS CSS ==========*/
.section {
  padding: 4rem 0 2rem;
}

.section-title,
.section-subtitle,
.section-subtitle-wrong,
.section-subtitle-success {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.section-subtitle-wrong {
  display: block;
  color: var(--wrong-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.section-subtitle-success {
  display: block;
  color: var(--success-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 1200px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

.l-header2 {
  width: 100%;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

/*========== NAV ==========*/
.nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav2 {
  max-width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1007px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: .4s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }
}

.nav__sajat {
  color: var(--text-color);
  font-size: 12px;
}

.nav__sajat:hover {
  color: var(--first-color);
}

.nav__item {
  margin-left: var(--mb-5);
  margin-bottom: var(--mb-2);
}

.nav__link,
.nav__logo,
.nav__toggle {
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__link {
  transition: .3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.3rem;
  cursor: pointer;
}

/* Show menu */
.show-menu {
  top: var(--header-height);
}

/* Active menu */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 4px #D2A77B1a;
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: #D2A77B80;
  border-radius: .4rem;
  z-index: var(--z-tooltip);
  transition: .4s;
  visibility: hidden;
}

.scrolltop:hover {
  background-color: var(--first-color-alt);
}

.scrolltop__icon {
  font-size: 1.8rem;
  color: var(--body-color);
}

/* Show scrolltop */
.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/
.home__container {
  height: calc(100vh - var(--header-height));
  align-content: center;
}

.home__title {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

.home__subtitle {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-4);
}

.home__img {
  width: 300px;
  justify-self: center;
}

.home__imgg {
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*========== BUTTONS ==========*/
button {
  border: 0px;
  background: #D2A77B80;
  display: inline-block;
  color: #FFF;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: .3s;
}

button:hover {
  background: var(--first-color);
}

.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #FFF;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: .3s;
}

.button.active {
  color: #000;
}

.button2 {
  display: inline-block;
  background-color: var(--first-color);
  color: #000;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: .3s;
  text-align: center;
}

.button2.active {
  color: #fff;
}

.button:hover {
  background-color: var(--first-color-alt);
}

/*========== ABOUT ==========*/
.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: var(--mb-3);
}

.about__img {
  width: 280px;
  border-radius: .5rem;
  justify-self: center;
}

/*========== SERVICES ==========*/
.services__container {
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services__content {
  text-align: center;
}

.services__img {
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}

.services__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.services__description {
  padding: 0 1.5rem;
}

/*========== MENU ==========*/
.rendeles {
  max-width: 1200px;
  border: 0px solid red;
  display: grid;
  gap: 5px;
  justify-content: center;
}

.rendeles2 {
  grid-template-columns: repeat(2, 130px);
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.rendeles3 {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.rendeles3 a {
  width: 120px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu__container {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.menu__container2 {
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
}

.menu__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px #d38e4926;
  padding: .75rem;

}

.menu__img {
  width: 100px;
  align-self: center;
  margin-bottom: var(--mb-2);
}

.menu__name,
.menu__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.menu__name {
  font-size: var(--normal-font-size);
}

.menu__detail,
.menu__preci {
  font-size: var(--small-font-size);
}

.menu__detail {
  margin-bottom: var(--mb-1);
}

.menu__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: .5rem 0 .5rem 0;
}

/*========== APP ==========*/
.app__data {
  text-align: center;
}

.app__description {
  margin-bottom: var(--mb-5);
}

.app__stores {
  margin-bottom: var(--mb-4);
}

.app__store {
  width: 120px;
  margin: 0 var(--mb-1);
}

.app__img {
  width: 230px;
  justify-self: center;
}

/*========== CONTACT ==========*/
.contact__container {
  text-align: center;
}

.contact__description {
  margin-bottom: var(--mb-3);
  text-align: center;
}

.contact__button {
  justify-self: center;
  text-align: center;
}

/*========== FOOTER ==========*/
.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.footer__description {
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
}

.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}


.footer__social .facebook {
  font-size: 1.5rem;
  padding: 5px;
  background: #171717;
  border-radius: 5px;
  color: #FFF;
}

.footer__social .facebook:hover {
  font-size: 1.5rem;
  background: #4267B2;
  color: #fff;
}

.footer__social .instagram {
  font-size: 1.5rem;
  padding: 5px;
  background: #171717;
  border-radius: 5px;
  color: #FFF;
}

.footer__social .instagram:hover {
  background: linear-gradient(30deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4);
  color: #fff;
  font-size: 1.5rem;
}

.footer__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.footer__link {
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 3.5rem;
}

.signup {
  width: 100%;
  margin: 0 auto;
  border: 0px solid red;
  background: #202020;
  border-radius: 20px;
}

.form-style-1 {
  margin: 10px auto;
  max-width: 99%;
  padding: 20px 12px 10px 20px;
}

.form-style-1 li {
  padding: 0;
  display: block;
  list-style: none;
  margin: 10px 0 0 0;
}

.form-style-1 label {
  margin: 0 0 3px 0;
  padding: 0px;
  display: block;
  font-weight: bold;
}

::placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.form-style-1 input[type=text],
.form-style-1 input[type=date],
.form-style-1 input[type=datetime],
.form-style-1 input[type=number],
.form-style-1 input[type=search],
.form-style-1 input[type=time],
.form-style-1 input[type=url],
.form-style-1 input[type=email],
.form-style-1 input[type=password],
textarea,
select {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: 0px solid #BEBEBE;
  border-radius: 3px;
  background: #414141;
  color: #fff;
  padding: 7px;
  margin: 3px 0;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
}

textarea {
  resize: none;
}

.form-style-1 input[type=text]:focus,
.form-style-1 input[type=date]:focus,
.form-style-1 input[type=datetime]:focus,
.form-style-1 input[type=number]:focus,
.form-style-1 input[type=search]:focus,
.form-style-1 input[type=time]:focus,
.form-style-1 input[type=url]:focus,
.form-style-1 input[type=email]:focus,
.form-style-1 input[type=password]:focus,
.form-style-1 textarea:focus,
.form-style-1 select:focus {
  -moz-box-shadow: 0 0 3px #D38E49;
  -webkit-box-shadow: 0 0 3px #D38E49;
  box-shadow: 0 0 3px #D38E49;
  border: 0px solid #D38E49;
}

.form-style-1 .field-divided {
  width: 100%;
}

.form-style-1 .field-divided2 {
  width: 100%;
}

.form-style-1 .field-long {
  width: 100%;
}

.form-style-1 .field-select {
  width: 100%;
}

.form-style-1 .field-textarea {
  width: 100%;
  height: 100px;
}

.form-style-1 input[type=submit],
.form-style-1 input[type=button] {
  background: #D38E49;
  padding: 8px 15px 8px 15px;
  border: none;
  color: #fff;
  font-weight: bold;
}

.form-style-1 input[type=submit]:hover,
.form-style-1 input[type=button]:hover {
  background: #ee9f50;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.form-style-1 .required {
  color: red;
}

.collapsible {
  background-color: #202020;
  color: #d38e49;
  cursor: pointer;
  padding: 10px 5px;
  margin-bottom: 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

.collapsible.active,
.collapsible:hover {
  background-color: #383838;
}

.collapsible:after {
  content: '\002B';
  color: #d38e49;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.collapsible.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: transparent;
}

/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px) {

}
@media screen and (min-width: 576px) {

  .container{
    max-width:540px;
  }

  section.top-products .food-slider .food-card button{
    font-size:0.8rem;
  }

  .rendelesek {
    width: 100%;
  }

  table.rendelestabla td:nth-child(1) {
    width: 50%;
  }

  table.rendelestabla td:nth-child(2) {
    width: 25%;
  }

  table.rendelestabla td:nth-child(3) {
    width: 25%;
  }

  .home__title {
    font-size: var(--h1-font-size);
    color: var(--first-color);
    margin-bottom: var(--mb-1);
  }

  .home__imgg {
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .collapsible {
    background-color: #202020;
    color: #d38e49;
    cursor: pointer;
    padding: 10px 5px;
    margin-bottom: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
  }

  .collapsible.active,
  .collapsible:hover {
    background-color: #383838;
  }

  .collapsible:after {
    content: '\002B';
    color: #d38e49;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .collapsible.active:after {
    content: "\2212";
  }

  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
  }

  .home__container,
  .about__container,
  .app__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  body {
    margin: 0;
  }

  .rendeles2 {
    grid-template-columns: repeat(3, 130px);
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
  }

  .about__data,
  .about__initial,
  .app__data,
  .app__initial {
    text-align: initial;
  }

  .about__img,
  .app__img {
    width: 380px;
    order: -1;
  }

  .menu__container2 {
    grid-template-columns: repeat(2, 250px);
    column-gap: 2rem;
  }

  .menu__container_foc {
    grid-template-columns: repeat(1, 300px);
    column-gap: 4rem;
  }

  .contact__container {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }

  .contact__button {
    justify-self: center;
    text-align: center;
  }
}


@media screen and (min-width: 768px) {
  .rendelesek {
    width: 100%;
  }

  table.rendelestabla td:nth-child(1) {
    width: 150px;
  }

  table.rendelestabla td:nth-child(2) {
    width: 60px;
  }

  table.rendelestabla td:nth-child(3) {
    width: 60px;
  }

  .collapsible {
    background-color: #202020;
    color: #d38e49;
    cursor: pointer;
    padding: 10px 5px;
    margin-bottom: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
  }

  .form-style-1 .field-textarea {
    width: 50%;
    height: 100px;
  }

  .collapsible.active,
  .collapsible:hover {
    background-color: #383838;
  }

  .collapsible:after {
    content: '\002B';
    color: #d38e49;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .collapsible.active:after {
    content: "\2212";
  }

  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
  }

  .rendeles2 {
    grid-template-columns: repeat(4, 130px);
    justify-content: center;
    text-align: center;
  }

  body {
    margin: 0;
  }

  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: var(--mb-2);
  }

  .section {
    padding-top: 8rem;
  }

  .change-theme {
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container {
    height: 100vh;
    justify-items: center;
  }

  .services__container,
  .menu__container {
    margin-top: var(--mb-6);
  }

  .menu__container {
    grid-template-columns: repeat(2, 300px);
    column-gap: 4rem;
  }

  .menu__container_foc {
    grid-template-columns: repeat(2, 300px);
    column-gap: 4rem;
  }

  .menu__content {
    padding: 1.5rem;
  }

  .menu__img {
    width: 130px;
    height: 90px;
  }

  .app__store {
    margin: 0 var(--mb-1) 0 0;
  }

  .signup {
    width: 50%;
    margin: 0 auto;
    border: 0px solid red;
    background: #202020;
    border-radius: 20px;
  }
  .home__imgg {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media screen and (min-width: 800px){
  section.top-products .food-slider .food-card button{
    font-size:0.8rem;
  }
}

@media screen and (min-width: 910px) {
  .menu__container2 {
    grid-template-columns: repeat(3, 250px);
    column-gap: 4rem;
  }
}
@media screen and (min-width: 960px) {
  .container {
    max-width: 930px;
  }

  section.top-products .food-slider .food-card button{
    font-size:0.8rem;
  }

  .rendelesek {
    width: 100%;
  }

  .collapsible {
    background-color: #202020;
    color: #d38e49;
    cursor: pointer;
    padding: 10px 5px;
    margin-bottom: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
  }

  .collapsible.active,
  .collapsible:hover {
    background-color: #383838;
  }

  .collapsible:after {
    content: '\002B';
    color: #d38e49;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .collapsible.active:after {
    content: "\2212";
  }

  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
  }

  .rendeles2 {
    grid-template-columns: repeat(5, 130px);
    justify-content: center;
    text-align: center;
  }

  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }


  .nav__item {
    margin-left: var(--mb-3);
    margin-bottom: 0;
  }


  .menu__container {
    grid-template-columns: repeat(3, 300px);
    column-gap: 4rem;
  }

  .menu__container2 {
    grid-template-columns: repeat(3, 250px);
    column-gap: 4rem;
  }

  .menu__container_foc {
    grid-template-columns: repeat(2, 300px);
    column-gap: 4rem;
  }

  .home__img {
    width: 500px;
  }

  .about__container,
  .app__container {
    column-gap: 7rem;
  }

  .signup {
    width: 50%;
    margin: 0 auto;
    border: 0px solid red;
    background: #202020;
    border-radius: 20px;
  }

  /*========= Kosár ==========*/

  table.kosar {
    border: 0px solid #D38E49;
    background-color: #171717;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
  }

  table.kosar td,
  table.kosar th {
    border: 0px solid #D38E49;
    padding: 10px 10px;
  }

  table.kosar tbody td {
    font-size: 14px;
    color: #FFFFFF;
  }

  table.kosar tr:nth-child(even) {
    background: #202020;
  }

  table.kosar thead {
    background: #171717;
    background: -moz-linear-gradient(top, #515151 0%, #2e2e2e 66%, #171717 100%);
    background: -webkit-linear-gradient(top, #515151 0%, #2e2e2e 66%, #171717 100%);
    background: linear-gradient(to bottom, #515151 0%, #2e2e2e 66%, #171717 100%);
  }

  table.kosar thead th {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
  }

  table.kosar tfoot td {
    font-size: 16px;
    color: #D38E49;
    text-align: right;
    font-weight: bold;
  }
}

@media screen and (min-width: 1007px) {
  .container {
    max-width: 960px;
  }

  .nav__toggle {
    display: none;
  }

  .rendelesek {
    width: 80%;
  }

  table.rendelestabla td:nth-child(1) {
    width: 150px;
  }

  table.rendelestabla td:nth-child(2) {
    width: 60px;
  }

  table.rendelestabla td:nth-child(3) {
    width: 60px;
  }

  .nav__list {
    display: flex;
  }

  .menu__container_foc {
    grid-template-columns: repeat(2, 300px);
    column-gap: 4rem;
  }

}

@media screen and (min-width: 1100px){
  section.top-products .food-slider .food-card button{
    font-size:0.8rem;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1152px;
  }

  section.top-products .food-slider .food-card button{
    font-size:0.8rem;
  }

  .rendelesek {
    width: 70%;
  }

  .collapsible {
    background-color: #202020;
    color: #d38e49;
    cursor: pointer;
    padding: 10px 5px;
    margin-bottom: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
  }

  .collapsible.active,
  .collapsible:hover {
    background-color: #383838;
  }

  .collapsible:after {
    content: '\002B';
    color: #d38e49;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .collapsible.active:after {
    content: "\2212";
  }

  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
  }

  .rendeles2 {
    grid-template-columns: repeat(9, 130px);
    justify-content: center;
    text-align: center;
  }

  .signup {
    width: 50%;
    margin: 0 auto;
    border: 0px solid red;
    background: #202020;
    border-radius: 20px;
  }

  .form-style-1 {
    margin: 10px auto;
    max-width: 99%;
    padding: 20px 12px 10px 20px;
  }

  .form-style-1 li {
    padding: 0;
    display: block;
    list-style: none;
    margin: 10px 0 0 0;
  }

  .form-style-1 label {
    margin: 0 0 3px 0;
    padding: 0px;
    display: block;
    font-weight: bold;
  }

  ::placeholder {
    color: #fff;
    opacity: 1;
    /* Firefox */
  }

  .form-style-1 input[type=text],
  .form-style-1 input[type=date],
  .form-style-1 input[type=datetime],
  .form-style-1 input[type=number],
  .form-style-1 input[type=search],
  .form-style-1 input[type=time],
  .form-style-1 input[type=url],
  .form-style-1 input[type=email],
  .form-style-1 input[type=password],
  textarea,
  select {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 0px solid #BEBEBE;
    border-radius: 3px;
    background: #414141;
    color: #fff;
    padding: 7px;
    margin: 0px;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
  }

  textarea {
    resize: none;
  }

  .form-style-1 input[type=text]:focus,
  .form-style-1 input[type=date]:focus,
  .form-style-1 input[type=datetime]:focus,
  .form-style-1 input[type=number]:focus,
  .form-style-1 input[type=search]:focus,
  .form-style-1 input[type=time]:focus,
  .form-style-1 input[type=url]:focus,
  .form-style-1 input[type=email]:focus,
  .form-style-1 input[type=password]:focus,
  .form-style-1 textarea:focus,
  .form-style-1 select:focus {
    -moz-box-shadow: 0 0 3px #D38E49;
    -webkit-box-shadow: 0 0 3px #D38E49;
    box-shadow: 0 0 3px #D38E49;
    border: 0px solid #D38E49;
  }

  .form-style-1 .field-divided {
    width: 49.6%;
  }

  .form-style-1 .field-divided2 {
    width: 32.8%;
  }

  .form-style-1 .field-long {
    width: 100%;
  }

  .form-style-1 .field-select {
    width: 100%;
  }

  .form-style-1 .field-textarea {
    width: 50%;
    height: 100px;
  }

  .form-style-1 input[type=submit],
  .form-style-1 input[type=button] {
    background: #D38E49;
    padding: 8px 15px 8px 15px;
    border: none;
    color: #fff;
    font-weight: bold;
  }

  .form-style-1 input[type=submit]:hover,
  .form-style-1 input[type=button]:hover {
    background: #ee9f50;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
  }

  .form-style-1 .required {
    color: red;
  }

  .menu__container_foc {
    grid-template-columns: repeat(3, 300px);
    column-gap: 4rem;
  }
}
@media screen and (min-width: 1220px) {
  .menu__container2 {
    grid-template-columns: repeat(4, 250px);
    column-gap: 4rem;
  }
}