:root {
	--primary-light: #fd2a31;
	--primary: #cc1b21;
	--primary-dark: #b81f00;
	--secondary: #e2e2e2;
	--secondary-dark: #cecece;
	--dark: #1b1b1b;
	--font-primary: "Roboto", sans-serif;
	--font-heading: "Ubuntu", sans-serif;
}

@media (max-width: 576px) {
	::-webkit-scrollbar {
		width: 12px;
		background-color: #f5f5f5;
	}

	/* Track */
	::-webkit-scrollbar-track {
		background-color: #f5f5f5;
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
		border-radius: 10px;
		box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
		-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
		background-color: rgb(207, 207, 207);
	}
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-weight: 400;
	background-color: black;
}

* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

a:hover,
a:focus {
	color: initial;
	text-decoration: none;
}

strong {
	font-weight: 700;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-heading);
	font-weight: 500;
}

img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
}
.background::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
}
.background.show {
	opacity: 1;
}
@media (max-width: 576px) {
	.background {
		position: absolute;
	}
}

/* HEADER */

header {
	position: relative;
	display: grid;
	place-content: center;
	overflow: hidden;
	height: 100vh;
}
header img.logo {
	width: 400px;
	margin: auto;
	margin-bottom: 2rem;
	filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.3));
	-webkit-filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.3));
}
header .desc {
	margin-bottom: 1.8rem;

	text-align: center;
	font-size: 1.6rem;
	color: white;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.header-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 1.15rem;
	letter-spacing: 1px;
	line-height: 25px;
	text-transform: uppercase;
}
.order-btn,
.call-btn {
	padding: 12px 30px;
	display: inline-block;
	border-radius: 5px;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
	margin: 0 20px 20px;
}
.order-btn {
	background: var(--primary);
	color: #fff;
}
.order-btn:hover,
.order-btn:focus {
	background-color: var(--primary-dark);
	color: #fff;
}

.call-btn {
	background: var(--secondary);
	color: #000;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.call-btn:hover,
.call-btn:focus {
	background-color: var(--secondary-dark);
}

.order-btn:hover,
.call-btn:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

@media (min-width: 1600px) {
	header img.logo {
		width: 550px;
	}
	header .desc {
		font-size: 2rem;
	}
	.order-btn,
	.call-btn {
		font-size: 1.2rem;
		padding: 14px 32px;
	}
}
@media (max-width: 576px) {
	header {
		height: 96vh;
	}
	header img.logo {
		max-width: 250px;
		margin-bottom: 1.5rem;
	}
	header .desc {
		margin-bottom: 1rem;

		font-size: 1.3rem;
	}
	.header-btns {
		flex-direction: column;
		width: 100%;
		width: 250px;
		margin: 0 auto;
	}

	.order-btn,
	.call-btn {
		font-size: 1.05rem;
		width: 230px;
	}
	.call-btn {
		font-size: 1.1rem;
	}
}

.mousey {
	display: block;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 48px;
	border: 2px solid white;
	border-radius: 20px;
	opacity: 0;
	animation: fade-in 1s ease 2s, mousey 3.5s ease 3s infinite;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	-webkit-animation: fade-in 1s ease 2s, mousey 3.5s ease 3s infinite;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.mousey .scroller {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 8px;
	background-color: white;
	animation: scroller 3.5s ease infinite;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-webkit-animation: scroller 3.5s ease 3s infinite;
}

@keyframes mousey {
	0% {
		opacity: 1;
	}
	65% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes scroller {
	0% {
		top: 8px;
	}
	35% {
		top: 14px;
	}
	50% {
		top: 14px;
	}
	60% {
		top: 8px;
	}
	100% {
		top: 8px;
	}
}

/* KONTAKT */

#kontakt {
	padding: 50px 0 0;
	position: relative;
	background: url("../images/fresh-snow.jpg");
	text-align: center;
}
#kontakt h2 {
	margin-bottom: 40px;
	font-size: 3.6rem;
}

#kontakt ul {
	list-style-type: none;
}

#kontakt ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
	font-size: 1.2rem;
}
#kontakt ul li i {
	margin-bottom: 10px;

	font-size: 1.8rem;
	color: var(--primary);
}

