@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap");

/* General reset */
html,
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scrollbar-width: thin;
	scroll-behavior: smooth;
	scrollbar-color: rgb(234, 178, 228) rgb(70, 130, 180);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(
		to bottom,
		rgb(234, 178, 228),
		rgb(135, 206, 235)
	);
	border-radius: 10px;
	border: 3px solid transparent;
	transition: box-shadow 0.3s;

	/* Smooth transition for shadow */
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(
		to bottom,
		rgb(135, 206, 235),
		rgb(234, 178, 228)
	);
	/* Change color on hover */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	/* Add box-shadow when hovering */
}

::-webkit-scrollbar-thumb:active {
	background-color: rgb(135, 206, 235);
	/* Darker color when pressed */
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
	/* Stronger shadow when pressed */
}

::-webkit-scrollbar:hover {
	width: 16px;
	/* Increase width on hover */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
	background: rgb(70, 130, 180);
	border-radius: 10px;
}

body {
	color: rgb(70, 130, 180);
	margin: 0;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
}

body button {
	padding: 10px 20px;
	margin: 5px;
	border: none;
	background-color: rgb(70, 130, 180);
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: rgb(135, 206, 235);
}

h1,
h2,
h3 {
	font-family: "Waterfall", cursive;
	font-weight: 900;
	font-style: normal;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.7rem;
}

main {
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-direction: column;
}

.slideshow {
	position: relative;
	width: 100vw;
	height: 100vh;
	z-index: -1;
}

.slideshow img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	opacity: 0;
	animation: fade 20s infinite;
}

.slideshow img:nth-child(1) {
	animation-delay: 0s;
}

.slideshow img:nth-child(2) {
	animation-delay: 5s;
}

.slideshow img:nth-child(3) {
	animation-delay: 10s;
}

.slideshow img:nth-child(4) {
	animation-delay: 15s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	40% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.hero {
	position: absolute;
	top: 35%;
	right: 50;
	display: flex;
}

header {
	position: relative;
	width: 100vw;
}

#navSection {
	position: fixed;
	flex-direction: column;
	display: flex;
	top: 0;
	width: 100vw;
	z-index: 1000;
	background-color: transparent;
	transition: background-color 0.3s ease;
	padding-bottom: 1.5rem;
}

#logo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}

#belvederLogo {
	width: 20vw;
	transition: width 0.3s ease-in-out;
}

#navBar {
	display: flex;
	/* Ensure it uses flex for layout */
	justify-content: center;
	align-items: center;
	width: 100vw;
	visibility: hidden;
	overflow: hidden;
	/* Prevent content overflow */
	transition: visibility 0.3s ease-in-out;
	/* Animate opacity and height */
}

nav ul {
	list-style: none;
	padding: 0;
}

nav ul li {
	display: inline;
	margin: 0 10px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-size: 1.5rem;
}

.language-switcher {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 3rem;
	position: absolute;
	right: 10px;
	top: 11.6vh;
}

.language-switcher > button {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	padding: 0.4rem;
	font-size: 1.5rem;
}

#languageSeparator {
	width: 4px;
	height: 2.2rem;
	background-color: white;
	color: white;
	margin: 5px;
	border-radius: 20px;
}

.hero {
	height: 300px;
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero > button {
	margin: 2rem auto;
	width: auto;
}

.hero > h1 {
	color: white;
	background: radial-gradient(
		rgb(234, 178, 228),
		rgba(234, 178, 228, 0.7),
		rgb(70, 130, 180)
	);
	border-radius: 15%/80%;
	padding: 1rem;
}

.highlights {
	padding: 20px;
	text-align: center;
}

.highlight-item {
	margin: 20px 0;
}

#cookie-banner {
	display: none;
	background: #f2f2f2;
	padding: 15px;
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	border-radius: 5px;
	width: 40%;
	text-align: center;
}

#saying {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 80vw;
	margin: auto;
}

#saying div > p {
	padding: 1rem;
	display: flex;
	justify-content: end;
}

