/* ==========================================================
   VISITCORTONA MAP
   Visual system coordinato con VisitCortona.it
========================================================== */

.visitcortona-map {
	width: 100%;
	height: 560px;
	min-height: 420px;

	background: #f4f4f4;

	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 22px;

	overflow: hidden;

	font-family: 'Inter', Arial, sans-serif;
}


/* ==========================================================
   LEAFLET POPUP
========================================================== */

.visitcortona-map .leaflet-popup-content-wrapper {
	background: #ffffff;

	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 18px;

	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.12),
		0 3px 10px rgba(0, 0, 0, 0.05);
}

.visitcortona-map .leaflet-popup-content {
	margin: 20px 22px;

	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.55;

	color: #222222;
}

.visitcortona-map .leaflet-popup-tip {
	background: #ffffff;
}


/* ==========================================================
   POPUP — TITOLI E TESTI
========================================================== */

.visitcortona-map .vc-map-popup-title {
	margin: 0 0 10px;

	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;

	color: #111111;
}

.visitcortona-map .vc-map-popup-meta {
	margin: 0 0 10px;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;

	color: #8A6B42;
}

.visitcortona-map .vc-map-popup-description {
	margin: 0;

	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;

	color: #333333;
}

.visitcortona-map .vc-map-popup-access {
	margin-top: 14px;
	padding-top: 13px;

	border-top: 1px solid rgba(0, 0, 0, 0.08);

	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;

	color: #555555;
}

.visitcortona-map .vc-map-popup-access strong {
	font-weight: 700;
	color: #222222;
}


/* ==========================================================
   BADGE
========================================================== */

.visitcortona-map .vc-map-popup-badge {
	display: inline-flex;
	align-items: center;

	margin-bottom: 11px;
	padding: 6px 10px;

	background: #FBF5ED;
	color: #8A6B42;

	border: 1px solid rgba(138, 107, 66, 0.18);
	border-radius: 999px;

	font-size: 10px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;
	letter-spacing: 0.12em;
}


/* Badge sosta su strada */

.visitcortona-map .vc-map-popup-badge-street {
	background: #f4f4f4;
	color: #555555;

	border-color: rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   INDICAZIONI STRADALI
========================================================== */

.visitcortona-map .vc-map-popup-navigation {
	margin-top: 18px;
}

.visitcortona-map .vc-map-popup-directions {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 42px;

	padding: 11px 17px;

	background: #111111;
	color: #ffffff !important;

	border: 1px solid #111111 !important;
	border-radius: 999px;

	font-family: 'Inter', Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;

	text-decoration: none !important;

	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease;
}

.visitcortona-map .vc-map-popup-directions:hover {
	background: #b55239;
	border-color: #b55239 !important;
	color: #ffffff !important;

	transform: translateY(-1px);
}

.visitcortona-map .vc-map-popup-directions:focus-visible {
	outline: 3px solid rgba(181, 82, 57, 0.22);
	outline-offset: 3px;
}


/* ==========================================================
   MARKER
========================================================== */

.vc-map-marker-wrapper {
	background: transparent;
	border: 0;
}

.vc-map-marker {
	position: relative;

	width: 38px;
	height: 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #111111;
	color: #ffffff;

	border: 3px solid #ffffff;
	border-radius: 50%;

	font-family: 'Inter', Arial, sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;

	box-shadow:
		0 5px 15px rgba(0, 0, 0, 0.22),
		0 1px 4px rgba(0, 0, 0, 0.12);

	transition:
		transform 0.18s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease;
}

.vc-map-marker:hover {
	background: #b55239;

	transform: translateY(-2px);

	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.25),
		0 2px 5px rgba(0, 0, 0, 0.12);
}


/* Punta inferiore */

.vc-map-marker::after {
	content: "";

	position: absolute;
	left: 50%;
	bottom: -6px;

	width: 11px;
	height: 11px;

	background: inherit;

	transform: translateX(-50%) rotate(45deg);

	z-index: -1;
}


/* ==========================================================
   CONTROLLI LEAFLET
========================================================== */

.visitcortona-map .leaflet-control-zoom {
	border: none;

	border-radius: 12px;

	overflow: hidden;

	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.visitcortona-map .leaflet-control-zoom a {
	width: 36px;
	height: 36px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #ffffff;
	color: #111111;

	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);

	font-family: 'Inter', Arial, sans-serif;
	font-weight: 600;

	text-decoration: none;
}

.visitcortona-map .leaflet-control-zoom a:hover {
	background: #FBF5ED;
	color: #b55239;
}


/* ==========================================================
   ATTRIBUTION
========================================================== */

.visitcortona-map .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.88);

	font-family: 'Inter', Arial, sans-serif;
	font-size: 10px;

	color: #777777;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

	.visitcortona-map {
		height: 460px;
		min-height: 380px;

		border-radius: 18px;
	}

	.visitcortona-map .leaflet-popup-content {
		margin: 18px 18px;
	}

	.visitcortona-map .vc-map-popup-title {
		font-size: 17px;
	}

	.visitcortona-map .vc-map-popup-directions {
		width: 100%;
		min-height: 44px;

		padding-left: 16px;
		padding-right: 16px;
	}

	.vc-map-marker {
		width: 36px;
		height: 36px;

		font-size: 15px;
	}
}

/* ==========================================================
   PLACES — HOME MAP
========================================================== */

.vc-map-marker-place {
	background: #b55239;
}

.vc-map-marker-place:hover {
	background: #111111;
}

.vc-map-marker-place-street,
.vc-map-marker-place-square {
	background: #8A6B42;
}

.vc-map-marker-place-museum,
.vc-map-marker-place-theatre {
	background: #111111;
}

.vc-map-marker-place-church,
.vc-map-marker-place-hermitage {
	background: #6f5b45;
}

.vc-map-marker-place-viewpoint,
.vc-map-marker-place-fortress {
	background: #b55239;
}

.visitcortona-map .vc-map-popup-badge-place {
	background: #FBF5ED;
	color: #8A6B42;
	border-color: rgba(138, 107, 66, 0.18);
}

.visitcortona-map .vc-map-popup-guide {
	background: #111111;
}

.visitcortona-map .vc-map-popup-guide:hover {
	background: #b55239;
	border-color: #b55239 !important;
}