/* Cookie-Banner – Hochzeit in Venedig */
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
	border-top: 1px solid rgba(147, 117, 138, 0.2);
	padding: 14px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 20px;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	transform: translateY(100%);
	transition: transform 0.35s ease-out;
}

#cookie-banner.is-visible {
	transform: translateY(0);
}

#cookie-banner a {
	color: #93758A;
	text-decoration: underline;
	font-weight: 500;
}

#cookie-banner a:hover {
	color: #7b5f73;
}

#cookie-banner .cookie-banner-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

#cookie-banner .cookie-banner-reject {
	background: transparent;
	color: #333;
	border: 1px solid rgba(0, 0, 0, 0.25);
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease;
}

#cookie-banner .cookie-banner-reject:hover {
	background: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.35);
}

#cookie-banner .cookie-banner-accept {
	background: #93758A;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: background 0.2s ease;
}

#cookie-banner .cookie-banner-accept:hover {
	background: #7b5f73;
}