#saying > img {
	height: 30vh;
	border: 5px solid rgb(135, 206, 235);
	padding: 10px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3),
		/* Outer shadow */ 0 0 5px rgba(0, 0, 0, 0.2) inset;
	/* Inner shadow for depth */
	display: block;
	margin: 20px 4rem;
	transform: scale(0) rotate(0deg);
	opacity: 0;
	/* Initially hidden */
	transition: opacity 0.5s ease;
	/* Smooth transition for opacity */
}

.spinning {
	animation: spinAndScale 1s linear forwards;
	/* Apply spin animation */
	opacity: 1;
	/* Make visible when spinning */
}

@keyframes spinAndScale {
	0% {
		transform: scale(0) rotate(0deg);
		/* Start from scale 0 and no rotation */
		opacity: 0;
		/* Hidden */
	}

	50% {
		opacity: 1;
		/* Make visible halfway through */
	}

	100% {
		transform: scale(1) rotate(360deg) rotateZ(6deg);
		/* End at full size and full rotation */
		opacity: 1;
		/* Ensure it stays visible */
	}
}

#events-section {
	text-align: center;
	padding: 50px;
	background-color: #fff;
}

#events-section > h1 {
	margin-bottom: 30px;
	color: rgb(70, 130, 180);
}

.tabs {
	margin-bottom: 30px;
}

.event-content {
	display: none;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 10px;
}

.event-content h2 {
	margin-bottom: 20px;
	color: rgb(70, 130, 180);
}

.event-content p {
	margin-bottom: 20px;
}

.event-content ul {
	list-style: none;
	padding: 0;
}

.event-content ul li {
	margin: 10px 0;
}

.event-content ul li:before {
	content: "🎉";
	margin-right: 10px;
}

.active-content {
	display: block;
}

#h1Location {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem auto;
}

#location {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 90vw;
	margin: auto;
	height: 40vh;
}

#lineLocation {
	width: 2px;
	height: 93%;
	margin: 4rem;
	border-radius: 20%/30%;
	background-color: rgb(70, 130, 180);
	border: 2px solid rgb(70, 130, 180);
}

#location > p {
	text-align: left;
	width: 50%;
	height: 100%;
	line-height: 2rem;
	overflow-y: auto;
}

#map {
	height: 100%;
	width: 50%;
	box-shadow: 3px 3px 10px 1px rgb(70, 130, 180);
}

/* General styling for the reviews section */
#reviews-section {
	text-align: center;
	padding: 50px;
	background-color: #fff;
	margin-top: 50px;
}

#reviews-section h1 {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: rgb(70, 130, 180);
}

/* Reviews slider styling */
/* .reviews-slider {
	display: flex;
	overflow: hidden;
	width: 80%;
	margin: 0 auto;
	justify-content: center;
}

.review {
	min-width: 100%;
	transition: transform 0.5s ease;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: #f9f9f9;
	border-radius: 10px;
}

.review p {
	font-style: italic;
	color: #555;
}

.review h3 {
	margin-top: 10px;
	color: rgb(70, 130, 180);
} */

/* Leave a Review section */
/* #leave-review {
	margin-top: 50px;
	text-align: left;
	width: 80%;
	margin: 0 auto;
}

#leave-review h2 {
	margin-bottom: 20px;
	color: rgb(70, 130, 180);
}

#review-form {
	display: flex;
	flex-direction: column;
}

#review-text,
#review-name {
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 5px;
	border: 1px solid #ccc;
	width: 100%;
} */

/* Social Media Section Styling */
#social-media-section {
	text-align: center;
	padding: 50px;
	background-color: #fff;
}

#social-media-section h1 {
	margin-bottom: 20px;
	color: rgb(70, 130, 180);
}

/* Social icons styling */
.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.social-icon img {
	width: 50px;
	/* Adjust icon size */
	height: 50px;
	transition: transform 0.3s ease;
}

.social-icon:hover img {
	transform: scale(1.1);
	/* Scale effect on hover */
}

/* general */
.menu-section,
.about-section,
.gallery-section,
.contact-section {
	padding: 20px;
}

