/**
 * Custom overrides for the Under Construction Page.
 * Loaded via the `ucp_head` filter from the UCP Custom Styles plugin.
 */

/* Example: */
html {
	background-color: #111;
}

body {
	background-color: transparent;
	position: relative;
	isolation: isolate;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 1; /* dial this down until the effect feels right */
	background-image: linear-gradient(
		120deg,
		#0e0e0e 0%,
		#111 25%,
		#1a1a1a 50%,
		#111 75%,
		#0e0e0e 100%
	);
	background-size: 300% 300%;
	animation: ucp-bg-gradient 20s ease-in-out infinite;
	opacity: 0.66;
}

@keyframes ucp-bg-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

header {
	display: none;
}

.row * {
	color: #fff;
}

h1 {
	color: #c8a14a !important;
	margin: 0;
}

strong {
	font-size: 24px;
}

#social {
	display: none;
}

.content {
	margin: 0;
}

.container {
	padding-top: 50px;
	padding-bottom: 50px;
	background: none;
	display: flex;
	flex-flow: row wrap;
	gap: 50px;
}

.row {
	flex: 0 0 100%;
}

/* Opening hours — [opening-hours] / Programma — [programma] */
.ucp-hours,
.ucp-programma {
	margin: 50px auto 0;
	text-align: left;
}

.ucp-hours {
	max-width: 720px;
}

.ucp-programma {
	max-width: 720px;
}

.ucp-section__heading {
	display: block;
	margin-bottom: 20px;
	text-align: center;
}

.ucp-opening-hours {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: center;
	text-align: left;
	margin: 0 auto;
	max-width: 720px;
}

.ucp-hours__locations .ucp-opening-hours__title,
.ucp-programma__months .ucp-opening-hours__title {
	font-size: 18px;
	margin-bottom: 12px;
}

.ucp-programma__months {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	max-width: 720px;
}

.ucp-programma__months .ucp-opening-hours__col {
	flex: 1 1 calc(50% - 25px);
	max-width: calc(50% - 25px);
	width: auto;
}

.ucp-opening-hours__col {
	flex: 1 1 240px;
	min-width: 0;
}

.ucp-opening-hours__title {
	display: block;
	margin-bottom: 20px;
	font-size: 24px;
}

.ucp-opening-hours__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ucp-opening-hours__item {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.25rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ucp-opening-hours__item:last-child {
	border-bottom: 0;
}

.ucp-opening-hours__day {
	font-weight: 600;
}

.ucp-opening-hours__time {
	opacity: 0.9;
	white-space: nowrap;
}

@media (max-width: 560px) {
	.ucp-opening-hours {
		flex-direction: column;
		gap: 1.75rem;
	}

	.ucp-programma__months .ucp-opening-hours__col {
		flex: none;
		width: 100%;
		max-width: none;
	}
}

/* Contact — [contact] */
.ucp-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2.5rem;
	justify-content: center;
	align-items: center;
	margin: 2rem auto 0;
}

.ucp-contact__link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #fff;
	text-decoration: none !important;
	transition: 0.3s;
	border-bottom: 1px solid transparent;
}

.ucp-contact__link:hover,
.ucp-contact__link:focus {
	border-color: #fff;
}

.ucp-contact__link .fa {
	font-size: 1.25em;
}
