/* ============================================================
   APAC Maresme — Cookie consent banner + third-party embed gates
   GDPR: reject is as easy as accept; nothing non-essential loads
   until the visitor opts in. Styled with the theme tokens so it
   inherits high-contrast and text-scaling behaviour.
   ============================================================ */

/* Hidden until JS decides it is needed (no flash for repeat visitors). */
.apac-consent {
	position: fixed;
	inset-inline: 0;
	inset-block-end: 0;
	z-index: 70; /* above the a11y FAB (60) so choices aren't blocked */
	display: none;
	padding: clamp(0.9rem, 2vw, 1.25rem);
	background: var(--c-petroli-fosc, #062d2b);
	color: #fff;
	border-block-start: 3px solid var(--c-terracota, #b8502f);
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}
.apac-consent.is-open {
	display: block;
}
.apac-consent__inner {
	max-width: 1100px;
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	justify-content: space-between;
}
.apac-consent__text {
	flex: 1 1 22rem;
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.5;
}
.apac-consent__text a {
	color: #fff;
	text-decoration: underline;
}
.apac-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
/* Reject and accept share the same visual weight (no dark pattern). */
.apac-consent__actions .apac-btn {
	min-height: 44px;
}

/* ── Third-party embed gate (e.g. Donorbox) ─────────────────
   Shown in place of the embed until consent is given. */
.apac-consent-embed__gate {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	max-width: 560px;
	margin-inline: auto;
	padding: clamp(1.25rem, 4vw, 2rem);
	text-align: center;
	background: var(--c-superficie-2, #f4efe6);
	border: 2px dashed var(--c-vora, #c9c1b0);
	border-radius: var(--radi, 14px);
}
.apac-consent-embed__gate p {
	margin: 0;
	color: var(--c-tinta-suau, #4a463d);
	font-size: 0.98rem;
	line-height: 1.5;
}
.apac-consent-embed__gate .apac-consent-embed__alt {
	font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
	.apac-consent.is-open {
		animation: apac-consent-in 0.25s ease-out;
	}
	@keyframes apac-consent-in {
		from { transform: translateY(100%); }
		to   { transform: translateY(0); }
	}
}

/* High contrast: pure black band, white text, visible border. */
html.apac-contrast .apac-consent {
	background: #000;
	color: #fff;
	border-block-start-color: #fff;
}
html.apac-contrast .apac-consent__text a {
	color: #fff;
}
html.apac-contrast .apac-consent-embed__gate {
	background: #fff;
	border-color: #000;
}
html.apac-contrast .apac-consent-embed__gate p {
	color: #000;
}