/* menu */
#menuBody {
	/* background: linear-gradient(180deg,
			rgb(70, 130, 180) 25%,
			rgb(135, 206, 235) 25%,
			rgb(135, 206, 235) 50%,
			rgb(70, 130, 180) 50%,
			rgb(70, 130, 180) 75%,
			rgb(135, 206, 235) 75%,
			rgb(135, 206, 235) 100%,
			rgb(70, 130, 180) 100%); */
	background: linear-gradient(
		180deg,
		rgb(70, 130, 180) 0%,
		rgb(135, 206, 235) 25%,
		rgb(70, 130, 180) 50%,
		rgb(135, 206, 235) 75%,
		rgb(70, 130, 180) 100%
	);
	background-size: 1500px 1500px;
	margin: 0;
	padding: 0;
	width: 100vw;
}

#menuMain {
	color: white;
	height: auto;
	width: auto;
	margin: 10rem auto;
	padding: 0;
}

.menu-section {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.drinks > ul,
.amount > ul,
.price > ul {
	list-style-type: none;
}

.drinksType {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 80%;
	margin: 2rem 0;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
}

.drinks {
	width: 60%;
}

.amount {
	width: 20%;
	display: flex;
	justify-content: end;
}

.price {
	width: 20%;
	display: flex;
	justify-content: end;
}

.gallery-section {
	height: auto;
	margin-top: 10rem;
}

.gallery-grid {
	display: flex;
	flex-direction: row;
	width: 90vw;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.galleryImg {
	height: 25vh;

	min-width: 200px;
	margin: 0.4rem;
}

#bodyContact {
	height: 100vh;
	margin: 0px;
	padding: 0px;
}

#contactMain {
	margin: auto;
	padding: 0;
	margin-top: 10rem;
	width: 90%;
	height: auto;
}

.contact-section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.contact-section form {
	display: flex;
	flex-direction: column;
	width: 70vw;
	margin: auto;
	margin: 3rem 0;
}

.contact-section input,
.contact-section textarea {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	margin: 5px 0;
	padding: 10px;
	border: 1px solid rgb(70, 130, 180);
}

.contact-section > button {
	margin: 0;
	padding: 0;
	width: 70vw;
}

.contact-info {
	width: 70vw;
	line-height: 2rem;
}

#contactImgs {
	display: flex;
	flex-direction: row;
	justify-content: end;
	align-items: center;
	width: 100vw;
	height: 40vh;
	margin-bottom: 1.5rem;
}

#contactImgs > img {
	box-shadow: 5px 5px 10px 5px rgb(43, 43, 43),
		inset 10px 10px 10px 20px rgba(70, 130, 180, 0.7);
	border: 6px solid rgba(70, 130, 180, 0.8);
	margin: 1rem;
	padding: 0.3rem;
	border-radius: 40%/30%;
}

#phoneCall {
	transform: rotateZ(15deg) translateX(-100px) translateY(-120px);
	z-index: -1;
	height: 80%;
}

#batmanCall {
	height: 100%;
	transform: rotateZ(-5deg);
}

/* About Section Styling */
#about-section {
	text-align: center;
	padding: 50px;
	background-color: #fff;
	margin-top: 50px;
}

#about-section h1 {
	margin-bottom: 20px;
	color: rgb(70, 130, 180);
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.about-content h2 {
	margin: 20px 0 10px;
	color: rgb(70, 130, 180);
}

.about-content p {
	margin: 10px 0;
	line-height: 1.6;
}

footer {
	text-align: center;
	padding: 20px;
	background-color: rgb(70, 130, 180);
	color: white;
}

.line,
.carousel,
.carousel li,
.carousel li img {
	width: 100%;
}

.flex,
.center,
.carousel ul,
.carousel-wrapper {
	display: flex;
}

.center,
.carousel ul {
	align-items: center;
	justify-content: center;
}

.carousel-wrapper {
	position: relative;
	max-width: 1000px;
}

.carousel-wrapper input {
	display: none;
}

.carousel {
	overflow: hidden;
	border-radius: 15px;
	margin: 50px;
}

