:root {
	--primary-color: #FF6B6B;
	--secondary-color: #0c1f0c;
	--accent-color: #4ecdc4;
	--text-light: #ffffff;
	--text-dark: #333333;
	--background-light: #ffffff;
	--background-dark: #f4f4f4;
	--font-primary: 'Lato', sans-serif;
	--font-secondary: 'Playfair Display', serif;
	--transition-speed: 0.3s;
	--border-radius: 5px;
	--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  


/** Stili generali **/
html, body {
	max-width: 100%;
	overflow-x: hidden;
	}
	body{
	font-family: "Source Sans Pro";
	}

	.float-left {
	float: left;
	}
	.float-right {
	float: right;
	}
	.no-pad {
	padding: 0;
	}
	.pad-left {
	margin-left: 30px;
	}
	.bd-radius img{border: 1px solid white; border-radius: 15px;}
	.bg-shadow{background-color: rgba(0,0,0,0.4); height: 100vh;}
	.col-4-1, .col-4-2, .col-4-3, .col-4-4 {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	}
	.col-4-1 {
	width: 25%;
	}
	.col-4-2 {
	width: 50%;
	}
	.col-4-3 {
	width: 75%;
	}
	.col-4-4 {
	width: 100%;
	}
	.col-lg-4 p {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	}
	.col-lg-4 img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 2px solid white;
	}
	#social-bar {
	position: fixed;
	top: 300px;
	right: 0px;
	z-index: 9999;
	}
	#social-bar a {
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: rgba(255,255,255,1.00);
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
	background-color: rgba(0,0,0,0.19);
	font-size: 24px;
	-webkit-transition: all 400ms ease-out 0s;
	-o-transition: all 400ms ease-out 0s;
	border-radius: 4px;
	transition: all 400ms ease-out 0s;
	}
	#social-facebook:hover {
	background-color: rgba(59,89,152,1.00);
	}
	#social-instagram:hover {
	background-color: rgba(151,34,93,1.00);
	}
	#social-twitter:hover {
	background-color: rgba(29,161,242,1.00);
	}
	.white-space{height: 20vh;}
	:root {
	--color-bg: #fff;
	--color-bg2: #f4f4f4;
	--color-toggle-accent: #ff7900;
	--color-text: #333333;
	}
	html.dark {
	--color-bg: #000000;
	--color-bg2: #0b0b0b;
	--color-text: #fafafa;
	--color-toggle-accent: #a076ce;
	}
	html {
	background-color: var(--color-bg);
	color: var(--color-text);
	scroll-behavior: smooth;
	}

	body {
	margin: 0;
	font-family: Helvetica, sans-serif;
	}
	.lato-thin {
		font-family: "Lato", sans-serif;
		font-weight: 100;
		font-style: normal;
	  }
	  
	  .lato-light {
		font-family: "Lato", sans-serif;
		font-weight: 300;
		font-style: normal;
	  }
	  
	  .lato-regular {
		font-family: "Lato", sans-serif;
		font-weight: 400;
		font-style: normal;
	  }
	  
	  .lato-bold {
		font-family: "Lato", sans-serif;
		font-weight: 700;
		font-style: normal;
	  }
	  
	  .lato-black {
		font-family: "Lato", sans-serif;
		font-weight: 900;
		font-style: normal;
	  }
	  
	  .lato-thin-italic {
		font-family: "Lato", sans-serif;
		font-weight: 100;
		font-style: italic;
	  }
	  
	  .lato-light-italic {
		font-family: "Lato", sans-serif;
		font-weight: 300;
		font-style: italic;
	  }
	  
	  .lato-regular-italic {
		font-family: "Lato", sans-serif;
		font-weight: 400;
		font-style: italic;
	  }
	  
	  .lato-bold-italic {
		font-family: "Lato", sans-serif;
		font-weight: 700;
		font-style: italic;
	  }
	  
	  .lato-black-italic {
		font-family: "Lato", sans-serif;
		font-weight: 900;
		font-style: italic;
	  }

	  .playfair-display {
		font-family: "Playfair Display", serif;
		font-optical-sizing: auto;
		font-weight: weight;
		font-style: normal;
	  }
	
