@import url('https://fonts.googleapis.com/css2?family=Shojumaru&family=Ubuntu:wght@300;400;500;700&display=swap');

/* Variables */
:root {
	--primary: #c50303;
	--primary-dark: #a30303;

	--secondary: #ffbb51;
	--secondary-dark: #dda03d;

	--tertiary: #fc3e0c;

	--black: #000000;
	--white: #ffffff;

	--font-heading: 'Shojumaru', sans-serif;
	--font-primary: 'Ubuntu', sans-serif;
}

@media (max-width: 576px) {
	::-webkit-scrollbar {
		height: 9px;
	}

	/* Track */
	::-webkit-scrollbar-track {
		box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
		background-color: white;
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
		border-radius: 10px;
		background-color: rgba(0, 0, 0, 0.7);
	}
}

/* CSS reset */
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-primary);
}
* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
:focus {
	outline: 0;
}
a,
a:hover {
	text-decoration: none;
}

/* CSS global */
a {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}
strong {
	font-weight: bold;
}
h1,
h2,
h3 {
	font-family: var(--font-heading);
}
/* navbar */
.navbar {
	background: rgba(0, 0, 0, 0);
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.navbar .wave {
	position: absolute;
	top: -80px;
	left: -10vw;
	border-radius: 50%;
	height: 165px;
	width: 120vw;
	background: var(--white);
	z-index: -1;
	box-shadow: 0 0 17px rgba(0, 0, 0, 0.2);
}
.navbar-nav {
	margin: 0 auto;
}
a.nav-item {
	color: var(--black);
	text-align: center;
	font-size: 1.2rem;
	margin: auto 8px;
}
a.nav-item:hover {
	opacity: 0.5;
}
.navbar-toggler {
	padding: 10px 20px;
	margin-left: auto;
	border: none;
}
.navbar-toggler-icon {
	/*for not having specified navbar-dark/navbar-light*/
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
	outline: none;
}

.navbar .logo {
	width: 80px;
	margin: 10px 5px;
	text-align: center;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;

	filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
	-webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
}

.navbar .logo a {
	display: inline-block;
	max-width: 70px;
}

.navbar .logo a:hover {
	max-width: 73px;
}

.navbar .logo img {
	width: 100%;
}

@media (max-width: 992px) {
	.navbar {
		height: auto;
		background: var(--white);
		box-shadow: 0 0 17px rgba(0, 0, 0, 0.2);
	}
	a.nav-item {
		margin: 5px 8px;
	}
	.navbar .wave {
		display: none;
	}
	.navbar .logo {
		width: 45px;
		margin: 0;
	}
	.navbar .logo a:hover {
		max-width: 70px;
	}
}

/* header */

header {
	height: 90vh;
	position: relative;
	overflow: hidden;
	z-index: 0;
	background: url('../images/header.jpg') center/cover;
}

header::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.65);
	z-index: -1;
}

h1 {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding-top: 30vh;
	text-align: center;

	font-size: 6rem;
	color: var(--white);
	font-weight: 400;
}

header p.description {
	position: relative;
	display: block;
	text-align: center;
	margin-bottom: 50px;

	font-size: 2rem;
	color: var(--secondary);
}

.order-btn,
.call-btn {
	position: relative;
	text-align: center;
	display: inline-block;
	padding: 10px 0;
	margin: 0 20px;
	width: 220px;
	color: white;
	font-size: 1.25rem;
	font-weight: 500;
	border: 3px solid rgba(255, 255, 255, 0.8);
	border-radius: 35px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	-ms-border-radius: 35px;
	-o-border-radius: 35px;
}
.order-btn {
	background-color: var(--primary);
	border-color: rgba(0, 0, 0, 0);
}
.call-btn {
}

.order-btn:hover,
.call-btn:hover {
	color: black;
	background-color: white;
}

@media (max-width: 768px) {
	header {
		height: 95vh;
	}
	h1 {
		padding-top: 20vh;
		font-size: 4.5rem;
	}
	header p.description {
		margin-bottom: 30px;
		font-size: 1.5rem;
	}
	.order-btn,
	.call-btn {
		margin: 12px 0;
	}
}

/* section wrappwe */
.section-wrapper {
	background-image: url(../images/bambus.png), url(../images/fresh-snow.png);
	background-repeat: no-repeat, repeat;
	background-position: bottom -10% left -10%, center;
	position: relative;
}

/* about */
#about {
	padding: 60px 0px 20px;
}

#about h2 {
	font-size: 4rem;
}

#about p {
	color: var(--black);
	font-size: 1.1rem;
}

#about a {
	color: var(--tertiary);
	font-weight: 700;
}

#about a:hover {
	color: var(--primary-dark);
	font-weight: 700;
}

@media (max-width: 576px) {
	#about {
		padding: 60px 10px 20px;
	}

	#about h2 {
		font-size: 3rem;
	}

	#about p {
		font-size: 1rem;
	}
}

/* rozvoz*/
#rozvoz {
	position: relative;
}

#rozvoz .circle-rozvoz {
	padding: 80px 75px;
	position: relative;
	display: block;
	width: 540px;
	height: 540px;
	margin: auto;
	background: var(--black);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: 2;
}

#rozvoz h2 {
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
	text-align: center;

	font-size: 4rem;
	color: var(--white);
}

#rozvoz p {
	color: var(--white);
	font-size: 1.1rem;
	padding-left: 10px;
}
#rozvoz p a {
	color: var(--secondary);
	font-weight: 700;
}
#rozvoz p a:hover {
	color: var(--secondary-dark);
}