.carousel ul {
	background-color: #f9f9f9;
	position: relative;
	list-style: none;
	overflow: hidden;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 500%;
	transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel ul li {
	height: 8rem;
}

.carousel ul li p {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4rem;
}

.carousel ul li h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4rem;
}

.nav-dot {
	position: absolute;
	cursor: pointer;
	margin-left: -7.5px;
	bottom: -22.5px;
	width: 15px;
	height: 15px;
	opacity: 0.5;
	background-color: white;
	border-radius: 50%;
	transition: 0.4s;
}

.nav-dot:hover {
	opacity: 0.8;
	transform: scale(1.2);
}

.nav-dot:active {
	transform: scale(0.9);
}

.nav-dot[for="slide1"] {
	left: 40%;
}

#slide1:checked ~ .carousel ul {
	left: 0%;
}

#slide1:checked ~ .nav-dot[for="slide1"] {
	opacity: 1;
}

.nav-dot[for="slide2"] {
	left: 45%;
}

#slide2:checked ~ .carousel ul {
	left: -100%;
}

#slide2:checked ~ .nav-dot[for="slide2"] {
	opacity: 1;
}

.nav-dot[for="slide3"] {
	left: 50%;
}

#slide3:checked ~ .carousel ul {
	left: -200%;
}

#slide3:checked ~ .nav-dot[for="slide3"] {
	opacity: 1;
}

.nav-dot[for="slide4"] {
	left: 55%;
}

#slide4:checked ~ .carousel ul {
	left: -300%;
}

#slide4:checked ~ .nav-dot[for="slide4"] {
	opacity: 1;
}

.nav-dot[for="slide5"] {
	left: 60%;
}

#slide5:checked ~ .carousel ul {
	left: -400%;
}

#slide5:checked ~ .nav-dot[for="slide5"] {
	opacity: 1;
}

.left-arrow,
.right-arrow {
	display: none;
	position: absolute;
	cursor: pointer;
	font-weight: bolder;
	text-shadow: 0 0 7.5px rgba(0, 0, 0, 0.7);
	top: 50%;
	z-index: 1;
	opacity: 0.7;
	margin-top: -25px;
	height: 50px;
	font-size: 50px;
	transition: 0.2s;
}

.left-arrow:hover,
.right-arrow:hover {
	opacity: 1;
	transform: scale(1.2);
}

.left-arrow:active,
.right-arrow:active {
	transform: scale(0.9);
}

.left-arrow {
	left: 15px;
}

.right-arrow {
	right: 15px;
}

#slide1:checked ~ .left-arrow[for="slide5"],
#slide1:checked ~ .right-arrow[for="slide2"] {
	display: block;
}

#slide2:checked ~ .left-arrow[for="slide1"],
#slide2:checked ~ .right-arrow[for="slide3"] {
	display: block;
}

#slide3:checked ~ .left-arrow[for="slide2"],
#slide3:checked ~ .right-arrow[for="slide4"] {
	display: block;
}

#slide4:checked ~ .left-arrow[for="slide3"],
#slide4:checked ~ .right-arrow[for="slide5"] {
	display: block;
}

#slide5:checked ~ .left-arrow[for="slide4"],
#slide5:checked ~ .right-arrow[for="slide1"] {
	display: block;
}

.signature {
	margin-top: 100px;
	bottom: 0;
	font-family: "Quicksand";
	color: rgba(150, 150, 170);
	text-shadow: 0 2.5px rgba(0, 0, 0, 0.25);
}

.signature .name {
	color: white;
}

.signature .dot {
	margin: 0 5px;
}

.signature a {
	color: white;
	text-decoration: underline;
}

#textareaContat {
	resize: none;
}
#textareaContat::placeholder {
	color: #757575;
}

