@font-face {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/webfonts/fa-solid-900.woff2") format("woff2");
}

:root {
	interpolate-size: allow-keywords;
}

html,
body {
	font-family: Futura-PT, Helvetica, Arial, sans-serif;
}

body {
	line-height: 1.5;
}

a {
	color: #4ba5ef;
}

ol>li {
	list-style: decimal;
}

p {
	margin-bottom: 1em;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

h1 {
	font-size: 2em;
	line-height: 1;
	font-weight: bold;
	color: #000000;
	margin-bottom: 0.5em;
}

h2 {
	font-size: 1.5em;
	line-height: 1.2;
	font-weight: bold;
	color: #000000;
	margin-bottom: 0.65em;
}

h3 {
	font-size: 1.3em;
	line-height: 1.3;
	font-weight: bold;
	color: #000000;
	margin-bottom: 0.75em;
}

h4 {
	font-weight: bold;
}

.grecaptcha-badge {
	visibility: hidden;
}

.header--mobile {
	display: none;
	@media screen and (max-width: 400px) {
		font-size: 87.5%;
	}
}

@media screen and (max-width: 1024px) {
	.header--desktop {
		display: none;
	}

	.header--mobile {
		display: block;
	}
}

.header--mobile-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0.5em 1em;
}

.header--mobile-burger {
	width: 1.875em;
	height: 1.375em;
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	:where(& > span) {
		display: block;
		height: 0.1875em;
		width: 100%;
		background-color: #333333;
		border-radius: 0.1875em;
		transition: all 0.3s ease;
		transform-origin: center;
	}
	:where(&.header--open > :nth-child(1)) {
		transform: translateY(0.5625em) rotate(45deg);
	}
	:where(&.header--open > :nth-child(2)) {
		opacity: 0;
	}
	:where(&.header--open > :nth-child(3)) {
		transform: translateY(-0.5625em) rotate(-45deg);
	}
}

.header--mobile-masthead-link {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.header--mobile-masthead-image {
	display: block;
	max-width: calc(100% - 2em);
	max-height: 4em;
}

.header--fixed-top {
	background: #4ba5ef;
	color: #ffffff;
	text-align: center;
	padding: 0.25em 1em;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 81.25%;

	&> :last-child {
		margin-bottom: 0;
	}
}

.header--mobile-left {
	width: 25%;
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.header--mobile-masthead-dates {
	width: 25%;
	text-align: right;
}

.header--mobile-menu {
	background: #ffffff;
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;

	&.header--visible {
		height: max-content;
	}
}

.header--mobile-menu-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2em;
	padding: 1em 0;
}

.header--mobile-second-nav-list,
.header--mobile-top-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.header--mobile-second-nav-item {
	display: block;
	color: #555555;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 93.75%;
	padding: 0.5em 1em;
}

.header--mobile-top-menu-link {
	display: block;
	color: #555555;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 93.75%;
	padding: 0.375em 1em;
}

.header--menu-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto;
	border-bottom: 1px solid #afafaf;
	padding: 0 1em;
}

.header--menu-row-left {
	display: flex;
	gap: 0.25em;
}

.header--logo-wrap,
.header--logo {
	display: block;
}

.header--my-account,
.header--sign-up {
	display: block;
	background: #000000;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-size: 81.25%;
	font-weight: bold;
	line-height: 1;
}

.header--logout,
.header--log-in {
	display: block;
	color: #000000;
	border: 2px solid #000000;
	text-transform: uppercase;
	padding: 0 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-size: 81.25%;
	font-weight: bold;
	line-height: 1;
}

.header--menu-row-middle {
	flex: 1;
}

.header--top-menu {
	display: flex;
}

.header--top-menu-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1em;
	border-left: 1px solid #afafaf;
	color: #555555;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	@media screen and (max-width: 1200px) {
		font-size: 93.75%;
		padding: 0.75em;
	}
}

:where(.header--top-menu-item:last-child) .header--top-menu-link {
	border-right: 1px solid #afafaf;
}

.header--book-now {
	display: block;
	background: #4ba5ef;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0.75em 1.25em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-size: 81.25%;
	font-weight: bold;
	line-height: 1;
}

.header--masthead {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	max-width: calc(1200px - 2em);
	margin: 2em auto 1em auto;
}

.header--masthead-link {
	display: block;
	max-width: 35em;
}

.header--masthead-image {
	display: block;
	max-width: 100%;
}

.header--masthead-dates {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1em;
	text-transform: uppercase;
	font-weight: bold;
	text-align: right;
	font-size: 112.5%;
}

.header--second-nav-list {
	display: flex;
	gap: 3em;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	max-width: 1200px;
}

