/* ========================================
   Radici Casa Vacanze — Utility Classes
   ======================================== */

/* Text balance for headings */
.text-balance {
	text-wrap: balance;
}

/* Aspect ratio helpers */
.aspect-4-3 {
	aspect-ratio: 4 / 3;
}

.aspect-3-2 {
	aspect-ratio: 3 / 2;
}

.aspect-16-9 {
	aspect-ratio: 16 / 9;
}

.aspect-1-1 {
	aspect-ratio: 1 / 1;
}

/* Full-bleed section — only for images or backgrounds */
.full-bleed {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Smooth scroll for anchor links */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* Container for long text — limit width */
.text-container {
	max-width: 65ch;
	margin-left: auto;
	margin-right: auto;
}

/* Image object-fit helper */
.object-fit-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Responsive iframe container for maps */
.map-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 12px;
}

.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
