@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
:root {
	--btn-color: #3e4095;
	--about-sec: #1d1d23;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	outline: none;
	text-decoration: none;
	font-family: "Roboto", sans-serif;
}

html {
	font-size: 65%;
}
.header {
	padding: 1rem 7%;
	position: fixed;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	background: #1d1d23;
}
.logo img {
	width: 60px;
}
.navbar a {
	color: white;
	margin: 0.5rem;
	padding: 0.5rem;
	font-size: 1.5rem;
}

.navbar a:hover {
	color: var(--btn-color);
}

#google_translate_element {
	display: flex;
	justify-content: center;
	align-content: center;
	margin-top: 30px;
}

.fa-backward {
	font-size: 30px;
	color: #fff;
}
.fa-arrow-left {
	font-size: 30px;
	color: #fff;
}
.fa-arrow-left:hover {
	color: #3e4095;
}
.icons div {
	color: white;
	font-size: 1.5rem;
	margin-right: 10px;
	display: none;
}
.icons div:hover {
	cursor: pointer;
}

.fa-facebook {
	font-size: 50px;
	color: #fff;
}

.fa-instagram {
	font-size: 50px;
	color: #fff;
}

.fa-phone {
	font-size: 25px;
	color: #fff;
}

.icons a {
	color: white;
	padding: 0.6rem 1.5rem;
	border-radius: 10px;
	font-size: 18px;
	transition: 0.5s;
	display: inline-block;
}
.dubinsko a {
	color: white;
	padding: 0.6rem 1.5rem;
	border-radius: 10px;
	font-size: 18px;
	transition: 0.5s;
	display: inline-block;
	background: var(--btn-color);
	border: 1px solid white;
}
.fa-arrow-right-long {
	color: #fff;
	width: 1rem;
}
.contact-btn:hover {
	transform: scale(1.1);
	background: var(--btn-color);
	border: 1px solid white;
}