@media (max-width: 768px) {
	/* Language Switcher */
	.language-switcher {
		position: relative;
		/* Adjust positioning */
		justify-content: center;
		align-items: center;
		right: 0;
		top: 1vh;
		margin: 0 1rem;
		/* Reduce margin for mobile */
	}

	.language-switcher > button {
		font-size: 1.2rem;
		/* Reduce font size for mobile */
		padding: 0.3rem;
		/* Adjust padding */
	}

	#languageSeparator {
		width: 2px;
		height: 1.5rem;
		/* Reduce size for separator */
		margin: 2px;
	}

	#belvederLogo {
		width: 60vw;
		transition: width 0.3s ease-in-out;
	}

	#navBar {
		display: flex;
		/* Ensure it uses flex for layout */
		justify-content: center;
		align-items: center;
		width: 100vw;
		visibility: hidden;
		overflow: hidden;
		/* Prevent content overflow */
		transition: visibility 0.3s ease-in-out;
		/* Animate opacity and height */
	}

	nav ul {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		list-style: none;
		padding: 0;
	}

	.hero {
		position: absolute;
		top: 35%;
		right: 50;
		display: flex;
		margin: 5vh;
	}

	#saying > img {
		margin: 20px 0;
	}

	#h1Location {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		margin: 2rem auto;
		flex-wrap: wrap;
	}

	#location {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		width: 90vw;
		margin: auto;
		height: 70vh;
	}

	#lineLocation {
		width: 90%;
		height: 1%;
		margin: 4rem;
		border-radius: 20%/30%;
		background-color: rgb(70, 130, 180);
		border: 2px solid rgb(70, 130, 180);
	}

	#location > p {
		text-align: left;
		width: 95%;
		height: 100%;
		line-height: 2rem;
		overflow-y: auto;
	}

	#map {
		height: 50vh;
		width: 100%;
		box-shadow: 3px 3px 10px 1px rgb(70, 130, 180);
	}

	.carousel-wrapper {
		position: relative;
		max-width: 100vw;
	}

	.carousel-wrapper input {
		display: none;
	}

	.carousel {
		overflow: hidden;
		border-radius: 15px;
		margin: 0 50px;
	}

	.carousel ul {
		padding: 10px;
	}

	.gallery-section {
		height: auto;
		margin-top: 12rem;
	}

	#about-section {
		text-align: center;
		padding: 50px;
		background-color: #fff;
	}

	#aboutBody {
		height: 100vh;
		margin: 0px;
		padding: 0px;
	}

	#aboutMain {
		margin: auto;
		padding: 0;
		margin-top: 10rem;
		width: 90%;
		height: auto;
	}

	#contactImgs {
		display: flex;
		flex-direction: row;
		justify-content: end;
		align-items: center;
		width: 100vw;
		height: 40vh;
		margin-bottom: 0rem;
		margin-top: 0rem;
	}

	#contactImgs > img {
		box-shadow: 5px 5px 10px 5px rgb(43, 43, 43),
			inset 10px 10px 10px 20px rgba(70, 130, 180, 0.7);
		border: 6px solid rgba(70, 130, 180, 0.8);
		margin: 1rem;
		padding: 0.3rem;
		border-radius: 40%/30%;
	}

	#phoneCall {
		transform: rotateZ(15deg) translateX(-70px) translateY(-60px);
		z-index: -1;
		height: 40%;
	}

	#batmanCall {
		height: 60%;
		transform: rotateZ(-5deg);
	}

	#contactMain {
		margin-top: 12rem;
	}

	#menuMain {
		color: white;
		height: auto;
		width: auto;
		margin: 12rem auto;
		padding: 0;
	}

	.menu-section {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.drinks > ul,
	.amount > ul,
	.price > ul {
		list-style-type: none;
	}

	.drinksType {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin: 2rem 0;
		padding: 2rem;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 15px;
		padding: 20px;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.2);
		color: white;
	}

	.drinks {
		width: 50%;
		white-space: nowrap;
		overflow-x: auto;
	}

	.amount {
		width: 25%;
		display: flex;
		justify-content: end;
	}

	.price {
		width: 25%;
		display: flex;
		justify-content: end;
	}
	.vinoK {
		line-height: 1.14rem;
	}
	.vinoC {
		line-height: 1.14rem;
	}
}