@media (max-width: 576px) {
	#rozvoz {
		padding-top: 30px;
	}

	#rozvoz .circle-rozvoz {
		width: 100%;
		height: 100%;
		border-radius: 35px;
		-webkit-border-radius: 35px;
		-moz-border-radius: 35px;
		-ms-border-radius: 35px;
		-o-border-radius: 35px;

		padding: 30px;
	}
	#rozvoz h2 {
		font-size: 2.6rem;
	}
	#rozvoz p {
		color: var(--white);
		font-size: 1rem;
	}
}

/* kontakt */
#kontakt {
	position: relative;
	padding-bottom: 50px;
}

#kontakt .circle-kontakt {
	position: relative;
	display: inline-block;
	width: 500px;
	height: 500px;
	background: var(--black);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: 2;
}
#kontakt .circle-kontakt {
	padding: 75px;
}

#kontakt .circle-mapa {
	width: 450px;
	height: 450px;
	background: var(--black);
	border-radius: 35px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	-ms-border-radius: 35px;
	-o-border-radius: 35px;

	padding: 35px;
}

#kontakt .circle-mapa iframe {
	border-radius: 15px;
}

#kontakt h2 {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;

	font-size: 3.4rem;
	color: var(--white);
}

#kontakt ul {
	list-style-type: none;
}

#kontakt li {
	margin-bottom: 20px;
}

#kontakt p {
	display: inline-block;
	margin: 0;

	color: var(--white);
	font-size: 1.2rem;
}

#kontakt i,
#kontakt a i {
	color: var(--secondary);
	display: inline-block;
	font-size: 1.5rem;
	width: 40px;
}

#kontakt a:hover {
	color: var(--secondary);
}

@media (max-width: 1200px) and (min-width: 998px) {
	#kontakt .circle-kontakt {
		width: 450px;
		height: 450px;
	}
	#kontakt .circle-mapa {
		width: 400px;
		height: 400px;
	}

	#kontakt .circle-kontakt {
		padding: 75px;
	}
	#kontakt h2 {
		font-size: 3.3rem;
	}
	#kontakt li {
		margin-bottom: 16px;
	}

	#kontakt p {
		font-size: 1.13rem;
	}

	#kontakt i,
	#kontakt a i {
		color: var(--secondary);
		display: inline-block;
		font-size: 1.3rem;
		width: 30px;
	}
}

@media (max-width: 576px) {
	#kontakt .circle-kontakt {
		width: 100%;
		height: 100%;
		border-radius: 35px;
		-webkit-border-radius: 35px;
		-moz-border-radius: 35px;
		-ms-border-radius: 35px;
		-o-border-radius: 35px;

		padding: 40px;
	}

	#kontakt h2 {
		font-size: 2.4rem;
	}
	#kontakt p {
		font-size: 1rem;
	}

	#kontakt i,
	#kontakt a i {
		color: var(--secondary);
		display: inline-block;
		font-size: 1.3rem;
		width: 30px;
	}
}

/* botton wave */
.wave-wrapper {
	position: relative;
	height: 80px;
	overflow: hidden;
}

.wave-wrapper .wave {
	background: var(--black);
	display: block;
	position: absolute;
	bottom: 0-110px;
	left: -10vw;
	border-radius: 50%;
	height: 165px;
	width: 120vw;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

/* footer */
footer {
	background: var(--black);
	color: white;
	text-align: center;
	position: relative;
	height: 15px;
}

footer .move-up {
	position: absolute;
	display: block;
	top: -60px;
	width: 100%;
}

footer a {
	color: var(--primary);
}

footer a:hover {
	color: var(--primary-dark);
}

/* top arrow */
.arrowToTop {
	display: inline-block;
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: fixed;
	right: 20px;
	bottom: 20px;
	text-align: center;
	z-index: 9999;
	opacity: 0;
	transition: 0.4s all;
	-webkit-transition: 0.4s all;
	-moz-transition: 0.4s all;
	-ms-transition: 0.4s all;
	-o-transition: 0.4s all;

	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;

	background: var(--primary);
	box-shadow: 1px 1px 5px -1px #333;

	padding-top: 14px;

	text-decoration: none;
	text-align: center;
}

.arrowToTop i {
	display: inline-block;
	color: #fff;
	font-size: 1.3rem;
}

.arrowToTop:hover {
	background-color: var(--primary-dark);
	padding-top: 5px;
}

.arrowToTop.show {
	opacity: 1;
}

@media (max-width: 576px) {
	.arrowToTop {
		right: 0;
		width: 45px;
		height: 45px;
		padding-top: 12px;
	}
	.arrowToTop i {
		font-size: 1.15rem;
	}
	.arrowToTop:hover {
		background-color: var(--primary);
		padding-top: 12px;
	}
}

/* ERROR PAGE */

#error-page {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	text-align: center;
	background: url('../images/header.jpg');
	background-color: rgba(0, 0, 0, 0.7);
	background-blend-mode: multiply;
	background-attachment: fixed;
	background-size: cover;
}
#error-page h1 {
	padding-top: 0;
}
#error-page h2 {
	margin-bottom: 2rem;
	color: #fff;
	font-family: var(--font-primary);
}
@media (max-width: 576px) {
	#error-page h2 {
		font-size: 2rem;
	}
}
#error-page .primary-btn {
	display: inline-block;
	padding: 0.7rem 2rem;
	background: var(--primary);
	color: #000;
	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;
}
