/* ========================
   Accessibility - Contrast Fixes
   WCAG 2.1 AA - Minimum 4.5:1 for normal text, 3:1 for large text
   ======================== */

/* Cookie banner button "ACCETTA" - original #1bd with white text ~2.2:1 contrast
   Darkened to #0b6e84 → ~5.3:1 contrast with white */
.cc-btn.cc-allow {
	background-color: #0b6e84 !important;
	border-color: #0b6e84 !important;
}
.cc-btn.cc-allow:hover,
.cc-btn.cc-allow:focus {
	background-color: #095a6d !important;
	border-color: #095a6d !important;
}

/* Remove opacity that reduces text contrast */
.opacity-9,
p.opacity-9,
.body .opacity-9 {
	opacity: 1 !important;
}

/* Body and paragraph text color - original #777 on white ~4.06:1
   Darkened to #333 → ~12.6:1 contrast with white */
body,
.body,
.body p,
p.text-4,
p.line-height-5 {
	color: #333333 !important;
}

/* Carousel slides - add semi-transparent overlay for text readability */
.owl-carousel-light .owl-item .background-image-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.4);
}

/* Header labels "CHIAMA" / "INVIA UNA MAIL" - original #999 on white ~2.85:1
   Darkened to #595959 → ~7:1 contrast with white */
#header .header-column .header-extra-info li .header-extra-info-text label {
	color: #595959 !important;
}

/* Footer copyright links - distinguishable from surrounding text via underline */
#footer .footer-copyright p a {
	text-decoration: underline;
}
#footer .footer-copyright p a:hover,
#footer .footer-copyright p a:focus {
	text-decoration: none;
}