h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", serif;
	color: #6b6b6b;
}

p{
	font-family: "Lato", sans-serif;}

	
	/*************************************************** Header ***************************************************/
	.caption h2{
		color: white;
	}

	.main-title{
		color: white;
	}
	
	.header {
	display: flex; /* Makes the header a flex container */
	align-items: center; /* Vertically aligns the logo and menu */
	justify-content: space-between; /* Places the logo on the left and the menu on the right */
	position: fixed;
	width: 100%;
	z-index: 3;
	background-color: #ffffff; /* Default background */
	transition: background-color 0.3s ease; /* Smooth transition */
	padding: 0 20px; /* Add padding for spacing */
	height: 80px; /* Adjust height as needed */
	border: 1px solid rgba(0, 0, 0, 0.089);
	box-shadow: #000 0px 0px 10px 0px;
	}

	.header.scrolled {
	background-color: rgba(2, 2, 2, 0.938);
	}


	/* Logo */
	.header .logo {
	display: flex;
	align-items: center; /* Vertically aligns the logo */
	}

	/* Menu */
	.header .menu {
	display: flex; /* Makes the menu items a flex container */
	list-style: none;
	margin: 0;
	padding: 0;
	}

	.header .menu li {
	margin: 0 15px; /* Add spacing between menu items */
	}

	/* Default styles for navbar links */
	.menu li a {
	color: #000000; /* Default text color */
	text-decoration: none;
	padding: 10px 15px;
	border-bottom: none; /* Ensure no border by default */
	transition: color 0.3s ease, border-bottom 0.3s ease;
	text-transform: uppercase;
	font-weight: bold;
	}

	/* Active link styles */
	.menu li a.active {
	color: #FF6B6B; /* Highlight active link */
	border-bottom: 2px solid #FF6B6B; /* Add border for active link */
	}

	/* Hover styles */
	.menu li a:hover {
	color: #FF6B6B; /* Change color on hover */
	}

	.menu li a i {
	margin-right: 8px; /* Add spacing between the icon and text */
	}

	.header .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 28px 20px;
	position: relative;
	user-select: none;
	}

	.header .menu-icon .navicon {
	background: rgb(0, 0, 0);
	display: block;
	height: 2px;
	width: 22px;
	position: relative;
	transition: background .2s ease-out;
	}

	.header .menu-icon .navicon:before,
	.header .menu-icon .navicon:after {
	background: rgb(0, 0, 0);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
	}
	
	.header .menu-icon .navicon:before {
	top: 6px;
	}

	.header .menu-icon .navicon:after {
	top: -6px;
	}

	.header .menu-btn {
	display: none;
	}

	.header .menu-btn:checked ~ .menu {
	display: flex; /* Show the menu when the menu button is checked */
	flex-direction: column; /* Stack menu items vertically */
	background-color: rgba(255, 255, 255, 0.8); /* Add a background color for the dropdown */
	position: absolute;
	top: 100%; /* Position below the header */
	left: 0;
	right: 0;
	padding: 10px 0;
	z-index: 2;
	}

	.header .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
	}

	.header .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
	}

	.header .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
	}

	.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
	.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
	}

	@keyframes slideIn {
	from {
	transform: translateY(-30px);
	opacity: 0;
	}
	to {
	transform: translateY(0);
	opacity: 1;
	}
	}





	/*************************************************** Cover ***************************************************/
	#cover {
	position: relative; /* Set position to relative for the overlay */
	text-align: center;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-image: url(img/AdobeStock_138255984.jpeg);
	height: 90vh;
	}

	/* Dark overlay */

	.bg-salmon{
		background-color: #FF6B6B;
		padding-top: 40px;
	}

	.bg-salmon h1,
	.bg-salmon h2,
	.bg-salmon h3,
	.bg-salmon h4,
	.bg-salmon h5,
	.bg-salmon h6 {
	  color: white; /* Set the text color to white */
	}

	.txt-white{color: white;}
	#cover::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity for darkness */
	z-index: 1; /* Ensure the overlay is above the background */
	}

	/* Content inside the hero section */
	#cover p{
		font-size: 10px;
	}
	#cover p,
	#cover .caption {
	position: relative;
	z-index: 2; /* Ensure the text is above the overlay */
	}

	.caption{padding-top: 	15rem;}

	.main-title{
	font-size: 70px;
	font-weight: lighter;
	margin-top: 130px;
	}

	.secondary-title{
	font-size: 50px;
	margin: 0 auto;
	}

	.button{
	font-size: 1.6rem;
	background-color: #FF6B6B;
	color: #fff;
	text-transform: uppercase;
	padding: 15px 30px;
	display: inline-block;
	margin-top: 10rem;
	margin-bottom: 30rem;
	border-radius: 5px;
	transition: 0.5s ease;
	font-weight: bold;
	letter-spacing: 1px;
	}

	.button:hover{
	color: #000000;
	text-decoration: none;
	background-color: #FFFFFF;
	border: none;
	animation: bounce 0.5s ease-in-out;
	}

	.button:active {
	color: #FFFFFF;
	}

	@keyframes bounce {
		0%, 100% {
		  transform: translateY(0);
		}
		50% {
		  transform: translateY(-10px);
		}
	}

	.parallax {
	width: 100%;
	height: 400px;
	background-image: url(img/sfondo.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	}



	/*************************************************** Menu ***************************************************/
/* Sezione Menu */
#menu {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	color: #000;
	padding: 60px 0;
  }
  
  .menu-title {
	font-size: 50px;
	margin-bottom: 40px;
	text-align: center;
	position: relative; /* Set position to relative for the pseudo-element */
  }

  .menu-title::after {
	content: ''; /* Create a pseudo-element */
	display: block;
	width: 3%; /* Set the width to half of the title */
	height: 2px; /* Adjust the height of the border */
	background-color: #FF6B6B; /* Set the border color */
	margin: 10px auto 0; /* Center the border and add spacing */
  }
  
  .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  }
  
  .col-lg-6 {
	width: 50%;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .menu-item {
	width: 100%;
	max-width: 500px;
	text-align: center;
	margin-bottom: 2.5rem;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	display: flex; /* Make the menu-item a flex container */
	flex-direction: column; /* Stack content vertically */
	justify-content: space-between; /* Ensure content is spaced evenly */
	height: 400px; /* Set a consistent height for all menu items */
  }
  
  #menu img {
	width: 100%;
	height: 200px; /* Set a consistent height for images */
	object-fit: cover; /* Ensure images maintain their aspect ratio */
	border-radius: 10px 10px 0 0;
  }  
  .menu-item h3 {
	font-size: 3rem;
	font-weight: bold;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	color: black;
  }
  
  .menu-item p {
	font-size: 1.8rem;
	line-height: 1.5;
	color: grey;
  }

  .menu-text {
	text-align: left;
	margin: 20px;
	flex-grow: 1; /* Allow the text to grow and fill available space */
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.col-lg-6 {
	  width: 100%;
	}
  
	.menu-item {
	  max-width: 90%;
	  height: auto;
	}
  }
  
	/*************************************************** About ***************************************************/

	/* About Section */
	#about {
	  background-color: #f4f4f4; /* Light grey background */
	  padding: 60px 20px; /* Add spacing */
	  display: flex;
	  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
	  align-items: center; /* Center content vertically */
	  justify-content: center; /* Center content horizontally */
	}
	
	.banner-img {
	  width: 40%; /* Default width for larger screens */
	  float: left;
	  background-size: cover;
	  background-position: center center;
	  height: 550px;
	  background-image: url(img/about_1.jpg);
	  border-radius: 20px;
	  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	}
	
	.banner-copy {
	  width: 60%; /* Default width for larger screens */
	  float: left;
	  display: table;
	}
	
	.banner-copy-text {
	  display: table-cell;
	  vertical-align: middle;
	  padding: 0px 30px 30px 30px;
	}
	
	.banner-copy-text h3 {
	  font-size: 36px;
	  margin-bottom: 0;
	}
	
	.banner-copy-text h4 {
	  font-size: 22px;
	  margin: 5px 0;
	}
	
	#about p {
	  font-size: 18px;
	  line-height: 2;
	}
	
	/* Responsive Design */
	@media (max-width: 768px) {
		
	  #about {
		flex-direction: column; /* Stack content vertically */
		padding: 40px 15px; /* Adjust padding for smaller screens */
	  }
	
	  .banner-img {
		width: 100%; /* Full width for smaller screens */
		height: 500px; /* Adjust height */
		margin: 20rem 0; /* Add spacing below the image */
	  }
	
	  .banner-copy {
		width: 100%; /* Full width for smaller screens */
		float: none; /* Remove float */
		display: block; /* Reset display */
	  }
	
	  .banner-copy-text {
		padding: 0 15px; /* Reduce padding for smaller screens */
		text-align: center; /* Center-align text */
	  }
	
	  .banner-copy-text h3 {
		font-size: 28px; /* Adjust font size */
	  }
	
	  .banner-copy-text h4 {
		font-size: 18px; /* Adjust font size */
	  }
	
	  #about p {
		font-size: 16px; /* Adjust font size */
		line-height: 1.8; /* Adjust line height */
	  }
	}

	.banner h2 {
	margin-bottom: 60px;
	}

	.secondary-parallax {
	width: 100%;
	height: auto;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.60) 0.14%,rgba(0,0,0,0.60) 100%), url(img/AdobeStock_160776300_Preview.jpeg);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.60) 0.14%,rgba(0,0,0,0.60) 100%), url(img/AdobeStock_160776300_Preview.jpeg);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.60) 0.14%,rgba(0,0,0,0.60) 100%), url(img/AdobeStock_160776300_Preview.jpeg);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.60) 0.14%,rgba(0,0,0,0.60) 100%), url(img/AdobeStock_160776300_Preview.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	background-color: rgba(0,0,0,0.59);
	color: rgba(255,255,255,1.00);
	padding: 10rem 0 !important;
	}

	.container {
	padding: 0;
	}

	ul.who-social  {
	padding: 0;
	list-style-type: none;
	margin-bottom: 50px;
	}

	ul.who-social  li {
	display: inline-block;
	}

	ul.who-social  li a {
	color: #fff; /* Default text color */
	background-color: #FF6B6B; /* Default background color */
	padding: 10px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
	}

	ul.who-social  li a:hover {
	background-color: #fff; /* Change background to white on hover */
	color: #FF6B6B; /* Change text/icon color to match the default background */
	}

	.secondary-button {
	font-size: 14px;
	color: #fff;
	padding: 10px 30px;
	border: 1px solid #fff;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 230px;
	background-color: transparent;
	}

	.who-social {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
	}

	.who-social li {
	width: 40px;
	height: 40px;
	margin: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f5f5f5;
	border-radius: 50%;
	}

	.who-social a {
	display: inline-block;
	font-size: 20px;
	color: #000;
	text-align: center;
	line-height: 1;
	width: 100%;
	height: 100%;
	text-decoration: none;
	}

	.who-social a:hover {
	color: #000000;
	}