.navbar.active {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* design for home section */

.home {
	padding: 1rem 7%;
	background-color: #1d1d23;
	min-height: 100vh;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.main-home {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	padding-top: 150px;
	padding-left: 4rem;
	padding-right: 4rem;
}
.home-inner-content {
	flex: 1 1 45rem;
}
.home-image {
	width: 100%;
	height: 100%;
	position: relative;
}
.home-image img {
	width: 100%;
	position: absolute;
	transform: translate(0%, -40%);
	animation: mymove 5s infinite ease-in-out;
}
@keyframes mymove {
	0% {
		top: 0px;
	}
	50% {
		top: 15px;
	}
	75% {
		top: 10px;
	}
	100% {
		top: 0px;
	}
}
.home-text-content {
	padding: 0 8rem;
}
.home-text-content h1 {
	font-size: 45px;
	color: #3e4095;
}
.home-text-content p {
	color: white;
	font-size: 1.5rem;
	margin-top: 10px;
	margin-bottom: 15px;
	line-height: 25px;
}
.home-text-content a {
	color: white;
	padding: 0.6rem 1.5rem;
	margin: 6px;

	border-radius: 10px;
	font-size: 18px;
	transition: 0.5s;
	display: inline-block;
}
.home-text-content ul {
	color: #1d1d23;
	display: flex;
}
.home-text-content a:hover {
	transform: scale(1.1);
	background: var(--btn-color);
	border: 1px solid white;
}

.about {
	padding: 2rem 7%;
	background: var(--about-sec);
}
.main-about {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.about-content {
	flex: 1 1 45rem;
}
.about-inner-content {
	width: 100%;
	margin: 0 auto;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.about-content .about-inner-content img {
	width: 80%;
	margin-left: 100px;
}
.about-text-content {
	padding: 0 4rem;
}
.about-text-content h1 {
	color: #3e4095;
	font-size: 40px;
	margin-bottom: 15px;
}
.about-text-content p {
	color: white;
	font-size: 1.5rem;
	line-height: 35px;
}
.quality {
	padding: 4rem 7%;
	background-image: linear-gradient(
		60.34deg,
		white 52.45%,
		var(--btn-color) 52.45%
	);
}
.main-quality {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.main-inner-quality {
	flex: 1 1 45rem;
}
.quality-content {
	padding: 0 4rem;
}
.quality-content h1 {
	color: var(--btn-color);
	font-size: 40px;
	margin-bottom: 15px;
}
.quality-content p {
	color: var(--about-sec);
	font-size: 1.5rem;
	line-height: 30px;
}
.quality-content ul li {
	font-size: 1.5rem;
	color: var(--about-sec);
	line-height: 30px;
}
.quality-content a {
	color: #3e4095;
}
.qulity-image {
	width: 100%;
}
.qulity-image img {
	width: 100%;
	object-fit: cover;
}
.gallery {
	padding: 4rem 7%;
	background: var(--about-sec);
}
.gallery h1 {
	font-size: 50px;
	text-align: center;
	padding-bottom: 3rem;
	color: var(--btn-color);
	letter-spacing: 1px;
}
.main-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}
.inner-gallery {
	flex: 1 1 300px;
}
.inner-gallery .gallery-image img {
	width: 100%;
}
.inner-gallery .gallery-image:hover img {
	transform: perspective(1000px) rotateX(-4.8deg) rotateY(-10.23deg)
		scale3d(1.05, 1.05, 1.05);
	clip-path: polygon(
		20% 0%,
		80% 0%,
		100% 20%,
		100% 80%,
		80% 100%,
		20% 100%,
		0% 80%,
		0% 20%
	);
}

.enjoy-our-food {
	padding: 2rem 7%;
	background: url(images/lokacija.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.food-main-content {
	width: 40%;
	border: 4px solid white;
	padding: 2rem;
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.food-main-content h1 {
	color: white;
	font-size: 35px;
	text-align: center;
	padding: 1rem 0;
}
.food-main-content p {
	color: white;
	font-size: 1.5rem;
	text-align: center;
	padding: 1rem 0;
	line-height: 30px;
}
.food-main-content a {
	color: #3e4095;
}
.food-main-content a:hover {
	color: #1d1d23;
}
.enjoy-our-food2 {
	padding: 2rem 7%;
	background: url(images/28.JPG);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.food-main-content2 {
	width: 40%;
	border: 4px solid white;
	padding: 2rem;
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.food-main-content2 h1 {
	color: white;
	font-size: 35px;
	text-align: center;
	padding: 1rem 0;
}
.food-main-content2 p {
	color: white;
	font-size: 1.5rem;
	text-align: center;
	padding: 1rem 0;
	line-height: 30px;
}
.food-main-content2 a {
	color: #3e4095;
}
.food-main-content2 a:hover {
	color: #1d1d23;
}
.our-menu-food {
	padding: 2rem 7%;
	background-color: var(--about-sec);
}
.our-menu-food h1 {
	color: var(--btn-color);
	font-size: 45px;
	text-align: center;
	padding: 0.5rem 0;
}
.main-menu-food {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.inner-menu-food {
	flex: 1 1 300px;
}
.menu-food-content {
	width: 100%;
}
.menu-food-content img {
	width: 100%;
}
.menu-food-text {
	padding: 2rem 2rem;
}
.menu-food-text h2 {
	color: var(--btn-color);
	font-size: 30px;
}
.menu-food-text p {
	color: white;
	font-size: 18px;
	margin: 2rem 0;
}
.menu-food-text p span {
	color: #3e4095;
	padding: 0.5rem 1.5rem;
	transition: 0.3s;
	cursor: pointer;
}
.menu-food-text p:hover span {
	border: 1px solid white;
	background: var(--btn-color);
	color: white;
	transform: scale(1.1);
}
.menu-food-text a {
	color: #3e4095;
}
.menu-food-text a:hover {
	color: #fff;
}
.before {
	background-color: #1d1d23;
	padding: 2rem 0;
}
.before {
	width: 100%;
}
.before img {
	width: 1000%;
	object-fit: cover;
}
.footer {
	background: #1d1d23;
	padding: 6rem 10rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.main-footer {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.main-footer img {
	width: 200px;
}
.footer-navbar {
	margin-top: 15px;
}
.footer-navbar a {
	color: #3e4095;
	font-size: 18px;
	margin: 1rem;
	padding: 1rem;
}
.footer-navbar a:hover {
	color: #fff;
}
@media (max-width: 767px) {
	.header {
		padding: 3rem;
	}
	.icons div {
		display: initial;
	}
	.navbar {
		position: absolute;
		width: 100%;
		height: 100vh;
		left: 0;
		top: 100%;
		background-color: var(--btn-color);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	.navbar a {
		display: block;
		text-align: center;
		margin: 1rem;
		padding: 1rem;
		font-size: 18px;
	}
	#google_translate_element {
		display: flex;
		justify-content: center;
		align-content: center;
		margin-top: 2rem;
	}

	mar .home-text-content {
		padding: 0 2rem;
	}
	.main-home {
		padding: 2rem 0;
	}
	.home {
		padding-top: 100px;
	}
	.home-image img {
		transform: translate(0%, 0%);
	}
	.home-text-content {
		margin-top: 300px;
	}

	.about-content .about-inner-content img {
		width: 100%;
		margin: 0;
		padding: 1rem;
		margin-top: 200px;
	}
	.quality-content {
		padding: 1rem 2rem;
	}
	.quality-content h1 {
		color: var(--about-sec);
	}
	.food-main-content {
		width: 100%;
		border: 4px solid white;
		padding: 1rem;
	}
	.food-main-content2 {
		width: 100%;
		border: 4px solid white;
		padding: 1rem;
	}
	.footer-navbar a {
		display: block;
	}
}
