:root {
	--main: #009241;
	--main-light: #8cdeb1;
	--main-rgb: 99, 102, 241;
	--blue: #41b8ed;
	--yellow: #f5ca01;
	--green-light: #d1fae5;
	--green-dark: #07976b;
	--green: #19bb85;
	--yellow-light: #fceec0; 
	--yellow-dark: #de8922;
	--red: #f4415f;
	--red-light: #ffe4e6;
}

/* Home page styles */
@font-face {
    font-family: 'cakefont';
    src: url('../font/cakedingbats-webfont.eot');
    src: url('../font/cakedingbats-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/cakedingbats-webfont.woff2') format('woff2'),
    url('../font/cakedingbats-webfont.woff') format('woff'),
    url('../font/cakedingbats-webfont.ttf') format('truetype'),
    url('../font/cakedingbats-webfont.svg#cake_dingbatsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  src:  url('../font/icomoon/fonts/icomoon.eot?h7vcyl');
  src:  url('../font/icomoon/fonts/icomoon.eot?h7vcyl#iefix') format('embedded-opentype'),
    url('../font/icomoon/fonts/icomoon.ttf?h7vcyl') format('truetype'),
    url('../font/icomoon/fonts/icomoon.woff?h7vcyl') format('woff'),
    url('../font/icomoon/fonts/icomoon.svg?h7vcyl#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-banner:before {
  content: "\e90f";
}
.icon-abacus:before {
  content: "\e90b";
}
.icon-question:before {
  content: "\e90c";
}
.icon-thumb-down:before {
  content: "\e90d";
}
.icon-thumb-up:before {
  content: "\e90e";
}
.icon-store:before {
  content: "\e909";
}
.icon-dashboard:before {
  content: "\e90a";
}
.icon-logout:before {
  content: "\e900";
}
.icon-settings:before {
  content: "\e901";
}
.icon-ftp:before {
  content: "\e902";
}
.icon-email:before {
  content: "\e903";
}
.icon-users:before {
  content: "\e904";
}
.icon-category:before {
  content: "\e905";
}
.icon-article:before {
  content: "\e906";
}
.icon-pizza:before {
  content: "\e907";
}
.icon-money:before {
  content: "\e908";
}

.mb-0 {
	margin-bottom: 0;
}

body, html {
	height: 100%;
	font-size: 18px;
	font-family: "Open Sans", sans-serif;;
}

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	scroll-padding-top: 0px;
}

body {
	background: #efebdb;
	margin: 0;
}

header {
    margin-bottom: 60px;
	background: #fff;
	box-shadow: 0 3px 2px -2px #bbac72,0 2px 1px -1px #bbac72;
	border-radius: 10px 50px 50px 10px;
	padding: 5px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}

header div {
	display: flex;
	gap: 30px;
	align-items: center;
	padding-right: 20px;
}

img {
    margin-bottom: 30px;
}

h1, h2 {
    font-weight: bold;
	font-family: "DM Sans", sans-serif;
	margin-bottom: 10px;
	margin-top: 0;
	letter-spacing: .8px !important;
	font-size: 32px;
	color: var(--main);
}

h2,h3,h4 {
	font-family: "DM Sans", sans-serif;
	letter-spacing: .8px !important;
}

ul {
    list-style-type: none;
    margin: 0 0 30px 0;
    padding-left: 25px;
}

a {
    color: var(--main);
    text-decoration: underline;
}

hr {
    border-bottom: 1px solid #e7e7e7;
    border-top: 0;
    margin-bottom: 35px;
}

p {
	margin-bottom: 10px;
	color: rgba(38, 38, 38, .7);
}

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

.clear {
	clear: both;
}

.none {
	display: none !important;
}

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

.logo {
	width: 125px;
	height: 80px;
	background: url('../img/logo.jpg') no-repeat center center;
	background-size: cover;
    border-radius: 8px;
	display: block;
}

.wrapper {
	width: 94%;
	max-width: 1174px;
	margin: 0 auto;
}

.smaller-wrapper {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.7;
}

header {
	width: 100%;
	display: flex;
	gap: 30px;
	max-width: 900px;
	align-items: center;
	margin: 25px auto 40px;
}

header a {
	font-size: 16px;
	letter-spacing: 1px;
	color: #000;
	text-decoration: none;
	transition: .3s all:  ease-in-out;
}

header a:hover {
	color: var(--main);
}

.highlight,
.button {
	background: var(--main);
	color: #fff;
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	transition: .3s all ease-in-out;
	box-shadow: 0 3px 2px -2px #005325,0 2px 1px -1px #005325;
}

.button {
	padding: 12px 25px;
	border-radius: 25px;
}

.highlight:hover,
.button:hover {
	background: var(--yellow);
	color: #000;
	box-shadow: 0 3px 2px -2px #bbac72,0 2px 1px -1px #bbac72;
}

.banner {
	width: 100%;
	height: 400px;
	display: flex;
	gap: 50px;
	align-items: center;
}

.banner .image {
	width: 550px;
	height: 550px;
	background: url('../img/banner.webp') no-repeat center center / contain;
	box-sizing: border-box;
	position: relative;
}

.banner .image:after {
	content: '';
	width: 50%;
	position: absolute;
	right: -10%;
	top: 20%;
	background: #d8dbcc;
	height: 50%;
	border-radius: 100%;
	z-index: -1;
}

.banner h1 {
	font-size: 48px;
	font-weight: bold;
	max-width: 500px;
	color: var(--main);
}

.banner p {
	max-width: 500px;
	line-height: 1.6;
}

.white-bg {
	background: #fff;
	padding: 50px 0;
	margin: 50px 0;
	width: 100%;
	float: left;
}

.tag-days {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
	float: left;
}

.tag-day {
	background: #fff;
	box-shadow: 0 3px 2px -2px #bbac72,0 2px 1px -1px #bbac72;
	padding: 10px 30px;
	border-radius: 30px;
	font-size: 14px;
	cursor: pointer;
	transition: .3s all ease-in-out;
}

.tag-day:hover {
	border-color: var(--main);
}

.tag-day.active {
	border-color: var(--main);
	background: var(--main);
	color: #fff;
	box-shadow: 0 3px 2px -2px #005325,0 2px 1px -1px #005325;
}

.tag-day small {
	display: block;
	opacity: .5;
	font-weight: bold;
}

.mt-50 {
	margin-top: 50px !important;
}

.menu {
	background: #fff;
	border-radius: 15px;
	box-sizing: border-box;
	padding: 15px;
	padding-bottom: 60px;
	position: relative;
	text-align: left;
	box-shadow: 0 3px 2px -2px #bbac72,0 2px 1px -1px #bbac72;
}

.menus {
	width: 100%;
	float: left;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 20px;
}

.grid3 {
	grid-template-columns: repeat(3, 1fr);
}

.menu p {
	margin: 0;
	margin-bottom: 10px;
	font-weight: bold;
}

.alergies {
	padding: 4px 7px;
	margin: 0;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 30px;
	color: rgba(38, 38, 38, .5);
	font-size: 12px;
	display: inline-block;
}

.menu strong {
	position: absolute;
	left: 15px;
	bottom: 15px;
}

#kariera {
	margin-top: 50px;
}