.about-title {
  font-size: 50px;
  margin-bottom: 40px;
  text-align: center;
  position: relative; /* Set position to relative for the pseudo-element */
}

.about-title::after {
  content: ''; /* Create a pseudo-element */
  display: block;
  width: 3%; /* Set the width to half of the title */
  height: 2px; /* Adjust the height of the border */
  background-color: #FF6B6B; /* Set the border color */
  margin: 10px auto 0; /* Center the border and add spacing */
}

.contact-title,
.reviews-title {
  font-size: 50px;
  margin-bottom: 40px;
  text-align: center;
  position: relative; /* Set position to relative for the pseudo-element */
}

.contact-title::after,
.reviews-title::after {
  content: ''; /* Create a pseudo-element */
  display: block;
  width: 3%; /* Set the width to half of the title */
  height: 2px; /* Adjust the height of the border */
  background-color: #FF6B6B; /* Set the border color */
  margin: 10px auto 0; /* Center the border and add spacing */
}

/* Reviews Section */
.reviews-section {
	padding: 5rem 0;
	background-color: var(--background-dark);
  }
  
  .reviews-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  }
  
  .review-card {
	width: 100%;
	max-width: 350px;
	margin: 0 15px 30px;
	padding: 20px;
	background-color: var(--background-light);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
  }
  
  .review-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
  }
  
  .review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	font-weight: 700;
	font-size: 1.2rem;
  }
  
  .review-info h4 {
	margin: 0 0 5px;
  }
  
  .review-date {
	font-size: 0.9rem;
	color: #777;
  }
  
  .review-rating {
	margin-bottom: 10px;
	color: #ffc107;
  }
  
  .review-content {
	font-style: italic;
	margin-bottom: 0;
  }
  
  .review-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 30px;
	background-color: var(--background-light);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
  }
  
  .review-form h3 {
	margin-top: 0;
	margin-bottom: 20px;
	text-align: center;
  }
  
  .form-group {
	margin-bottom: 20px;
  }
  
  .form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
  }
  
  .form-control {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-family: inherit;
	font-size: 1rem;
  }
  
  .form-control:focus {
	outline: none;
	border-color: var(--primary-color);
  }
  
  .rating-select {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
  }
  
  .rating-select input {
	display: none;
  }
  
  .rating-select label {
	cursor: pointer;
	font-size: 1.5rem;
	color: #ddd;
	padding: 0 5px;
  }
  
  .rating-select input:checked ~ label {
	color: #ffc107;
  }
  
  .rating-select label:hover,
  .rating-select label:hover ~ label {
	color: #ffc107;
  }
  
  .rating-select input:checked + label:hover,
  .rating-select input:checked ~ label:hover,
  .rating-select label:hover ~ input:checked ~ label,
  .rating-select input:checked ~ label:hover ~ label {
	color: #ffd700;
  }
  
  /* Reservation Section */
  .reservation-section {
	padding: 5rem 0;
	background-color: var(--background-light);
  }
  
  .reservation-form {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px;
	background-color: var(--background-dark);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
  }
  
  .reservation-form h3 {
	margin-top: 0;
	margin-bottom: 20px;
	text-align: center;
  }
  
  .form-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
  }
  
  .form-col {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 10px;
  }
  
  .form-submit {
	text-align: center;
	margin-top: 20px;
  }
  
  .btn-primary {
	background-color: var(--primary-color);
	color: var(--text-light);
	border: none;
	padding: 12px 30px;
	border-radius: var(--border-radius);
	cursor: pointer;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: background-color var(--transition-speed);
  }
  
  .btn-primary:hover {
	background-color: #ff5252;
  }
  
  /* Contact Section */
  .contact-section {
	padding: 5rem 0;
	background-color: var(--background-dark);
  }
  
  .contact-container {
	display: flex;
	flex-wrap: wrap;
	margin-top: 5rem;
  }
  
  .contact-form {
	flex: 1;
	min-width: 300px;
	padding: 0 15px;
  }
  
  .contact-info {
	flex: 1;
	min-width: 300px;
	padding: 0 15px;
  }
  
  .contact-card {
	background-color: var(--background-light);
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--box-shadow);
  }
  
  .contact-card h4 {
	display: flex;
	align-items: center;
	margin-top: 0;
	margin-bottom: 15px;
	color: var(--primary-color);
  }
  
  .contact-card h4 i {
	color: var(--primary-color); /* Match the icon color with your theme */
	margin-right: 10px;
  }

  .contact-card p {
	margin-bottom: 0;
  }

  .contact-card p i {
	margin-right: 5px;
  }
  
  .map-container {
	height: 300px;
	margin-top: 30px;
	border-radius: var(--border-radius);
	overflow: hidden;
  }
  
  
	/*************************************************** Footer ***************************************************/
	.footer {
		background-color: var(--primary-color);
		color: #fff;
		padding: 40px 20px;
		text-align: center;
	  }
	  
	  .footer h3 {
		margin-bottom: 20px;
		font-size: 24px;
		font-family: 'Chakra Petch', sans-serif; /* Personalizzabile */
		color: white;
	  }
	  
	  .footer-content {
		max-width: 1200px;
		margin: 0 auto;
	  }
	  
	  .booking-form-horizontal {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
		align-items: center;
	  }
	  
	  .booking-form-horizontal input,
	  .booking-form-horizontal button {
		color: black;
		padding: 10px;
		font-size: 14px;
		border-radius: 6px;
		border: 1px solid #ccc;
		font-family: 'Chakra Petch', sans-serif; /* Personalizzabile */
	  }
	  
	  .booking-form-horizontal input {
		min-width: 140px;
		flex: 1 1 auto;
	  }
	  
	  .booking-form-horizontal button.btn-submit {
		background-color: black;
		color: rgb(255, 255, 255);
		border: none;
		cursor: pointer;
		transition: background 0.3s ease;
		flex: 0 0 auto;
	  }
	  
	  .booking-form-horizontal button.btn-submit:hover {
		background-color: #727272;
	  }
	  
	  .footer-note {
		margin-top: 30px;
		font-size: 13px;
		color: #ffffff;
	  }
	  
	  /* Responsive layout */
	  @media (max-width: 600px) {
		
		.booking-form-horizontal {
		  flex-direction: column;
		  align-items: stretch;
		}
	  
		.booking-form-horizontal input,
		.booking-form-horizontal button {
		  width: 100%;
		}
	  }
	  
