
@font-face {
	font-family: "montserrat";
	src: url('/fonts/montserrat.ttf')
}

.montserrat {
	font-family: 'montserrat', sans-serif;
}

html, body {
	font-family: montserrat !important;
}
body {
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden !important;
	padding-top: 70px;
}
.dropdown-item:focus, .dropdown-item:hover {
	background-color: #CCC;
}



/* Immagini */
.carousel-inner .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.2);
	transition: transform 0s;
}
.carousel-inner .carousel-item {
	position: relative;
}
.carousel-inner .carousel-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	pointer-events: none;
	z-index: 10;
}
.carousel-wrapper {
	position: relative;
	background: #000; /* o il colore del tuo carousel */
}
.carousel-logo {
	position: absolute;
	bottom: -90px; /* quanto deve scendere nella sezione sotto */
	left: 50%;
	transform: translateX(-50%);
	width: 180px; /* dimensione logo */
	z-index: 10;
}
.next-section {
	padding-top: 80px; /* spazio per non far sovrapporre il contenuto */
	background: #ffffff;
}


.anim-zoom img {
	animation: zoomIn 8s ease-in-out forwards;
}
@keyframes zoomIn {
	from {
		transform: scale(1.2);
	}

	to {
		transform: scale(1.35);
	}
}
.anim-pan-left img {
	animation: panLeft 8s linear forwards;
}
@keyframes panLeft {
	from {
		transform: translateX(5%) scale(1.2);
	}

	to {
		transform: translateX(-5%) scale(1.2);
	}
}
.anim-pan-right img {
	animation: panRight 8s linear forwards;
}
@keyframes panRight {
	from {
		transform: translateX(-5%) scale(1.2);
	}

	to {
		transform: translateX(5%) scale(1.2);
	}
}
.anim-fade img {
	animation: fadeCine 8s ease forwards;
}
@keyframes fadeCine {
	from {
		opacity: 0.5;
		transform: scale(1.2);
	}

	to {
		opacity: 1;
		transform: scale(1.25);
	}
}
.anim-slide-up img {
	animation: slideUp 8s ease-out forwards;
}
@keyframes slideUp {
	from {
		transform: translateY(5%) scale(1.2);
		opacity: 0.9;
	}

	to {
		transform: translateY(0) scale(1.2);
		opacity: 1;
	}
}
.anim-slide-down img {
	animation: slideDown 8s ease-out forwards;
}
@keyframes slideDown {
	from {
		transform: translateY(-5%) scale(1.2);
		opacity: 0.9;
	}

	to {
		transform: translateY(0) scale(1.2);
		opacity: 1;
	}
}
.anim-rotate img {
	animation: rotateSoft 8s ease-in-out forwards;
}
@keyframes rotateSoft {
	from {
		transform: scale(1.2) rotate(-1deg);
	}

	to {
		transform: scale(1.25) rotate(1deg);
	}
}



.hero-text-box {
	max-width: 500px;
	width: 100%;
}
/* L'immagine deve solo riempire la larghezza della colonna */
.hero-img {
	width: 100%;
	height: auto; /* mantiene proporzioni originali */
	object-fit: cover; /* utile se l'immagine è più grande */
	display: block;
}


/* SECTION PARALLAX */
.maulli-parallax {
	background-image: url('/images/parallax4.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /* effetto parallax */
	padding: 120px 0;
	position: relative;
}
.maulli-parallax::before {
	content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		/*backdrop-filter: blur(1px);*/
		z-index: 1;
	}
	.maulli-parallax .container,
	.maulli-parallax .row {
		position: relative;
		z-index: 2;
	}
.text-box {
	max-width: 500px;
	color: #fff;
}
.inner-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
	transition: transform 0.5s ease;
}
.inner-img:hover {
	transform: scale(1.03);
}