#kontakt a {
	color: var(--primary);
}
#kontakt a:hover {
	color: var(--primary-dark);
}
#kontakt ul li a:first-child:hover + a {
	color: var(--primary-dark);
}

#kontakt .map {
	position: relative;
}

#kontakt iframe {
	display: block;
	height: 300px;
	width: 100%;
}

#kontakt a.way-btn {
	display: inline-block;
	position: absolute;
	bottom: 20px;
	left: 50%;
	padding: 10px 30px;
	border-radius: 5px;
	background: var(--primary);
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);

	color: #fff;
	font-weight: 600;
	text-transform: uppercase;

	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
#kontakt a.way-btn:hover {
	background-color: var(--primary-dark);
	transform: translateX(-50%) scale(1.05);
	-webkit-transform: translateX(-50%) scale(1.05);
	-moz-transform: translateX(-50%) scale(1.05);
	-ms-transform: translateX(-50%) scale(1.05);
	-o-transform: translateX(-50%) scale(1.05);
}

@media (max-width: 998px) {
	#kontakt iframe {
		height: 250px;
	}
}

@media (max-width: 768px) {
}
@media (max-width: 576px) {
	#kontakt h2 {
		margin-bottom: 25px;
		font-size: 3em;
	}
	#kontakt ul li {
		margin-bottom: 15px;
	}
}

footer {
	position: relative;
	background-color: var(--dark);
	padding: 30px 0;
	color: #a1a1a1;
	text-align: center;
}

footer a {
	color: var(--primary-light);
}
footer a:hover {
	color: var(--primary);
}
footer p {
	margin: 0;
}
@media (max-width: 768px) {
	footer {
		padding-top: 25px;
	}
	footer p.alergeny {
		padding-top: 1rem;
		border-top: 2px solid rgba(255, 255, 255, 0.4);
	}
}

/* ===================
        arrow to Top
        ================
 */

.arrowToTop {
	cursor: pointer;
	position: fixed;
	text-align: center;
	z-index: 9999;
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	-ms-transition: background-color 0.2s;
	-o-transition: background-color 0.2s;
	transition: background-color 0.2s;
	right: 40px;
	bottom: 40px;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s all;
}
.arrowToTop.show {
	opacity: 1 !important;
	pointer-events: all;
}
.arrowToTop a {
	text-decoration: none;
	padding: 8px 15px;
	color: #fff;
	background: var(--primary);
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
	transition: 0.3s ease-in-out;
	border-radius: 8px;
	font-size: 1rem;
	display: inline-block;
}

.arrowToTop a:hover {
	background: var(--primary-dark);
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}

.arrowToTop svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 576px) {
	.arrowToTop {
		right: 0;
		bottom: 20px;
	}

	.arrowToTop a {
		padding: 6px 15px;
		font-size: 1.1rem;
	}
	.arrowToTop a:hover {
		background: var(--primary);
	}
}

/* Nav bar*/
.navbar {
	padding: 10px 0;
	height: 75px;
	position: fixed;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	z-index: 100;

	background-color: transparent;
}

@media (max-width: 992px) {
	.navbar {
		padding: 10px 20px;
		height: auto;
		background-color: var(--dark);
	}
}

.navbar.sticky {
	background-color: var(--dark);
	box-shadow: 1px 1px 13px -1px rgba(0, 0, 0, 0.4);
}

.navbar-toggler:focus,
.navbar-toggler:hover {
	outline: none !important;
	border: none;
}

.navbar-links {
	height: 100%;
}

.navbar-links ul {
	display: flex;
	margin: 0;
	padding: 0;
}

.navbar-links li {
	list-style: none;
	margin: 0 20px;
}

.navbar-links li a {
	position: relative;
	height: 100%;
	color: white;
	font-family: var(--font-primary);
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1.1rem;
	letter-spacing: 1.3px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.navbar-links li a::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: -20%;
	width: 80%;
	height: 2px;
	background: white;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.sticky .navbar-links li a::after {
	background: var(--primary);
}
.navbar-links li a:hover:after {
	left: 0;
	opacity: 1;
}

.navbar-dark .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.4) !important;
	margin-left: auto;
}

.navbar-toggler {
	border: none;
	padding: 10px 20px;
}

