@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200;300;400;500;600&family=Oswald:wght@300;400;500;600&display=swap');

:root {
	--black: rgb(22,22,22);
	--main: rgb(197,155,63);
	--sec: rgb(219,35,39);
}

body,
html {
	background: var(--black);
	color: #fff;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'IBM Plex Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Oswald', sans-serif;
}

.wrapper {
	width: 94%;
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}

.d-flex {
	display: flex;
	align-content: end;
	align-items: center;
	justify-items: center;
	justify-content: center;	
	flex-wrap: wrap;
	flex-direction: column;
}

.h100p {
	height: 100%;
}

header {
	background: var(--black);
	width: 100%;
	float: left;
	margin-bottom: 30px;
}

.header__top-section {
	width: 100%;
	float: left;
	clear: both;
	display: flex;
	align-content: end;
	align-items: center;
	justify-items: center;
	justify-content: center;
	position: relative;
	height: 70px;
	margin-bottom: 10px;
	
	flex-wrap: wrap;
	flex-direction: column;
}

.header__hot-links a {
	color: #fff;
	margin-left: 10px;
}

input.my-location {
	background: transparent;
	border: 2px solid #fff;
	outline: 2px solid rgba(255,255,255,0);
	border-radius: 10px;
	padding: 7px;
	color: #fff;
	transition: .3s all;
}

.header__hot-links input:focus {
	outline: 2px solid rgba(255,255,255,.4);
}

nav {
	width: 100%;
	margin-top: 15px;
	float: left;
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

nav a {
	color: #fff;
	text-decoration: none;
	flex: 1;
	text-align: center;
}

nav a:first-child {
	text-align: left;
	max-width: 85px;
}

.hamburger-menu {
	text-align: right;
	color: var(--main);
	max-width: 50px;
}

.banner {
	width: 100%;
	height: 600px;
	background: url('../images/banner.png') no-repeat center center;
	background-size: cover;
	position: relative;
	float: left;
	z-index: 1;
}

.banner::before {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background: rgba(0,0,0,0.4);
}

.banner--ver2 {
	background: var(--black) url('../images/banner2.png') no-repeat center center;
	background-size: cover;
}

.banner--ver2::before {
	display: none;
}

.logo {
	position: absolute;
	background: url('../images/logo.png') no-repeat center center;
	background-size: contain;
	left: 0;
	top: 0;
	text-decoration: none;
	width: 100px;
	height: 70px;
	display: block;
	filter: brightness(0%) invert(100%);
}

header nav {
	width: 100%;
	float: left;
}

.banner__info {
	width: 100%;
	text-align: center;
}

.banner__info .logo {
	position: static;
	display: inline-block;
	width: 200px;
	height: 170px;
}

.banner__info h1 {
	font-size: 48px;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 5px;
}

.banner__info p {
	margin-top: 5px;
	font-size: 21px;
	line-height: 1;
}

.dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: var(--main);
	border-radius: 100%;
	margin: 0 10px;
	position: relative;
	top: -3px;
}