section {
	width: 100%;
	float: left;
	margin: 50px 0;
}

footer {
	width: 100%;
	float: left;
	background: #d8dbcc;
	margin-top: 80px;
	text-align: center;
	box-sizing: border-box;
    padding: 40px 300px 0 300px;
	border-radius: 40px 40px 0 0;
	position: relative;
}

.map {
	overflow: clip;
	border-radius: 25px 25px 0 0;
	border-radius: 25px;
	height: 450px;
}

.copyright {
	padding: 15px 0;
	width: 100%;
	float: left;
	margin-top: 25px;
	font-size: 12px;
	border-top: 1px solid rgba(0,0,0,.1);
}

iframe {
	border: 0;
}

.d-block {
	display: block;
}

.d-flex {
	display: flex;
}

.gap-20 {
	gap: 20px;
}

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

.mb-25 {
	margin-bottom: 25px;
}

#alert-msg {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	align-content: center;
	backdrop-filter: blur(0px);
}

.alert-modal {
	background: #fff;
	border-radius: 15px;
	width: 94%;
	max-width: 500px;
	box-shadow: 0 3px 2px -2px #cacaca,0 2px 1px -1px #323232;
}

.alert-modal h2 {
	color: #000;
}

.alert-modal-content {
	padding: 20px;
	box-sizing: border-box;
}

.close-alert-modal {
	width: 100%;
	padding: 15px 0;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,.1);
	cursor: pointer;
	margin-top: 20px;
}

.gallery {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 25px;
}

.gallery img {
	height: 300px;
	object-fit: cover;
	border: 5px solid #fff;
	border-radius: 10px;
	margin-bottom: 0;
	box-shadow: 0 3px 20px -2px #cacaca,0 2px 2px -1px #323232;
}

.gallery img:nth-child(1) {
	transform: rotate(-3deg);
}

.gallery img:nth-child(2) {
	transform: rotate(3deg);
}

#mobile-menu {
	display: none;
}

@media (max-width: 930px) {
	.banner {
		margin-top: 0;
		float: left;
		height: auto;
		display: block;
	}

	.banner .image::after {
		height: 250px;
		width: 60%;
		left: -20%;
		top: 20%;
		right: auto;
	}
	
	footer img {
		max-width: 100%;
	}
	
	header {
		gap: 20px;
	}
	
	header div {
		gap: 20px;
	}
	
	.logo {
		min-width: 120px;
	}
	
	#mobile-menu {
		display: inline-block;
		padding: 0;
	}
	
	header div a:not(.highlight) {
		display: none;
	}
	
	#menu-holder.active {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255,255,255,.7);
		backdrop-filter: blur(10px);
		z-index: 10;
		display: flex;
		flex-flow: column;
		align-items: center;
		align-content: center;
		justify-content: center;
	}
	
	#menu-holder.active a {
		display: block;
	}
	
	.gallery {
		flex-wrap: wrap;
		padding: 0 10px;
		box-sizing: border-box;
	}
	
	.gallery img {
		max-width: 100%;
		object-fit: cover;
	}
	
	.smaller-wrapper {
		width: 94%;
		margin: 0 auto;
	}
	
	.tag-days {
		overflow: scroll;
		padding-bottom: 5px;
		justify-content: start;
		padding-left: 10px;
		box-sizing: border-box;
	}
	
	.menus {
		grid-template-columns: repeat(1, 1fr);
	}
	
	footer {
		padding: 0;
	}
	
	.banner h1 {
		font-size: 38px;
		line-height: 1.3;
	}
	
	.no-mobile {
		font-size: 0;
		display: block;
	}
}