/* Helper Classes */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
  }
  
  .text-primary {
	color: var(--primary-color);
  }
  
  .bg-primary {
	background-color: var(--primary-color);
  }
  
  .text-white {
	color: var(--text-light);
  }
  
  .mt-0 { margin-top: 0 !important; }
  .mb-0 { margin-bottom: 0 !important; }
  .mt-1 { margin-top: 0.5rem !important; }
  .mb-1 { margin-bottom: 0.5rem !important; }
  .mt-2 { margin-top: 1rem !important; }
  .mb-2 { margin-bottom: 1rem !important; }
  .mt-3 { margin-top: 1.5rem !important; }
  .mb-3 { margin-bottom: 1.5rem !important; }
  .mt-4 { margin-top: 2rem !important; }
  .mb-4 { margin-bottom: 2rem !important; }
  .mt-5 { margin-top: 2.5rem !important; }
  .mb-5 { margin-bottom: 2.5rem !important; }
  
  /* Animation */
  .fade-in {
	animation: fadeIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  .slide-in-left {
	animation: slideInLeft 1s ease-in-out;
  }
  
  @keyframes slideInLeft {
	from {
	  opacity: 0;
	  transform: translateX(-50px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  .slide-in-right {
	animation: slideInRight 1s ease-in-out;
  }
  
  @keyframes slideInRight {
	from {
	  opacity: 0;
	  transform: translateX(50px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
/* Pulse animation */
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
	
/* ----------------------------------------------
 * Generated by Animista on 2025-5-11 21:24:46
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-top {
	0% {
	  -webkit-transform: translateY(-1000px);
			  transform: translateY(-1000px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateY(0);
			  transform: translateY(0);
	  opacity: 1;
	}
  }
  @keyframes slide-in-top {
	0% {
	  -webkit-transform: translateY(-1000px);
			  transform: translateY(-1000px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateY(0);
			  transform: translateY(0);
	  opacity: 1;
	}
  }
  .slide-in-top {
	-webkit-animation: slide-in-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}  

/* Default state (hidden) */
.slide-in-left,
.slide-in-right,
.slide-in-top,
.fade-in,
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(20px); /* Adjust for slide-in animations */
  transition: all 0.8s ease-in-out;
}

/* Visible state (when in view) */
.in-view {
  opacity: 1;
  transform: translateY(0); /* Reset transform */
}

/* Default state (hidden) */
.col-lg-4 {
  opacity: 0;
  transform: translateY(20px); /* Adjust for slide-in animations */
  transition: all 0.8s ease-in-out;
}

/* Visible state (when in view) */
.col-lg-4.in-view {
  opacity: 1;
  transform: translateY(0); /* Reset transform */
}

/*************************************************** Media Queries ***************************************************/




	/*************************************************** Mobile ***************************************************/
		/* Responsive Menu for Small Screens */
		@media (max-width: 768px) {
			.header {
			  justify-content: space-between; /* Keep logo and menu icon aligned */
			}
	  
			.header .menu {
			  display: none; /* Hide the menu by default */
			}
	  
			.header .menu-btn:checked ~ .menu {
			  display: flex; /* Show the menu when the menu button is checked */
			  flex-direction: column; /* Stack menu items vertically */
			  background-color: #ffffff; /* Add a background color for the dropdown */
			  position: absolute;
			  top: 100%; /* Position below the header */
			  left: 0;
			  right: 0;
			  z-index: 2;
			  margin: 0;
			  padding: 0;
			          box-shadow: black -1px 6px 6px -5px;
			}
	  
			.header .menu li {
			  text-align: right; /* Align menu items to the right */
			  margin: 0;
			}

			.header .menu li a {
			  display: block; /* Make the <a> a block element */
			  width: 100%; /* Take up the full width of the <li> */
			  height: 100%; /* Take up the full height of the <li> */
			  padding: 20px 20px; /* Add padding for better spacing */
			  box-sizing: border-box; /* Include padding in the element's dimensions */
			  text-align: right; /* Align text to the right */
			}

			.header .menu a:hover {
			  background-color: rgba(255, 255, 255, 0.2); /* Add a hover effect */
			  transition: background-color 0.3s ease; /* Smooth transition */
			}

			.menu li a.active {
			  color: #FF6B6B; /* Keep active link color */
			  border-bottom: none; /* Remove border for active links on small screens */
			  font-weight: bold; /* Optional: Make active link stand out */
			}

			.col-lg-6 {
				max-width: 100%;
				padding: 10px;
			  }
		}

	/*************************************************** Tablet ***************************************************/
	/* Hide menu-icon on larger screens */
		@media (min-width: 769px) {
			.header .menu-icon {
			display: none; /* Hide the menu icon */
			}
	
			.header .menu {
			display: flex; /* Show the menu as a horizontal bar */
			flex-direction: row; /* Align menu items horizontally */
			justify-content: flex-end; /* Align menu items to the right */
			max-height: none; /* Remove height restriction */
			position: static; /* Reset position */
			background-color: transparent; /* No background color */
			}
	
			.header .menu li {
			margin: 0 20px; /* Add spacing between menu items */
			}
		}






	/************************************************ Desktop ************************************************/
		/* Add lateral padding to the header on desktop sizes */
		@media (min-width: 1024px) {
			.header {
			  padding: 0 20rem; /* Add 40px padding to the left and right */
			}
		  }