.header--second-nav-item {
	display: block;
	text-transform: uppercase;
	color: #555555;
	text-decoration: none;
	font-weight: bold;
	font-size: 93.75%;
}

.footer {
	margin-top: 3em;
}

.footer--signup {
	display: flex;
	flex-direction: column;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em;
}

.footer--signup-title {
	display: flex;
	align-items: center;
	text-align: center;
	width: 100%;
}

:where(.footer--signup-title)::before,
:where(.footer--signup-title)::after {
	content: "";
	display: block;
	flex: 1;
	border-bottom: 2px solid #cccccc;
}

.footer--signup-title:where(:not(:empty)) {
	font-weight: bold;
	font-size: 1.8em;
	text-transform: uppercase;
	@media screen and (max-width: 768px) {
		font-size: 1.4em;
	}
}

:where(.footer--signup-title:not(:empty))::before {
	margin-right: 1em;
}

:where(.footer--signup-title:not(:empty))::after {
	margin-left: 1em;
}

.footer--signup-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer--signup-form :where(form) {
	display: grid;
	grid-template-areas: "a a" "b c";
	gap: 1em;
	@media screen and (max-width: 640px) {
		grid-template-areas: "a" "b" "c";
	}
}

.footer--signup-form :where(p.message) {
	grid-area: a;
	margin-bottom: 0;
	font-weight: bold;
	:where(&.bad) {
		color: #cc0000;
	}
	:where(&.good) {
		color: #009900;
	}
}

.footer--signup-form :where(fieldset) {
	grid-area: b;
}

.footer--signup-form :where(.Actions) {
	grid-area: c;
}

.footer--signup-form :where(input[type='email']) {
	display: block;
	padding: 0 1em;
	box-sizing: border-box;
	border: 2px solid #cccccc;
	border-radius: 0.25em;
	height: 3.5em;
	font-size: 87.5%;
	margin-bottom: 0.5em;
	width: 30em;
	max-width: calc(100vw - 10em);
	@media screen and (max-width: 640px) {
		max-width: 100%;
		width: 100%;
	}
}

.footer--signup-form :where(input[type='email'])::placeholder {
	text-transform: uppercase;
	font-size: 87.5%;
}

.footer--signup-form :where([type='submit']) {
	display: block;
	background: #000000;
	color: #ffffff;
	appearance: none;
	border: 0;
	padding: 0.25em 1em;
	text-transform: uppercase;
	font-weight: bold;
	height: 3.5em;
	box-sizing: border-box;
	font-size: 87.5%;
	cursor: pointer;
	@media screen and (max-width: 640px) {
		width: 100%;
	}
}

.footer--signup-form :where(.recaptcha-policy-text) {
	font-size: 81.25%;
	opacity: 0.75;
	max-width: 25em;
	margin: 0 auto;
	text-align: center;
	display: block;
	& :where(p) {
		margin-bottom: 0;
	}
}

.footer--press {
	background: #eeeeec;
	padding: 3em 1em;
	margin: 3em 0;
	text-align: center;
}

.footer--press-inner {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.footer--press-quote {
	font-size: 150%;
	margin-bottom: 1em;
}

.footer--press-quote::before {
	content: "\201C";
	display: inline-block;
	font-size: 3em;
	line-height: 1;
	position: relative;
	top: 0.4em;
	margin-right: 0.2em;
}

.footer--press-quote::after {
	content: "\201D";
	display: inline-block;
	font-size: 3em;
	line-height: 1;
	position: relative;
	top: 0.4em;
	margin-left: 0.2em;
}

.footer--press-source {
	font-weight: bold;
	font-size: 125%;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.footer--press-info {
	font-size: 112.5%;
	opacity: 0.5;
	text-transform: uppercase;
	font-weight: bold;
}

.footer--socials {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em;
	overflow: hidden;
}

.footer--socials-title {
	display: flex;
	align-items: center;
	text-align: center;
	width: 100%;
	font-size: 93.75%;
}

:where(.footer--socials-title)::before,
:where(.footer--socials-title)::after {
	content: "";
	display: block;
	flex: 1;
	border-bottom: 2px solid #cccccc;
}

.footer--socials-title:where(:not(:empty)) {
	text-transform: uppercase;
}

:where(.footer--socials-title:not(:empty))::before {
	margin-right: 1em;
}

:where(.footer--socials-title:not(:empty))::after {
	margin-left: 1em;
}

.footer--social-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	margin-top: 0.5em;
}

.footer--social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	border-radius: 50%;
	color: #ffffff;
	background: #000000;
	text-decoration: none;
	width: 2.5em;
	height: 2.5em;
}

.footer--copyright {
	text-align: center;
	font-size: 81.25%;
	margin: 1em auto 0 auto;
}