.brand-logo {
	display: inline-block;
	position: relative;
	width: 110px;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.sticky .brand-logo {
	opacity: 1;
}
.navbar .brand-logo img {
	width: 100%;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	-o-transition: 0.3s all;
}

@media (max-width: 992px) {
	.navbar-links {
		margin-right: 0;
	}

	.navbar-links ul {
		display: table;
		width: 100%;
		text-align: center;
	}

	.navbar-links li a {
		display: inline-block;
		padding: 19px 0;
	}

	.brand-logo {
		position: relative;
		top: 0;
		left: 0;
		width: 115px;
	}
}

@media (max-width: 576px) {
	.brand-logo {
		position: relative;
		top: 0;
		left: 0;
		width: 95px;
	}
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ERROR PAGE */
#error-page {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
	background-image: url("/images/bg45.jpg");
	background-size: cover;
}
#error-page::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

#error-page img.logo {
	margin-bottom: 2rem;
	width: 80%;
	max-width: 500px;
}
#error-page h2 {
	margin-bottom: 2rem;
	color: #fff;
}

#error-page .primary-btn {
	display: inline-block;
	padding: 0.7rem 2rem;
	background: var(--primary);
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 0.3rem;
	-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
}
#error-page .primary-btn i {
	position: relative;
	left: -5px;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
}

#error-page .primary-btn:hover {
	background: var(--primary-dark);
}
#error-page .primary-btn:hover i {
	left: -10px;
}

.popup {
	height: 100%;
	width: 100%;
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	background: rgba(0, 0, 0, 0.7);
	padding: 30px;
	-webkit-backdrop-filter: blur(2px);
			backdrop-filter: blur(2px);
  }
  
  .popup__body {
	height: auto;
	max-height: 80vh;
	width: 100%;
	max-width: 550px;
	margin: 100px auto;
	padding: 45px 10px;
	background: #fff;
	color: #000;
	position: relative;
	border-radius: 5px;
	-webkit-box-shadow: 0 2px 5px #000;
			box-shadow: 0 2px 5px #000;
	z-index: 103;
  }
  @media (min-width: 768px) {
	.popup__body {
	  padding: 35px 35px;
	}
  }
  .popup__body img {
	display: block;
	max-height: 60vh;
	max-width: 100%;
	margin: auto auto;
	border-radius: 10px;
  }
  .popup__body p {
	color: var(--dark);
	font-size: 1.1rem;
	margin: 15px auto 0;
	max-width: 500px;
	font-weight: 600;
	text-align: center;
  }
  .popup__body a {
	text-decoration: none;
  }
  .popup__body .close-btn {
	color: #000;
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 30px;
	cursor: pointer;
  }

#popover {
	position: fixed;
	bottom: 0.5rem;
	left: 0.5rem;
	z-index: 150;
	max-width: 35vw;
	padding: 0.75rem 1rem;
	background-color: rgba(241, 243, 246, 0.8);
	-webkit-backdrop-filter: blur(20px);
			backdrop-filter: blur(20px);
	border-radius: var(--border-radius);
	opacity: 0;
	-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
	-webkit-transition: var(--transition-medium);
	transition: var(--transition-medium);
	-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
			box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  @media (max-width: 767.98px) {
	#popover {
	  max-width: 100%;
	}
  }
  @media (max-width: 575.98px) {
	#popover {
	  right: 0.5rem;
	}
  }
  #popover.slide-in {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }
  #popover .popover-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
  }
  #popover .popover-header .popover-heading {
	font-size: 1.2rem;
	margin-bottom: 0;
	margin-right: 2rem;
	font-weight: var(--weight-bold);
	letter-spacing: -0.02em;
  }
  @media (max-width: 575.98px) {
	#popover .popover-header .popover-heading {
	  font-size: 1rem;
	}
  }
  #popover .popover-close-button {
	position: absolute;
	right: 0;
	top: 0;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 2.75rem;
	font-size: 1.1rem;
	cursor: pointer;
  }
  #popover .popover-content {
	margin-bottom: 0;
  }
  @media (max-width: 575.98px) {
	#popover .popover-content {
	  font-size: 0.875rem;
	}
  }
