:root {
	--primary: #222;
	--light: #fafafa;
	--accent: #c59d5f;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Helvetica Neue", sans-serif;
	background: var(--light);
	color: var(--primary);
}
.container {
	max-width: 1200px;
	margin: auto;
	padding: 2rem;
}
#menu-toggle {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--primary);
	cursor: pointer;
	transition: transform 0.3s;
}
#menu-toggle:hover {
	transform: rotate(90deg);
}
#offcanvas {
	z-index: 999;
	position: fixed;
	top: 0;
	left: -100%;
	width: 80%;
	max-width: 320px;
	height: 100%;
	background: #fff;
	transition: left 0.3s ease;
	overflow-y: auto;
	padding: 2rem;
	box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
}
#offcanvas.open {
	left: 0;
}
#close-menu {
	background: none;
	border: none;
	font-size: 2rem;
	display: block;
	margin-left: auto;
	cursor: pointer;
}
#offcanvas .logo {
	display: block;
	margin: 2rem auto;
	width: 140px;
}
#offcanvas ul {
	list-style: none;
	margin-top: 2rem;
}
#offcanvas ul li + li {
	margin-top: 1.5rem;
}
#offcanvas a {
	display: block;
	color: var(--primary);
	text-decoration: none;
	font-size: 1.2rem;
	position: relative;
	padding-bottom: 4px;
}
#offcanvas a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s;
}
#offcanvas a:hover::after {
	width: 100%;
}
.lang-switch {
	margin-top: 3rem;
	text-align: center;
}
.lang-switch button {
	margin: 0 0.5rem;
	padding: 0.5rem 1rem;
	border: 2px solid var(--primary);
	background: none;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
}
.lang-switch button:hover {
	background: var(--accent);
	color: #fff;
}
#hero {
	position: relative;
	height: 80vh;
	background: url("../assets/home1.jpg") center/cover no-repeat;
}

#hero2 {
	position: relative;
	height: 80vh;
	background: url("../assets/fontana2.png") center/cover no-repeat;
} 

#hero .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}
.hero-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.hero-logo {
	width: 120px;
	margin-bottom: 1rem;
}
.hero-content h1 {
	font-size: 3rem;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}
#intro {
	padding: 4rem 0;
	line-height: 1.6;
}
#map iframe {
	width: 100%;
	height: 450px;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
footer {
	padding: 2rem 0;
	text-align: center;
	font-size: 0.9rem;
	background: #fff;
	border-top: 1px solid #eee;
}
.page-content.fade-in {
	opacity: 0;
	animation: fadeIn 1s ease-in 0.3s forwards;
}
@media (max-width: 768px) {
	#hero {
		height: 60vh;
	}
	.hero-content h1 {
		font-size: 2.2rem;
	}
}
/* Language switch hide */
[data-lang] {
	display: none;
}
[data-lang].active {
	display: block;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}