/* GALLERY Wrapper generale dei controlli */
.swiper-controls-wrapper {
	margin-top: 35px; /* 20px in più rispetto a prima */
	display: flex;
	justify-content: center; /* centra i pallini */
	align-items: center;
	position: relative;
}
.swiper-pagination {
	position: static !important;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	width: auto;
}
.swiper-controls {
	position: absolute;
	right: 0;
	display: flex;
	gap: 10px;
}
.swiper-button-prev,
.swiper-button-next {
	position: static !important;
	width: 38px;
	height: 38px;
	background: rgba(0,0,0,0.5);
	border-radius: 50%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-button-prev::after,.swiper-button-next::after {
		font-size: 16px;
}




/* ------ */
.maulli-section .small-title {
	letter-spacing: 2px;
	font-size: 0.85rem;
	color: #888;
}
.maulli-section .main-img-wrapper {
	position: relative;
}
.maulli-section .main-img {
	border-radius: 20px;
}
.maulli-section .small-img {
	width: 260px;
	border-radius: 16px;
	position: absolute;
	z-index: 3;
	transition: transform 0.4s ease;
}
.maulli-section .small-img-1 {
	bottom: -20px;
	left: -10px;
}
.maulli-section .small-img:hover {
	transform: scale(1.05);
}
.maulli-section .contact-link {
	font-size: 0.9rem;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #ccc;
	padding-bottom: 2px;
	transition: color 0.3s ease, border-color 0.3s ease;
}
.maulli-section .contact-link:hover {
		color: #000;
		border-color: #000;
}

/* banner */
.banner-hero {
	width: 100%;
	height: 380px;
	overflow: hidden;
}
.banner-hero img {
		width: 100%;
		height: 100%;
		object-fit: cover;
}
.banner-hero .overlay {
		position: absolute;
		inset: 0;
		background: rgba(0,0,0,0.45);
}
.banner-text {
	z-index: 2;
}
.info-card {
	background: #d5f5d1; /* delicatissimo, quasi impercettibile */
}
.info-card i, .info-card h2 {
	/*display: block;*/
	margin-bottom: 0.25rem;
	color: #2b452a; /* tono soft, elegante */
}


/* VEICOLI */
.check-item {
	display: flex;
	align-items: center;
	gap: 0.60rem; /* distanza minima e raffinata */
	margin-bottom: 0.05rem; /* righe molto compatte */
}
.check-item i {
		color: #8bc6a0; /* verde pastello elegante */
		font-size: 1.1rem;
}
.check-item span {
		font-weight: 500;
		color: #333;
		font-size: 0.95rem;
}
.location-card-light {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	transition: transform .25s ease, box-shadow .25s ease;
}
.location-card-light:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.location-card-light__image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform .35s ease, filter .35s ease;
	filter: brightness(1);
}
.location-card-light:hover img {
	transform: scale(1.05);
	filter: brightness(1.1);
}
.location-card-light__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 14px 18px;
	background: rgba(255,255,255,0.75);
	backdrop-filter: blur(6px);
	border-top: 1px solid rgba(255,255,255,0.6);
}
.location-card-light__footer h4 {
		font-weight: 600;
		color: #333;
}
.work-rental-section h2 {
	font-weight: 700;
	color: #333;
}
.features-table {
	background: #fff;
	border: 1px solid #eee;
}
.features-table .icon-col {
		width: 48px;
		text-align: center;
}
.features-table i {
		font-size: 28px;
		color: #ffc107;
}
.features-table table td {
		padding-top: 6px !important;
		padding-bottom: 6px !important;
}
.features-table .icon-col i {
		font-size: 24px;
}
 /* FINE VEICOLI */


/*Card home categorie */
.car-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px 20px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.car-img {
	width: 100%;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.car-img img {
		width: 80%;
		transition: transform 0.4s ease;
}
.car-card:hover .car-img img {
	transform: scale(1.08);
}
.car-title {
	font-size: 1.4rem;
	margin-top: 20px;
	font-weight: 600;
}
.car-desc {
	color: #666;
	font-size: 0.95rem;
	margin-top: 10px;
}

/* old */
.kaushan {font-family: 'Kaushan Script', cursive;}
.colblu {color:#538bff;}

.footer-link {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-link:hover {color: #fff;}