.mt20 {
	margin-top: 20px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.clear {
	clear: both;
}

.button {
	padding: 15px 20px;
	color: #fff !important;
	text-decoration: none;
	font-weight: bold;
	border-radius: 6px;
	line-height: 1;
	display: inline-block;
	background: var(--main);
	min-width: 100px;
	border: 0;
	outline: none;
	cursor: pointer;
	transition: .3s all ease-in-out;
}

.button--main {
	background: var(--sec);
}

.button:hover {
	background: var(--main);
	box-shadow: 0 0 15px var(--main);
}

main {
	width: 100%;
	float: left;
	margin: 30px 0;
}

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

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

.main-text {
	color: #fff;
	font-size: 21px;
}

.main-text strong {
	color: var(--main);
}

.grid {
	width: 100%;
	float: left;
	position: relative;
	margin: 150px 0;
}

.grid .photo {
	width: 65%;
	height: 600px;
	background: url('../images/delivery.jpg') no-repeat center center;
	background-size: cover;
	position: absolute;
	left: 0;
	pointer-events: none;
}

.grid .text-box {
	width: 50%;
	height: 60%;
	background: var(--main);;
	box-sizing: border-box;
	padding: 30px;
	padding-right: 10%;
	padding-left: 5%;
	z-index: 100;
	position: relative;
}

.grid .text-box h2 {
	font-size: 34px;
	color: #000;
	margin-top: 0;
	font-weight: bold;
}

aside {
	width: 30%;
	float: left;
	box-sizing: border-box;
	padding-right: 15px;
}

aside h3 {
	font-size: 28px;
}

.foods {
	width: 70%;
	float: left;
	box-sizing: border-box;
	padding-left: 15px;
	display: flex;
	flex-wrap: wrap;
}

.food {
	max-width: 33%;
	min-width: 33%;
	margin-bottom: 30px;
}

.food__bottom {
	background: var(--main);
	width: 90%;
	margin-left: 5%;
	box-sizing: border-box;
	padding: 15px;
	position: relative;
	border-bottom-left-radius: 50px;
	color: #000;
	padding-top: 7px;
	text-align: center;
}

.food__bottom h3 {
	margin-top: 0;
	text-transform: uppercase;
	font-size: 27px;
	margin-bottom: 7px;
	text-align: center;
}

.food__bottom p {
	margin-top: 0;
}

.food__bottom .price {
	color: #fff;
	font-size: 27px;
	text-align: center;
}

.food__bottom::before {
	content: '';
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	top: -50%;
	z-index: -1;
	background: var(--main);
}

.add-cart {
	width: 40px;
	height: 40px;
	background: var(--sec);
	color: #fff;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	line-height: 1;
	border-radius: 100%;
	border: 0;
}

.food img {
	width: 100%;
	height: auto;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag {
	padding: 6px 12px;
	color: #fff;
	border: 2px solid #fff;
	text-decoration: none;
	border-radius: 10px;
}

.tag.active {
	background: var(--main);
	border-color: var(--main);
	color: #000;
}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-list li {
	font-size: 24px;
}

.category-list ul {
	list-style: inside disc;
	display: none;
	margin: 3px 0 10px;
	padding: 0;
}

.category-list li.active ul {
	display: block;
}

.category-list li.active {
	color: var(--main);
}

.category-list ul li {
	font-size: 16px;
	padding-left: 0;
	color: #fff;
}

.category-list a {
	text-decoration: none;
	font: inherit;
	color: inherit;
}

.tag-headline {
	background: #fff;
	color: #000;
	padding: 5px 15px;
	text-transform: uppercase;
	font-size: 24px;
	position: relative;
}

.tag-headline::after {
	content: '';
	width: 80%;
	height: 4px;
	background: var(--main);
	position: absolute;
	left: 10%;
	bottom: -25px;
}

.black-section,
.gold-section {
	width: 100%;
	float: left;
	clear: both;
	padding: 50px 0;
	background: var(--black) url('../images/ilustrace.png') no-repeat 10px 10px;
	background-size: 400px;
}

.categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.category {
	flex-basis: calc(33.33% - 10px);
	align-content: center;
	align-items: center;
	justify-content: center;
	display: flex;
	color: #fff;
	text-decoration: none;
	font-size: 28px;
	text-shadow: 0 0 10px rgba(0,0,0,0.3);
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.category::before {
	content: '';
	display: block;
	padding-top: 75%;
}

.category::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0,0,0,.4);
	z-index: -1;
	pointer-events: none;
}

.mt0 {
	margin-top: 0 !important;
}

.cover-img {
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: cover !important;
}

.gold-section {
	background: var(--main);
}

.instagram-accounts {
	width: 100%;
	float: left;
	clear: both;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.account {
	flex-basis: calc(33.33% - 10px);
}

.account__url {
	background: #000;
	border-radius: 5px;
	display: block;
	margin: 10px auto;
	width: 130px;
	text-align: center;
	padding: 4px 7px;
}

.account__image {
	width: 100%;
	height: 100px;
	background-size: contain !important;
}

footer {
	width: 100%;
	float: left;
	clear: both;
	padding: 140px 0 10px;
	background-image: url('../images/strom_leva_strana.png'), url('../images/strom_prava_strana.png');
	background-position: left, right;
	background-repeat: no-repeat, no-repeat;
	background-size: 300px, 300px;
}

footer a {
	color: #fff;
}

footer li {
	list-style: none;
	line-height: 27px;
}

footer ul {
	padding: 0;
	text-align: center;
}

footer .logo {
	left: 0;
	right: 0;
	margin: auto;
	top: -145px;
	width: 150px;
	height: 150px;
}

.copyright {
	text-align: center;
	padding: 10px 0;
	width: 100%;
	float: left;
	font-size: 13px;
}

.on-mobile {
	display: none;
}

.overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
	pointer-events: none;
	opacity: 0;
	transition: .3s all;
	z-index: 1000;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.modal {
	width: 94%;
	max-width: 460px;
	margin: 0 auto;
	position: fixed;
	pointer-events: none;
	opacity: 0;
	transition: .3s all;
	z-index: 100000;
	background: var(--black);
	border: 5px solid var(--main);
	border-radius: 10px;
	box-sizing: border-box;
	padding: 20px;
}

.modal h2 {
	margin-top: 0;
}

.modal__headline {
	width: calc(100% - 160px);
	float: left;
}

.close {
	color: #fff;
	font-size: 48px;
	line-height: 47px;
	width: 50px;
	height: 50px;
	text-align: center;
	cursor: pointer;
	border-radius: 100%;
	background: var(--main);
	position: fixed;
	position: absolute;
	right: -20px;
	top: -20px;
	
}

.modal__top img {
	float: right;
}

.modal__content ,
.modal__price {
	width: 100%;
	float: left;
	clear: both;
	display: flex;
	flex-wrap: wrap;
}

.modal__price {
	margin-top: 20px;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

.modal__price h3 {
	margin: 0;
	font-size: 24px;
}

.modal__price strong {
	color: var(--main);
}

.overlay.active,
.overlay.active .modal {
	pointer-events: all;
	opacity: 1;
}

.custom-checkbox {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkbox-container {
  min-width: 40%;
  max-width: 40%;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  padding-top: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--black);
  border: 1px solid var(--main);
  border-radius: 7px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--black);
  border: 1px solid var(--main);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--main);
}

.checkmark:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40%;
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


@media (max-width: 764px) {
	.header__hot-links {
		display: none;
	}
	
	header nav a:not(.hamburger-menu) {
		display: none;
	}
	
	.header__top-section {
		margin-bottom: 0;
	}
	
	.logo {
		left: 0;
		right: 0;
		margin: auto;
		top: 10px;
	}
	
	.hamburger-menu {
		position: absolute;
		right: 10px;
		top: 10px;
		font-size: 55px;
	}
	
	header nav {
		margin: 0;
	}
	
	header nav.open {
		width: calc(100% + 6%);
		height: 100vh;
		display: block;
		position: absolute;
		background: rgba(0,0,0,.7);
		backdrop-filter: blur(5px);
		top: 0;
		z-index: 10000;
		left: -3%;
		box-sizing: border-box;
		padding-top: 70px;
	}
	
	header nav.open a:not(.hamburger-menu) {
		font-size: 21px;
		text-align: center;
		width: 100%;
		max-width: 100%;
		height: 50px;
		line-height: 50px;
		display: block !important;
	}
	
	.banner {
		height: 80vh;
	}
	
	.banner__info .logo {
		width: 100px;
		height: 85px;
	}
	
	.banner__info h1 {
		font-size: 38px;
		margin-top: 15px;
	}
	
	.banner__info p {
		font-size: 15px;
	}
	
	.grid .photo {
		width: 100%;
		height: 300px;
		position: static;
	}
	
	.grid .text-box {
		width: 100%;
	}
	
	.grid {
		margin: 40px 0;
	}
	
	aside,
	.foods {
		width: 100%;
		padding: 0;
	}
	
	aside {
		display: none;
	}
	
	.on-mobile {
		display: block;
	}
	
	.filtration-link {
		text-align: center;
		color: #fff;
		text-decoration: underline;
	}
	
	aside.active {
		display: block;
	}
	
	.food {
		max-width: 50%;
	}
	
	.categories {
		overflow: scroll;
		white-space: nowrap;
		margin-bottom: 50px;
		display: flex;
		flex-wrap: nowrap;
	}
	
	.category {
		min-width: 200px;
		max-width: 200px;
		margin-right: 10px;
		color: #fff !important;
		font-size: 21px;
		flex: 1;
	}
	
	.black-section {
		background: var(--black);
		padding: 0;
		padding-bottom: 20px;
	}
	
	.instagram-accounts {
		display: block;
		text-align: center;
	}
	
	.account {
		display: inline-block;
		width: 48%;
	}
	
	footer {
		background-position: left 15px, right 85px;
		background-repeat: no-repeat, no-repeat;
		background-size: 140px, 140px;	
	}
	
	footer a {
		color: #fff !important;
	}
}








