/*******************************
# Tags
*******************************/

:root {
	--primary: #c80a48;
	--secondary: #121129;
	--tertiary: #40102d;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", serif;
	font-optical-sizing: auto;
	font-style: normal;
	text-align: center;
}

html {
	background: #0d0719;
	position: relative;
	min-height: 100vh;
	z-index: 1;
}

h1,
h2,
h3,
h4,
h5 {
	margin: 1em 0 0.5em;
	font-weight: 700;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child {
	margin-top: 0;
}

p {
	line-height: 1.4;
	font-size: .875rem;
	margin: 0;
}

P:not(:last-child) {
	margin-bottom: 1em;
}

a {
	text-decoration: none;
	color: var(--primary);
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
}

pre {
	background: whitesmoke;
	padding: 1rem;
}

hr {
	color: #555662;
	margin: 1rem;
}

/*******************************
# Common
*******************************/

.container {
	max-width: 34rem;
	margin: clamp(1.5rem, 5vw, 3rem) auto;
	margin-bottom: clamp(3rem, 10vw, 6rem);
	padding-left: clamp(1rem, 5vw, 3rem);
	padding-right: clamp(1rem, 5vw, 3rem);
	display: flex;
	flex-flow: column;
	gap: clamp(1.2rem, 7vw, 2rem);
}

.section__title,
.panel_subheading {
	text-transform: uppercase;
	font-size: 1rem;
}

.text--large {
	font-size: 1.1rem;
}

.button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	display: block;
	background: var(--primary);
	color: #fff;
	font-family: inherit;
	font-size: .875rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border: 0;
	border-radius: 0.25rem;
	padding: 1em 1.5em;
	cursor: pointer;
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
	transition: all .4s ease;
}

.button:hover {
	text-decoration: none;
	transform: translateY(-5%);
}

.button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled {
	filter: grayscale(1);
	cursor: not-allowed;
	opacity: .5;
}

.button--sm {
	font-size: 0.875rem;
	padding: 0.5em 1em;
	width: auto;
	display: inline-block;
}

.text--sm { font-size: 0.875rem;}
.text--lg { font-size: 1.15rem;}

/*******************************
# Panel
*******************************/

.panel {
	border-radius: 1rem;
	overflow: hidden;
}

.panel__heading {
	background: var(--primary);
	/* background: linear-gradient(90deg,rgba(236, 105, 143, 1) 0%, rgba(84, 0, 235, 1) 100%); */
	color: white;
	padding: 2.5%;
	position: relative;
	z-index: 1;
}

.panel__heading::after {
	display: block;
	content: "";
	background: linear-gradient(350deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .5;
	mix-blend-mode: darken;
}

.panel__heading h2 {
	font-size: 1.2rem;
	margin: 0;
}

.panel__body {
	background: #e4e4e4;
	background: #dddddd;
	padding: clamp(1.4rem, 7vw, 2.5rem);
}

.panel__body--white {
	background: white;
}

.panel__body--black {
	background: black;
	color: white;
}

.panel__image {
	line-height: 0;
	position: relative;
	z-index: 0;
}


/* .panel__image::after {
	display: block;
	content: "";
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	z-index: 1;
} */

.panel--transparent .panel__body {
	background: none;
	color: white;
}


/* Minis */

.panel__minis {
	height: 2rem;
	background: #dddddd;
}

.panel__minis-inner {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	transform: translateY(-50%);
}

.panel__mini-button {
	background: var(--primary);
	border-radius: 100%;
	box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.1);
	width: 4em;
	height: 4em;
	position: relative;
	overflow: hidden;
	animation: bounce 7s ease infinite;
}

.panel__mini-button:nth-child(2) {
	animation-delay: 0.2s;
}

.panel__mini-button:nth-child(3) {
	animation-delay: 0.4s;
}

.panel__mini-button::after {
	display: block;
	content: "";
	background: linear-gradient(350deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .25;
	mix-blend-mode: darken;
}

.panel__mini-button svg {
	fill: white;
	margin-right: 0.25em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 40%;
	width: 40%;
}

@media (min-width: 32rem) {
	.panel__minis {
		height: 1rem;
	}
}


/*******************************
# Logo
*******************************/

.logo {
	width: 100%;
}



/*******************************
# Links
*******************************/

.links {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-flow: column;
	gap: 1em;
}

.links__item a {
	background: white;
	display: block;
	padding: 1.2rem 4rem;
	position: relative;
	color: black;
	font-weight: 700;
	box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.1);
	border-radius: 0.5em;
	overflow: hidden;
	transition: all .4s ease;
	letter-spacing: -0.05em;
}

.links__item a:hover {
	text-decoration: none;
	transform: translateY(-5%);
}

.links__icon {
	aspect-ratio: 1;
	background: var(--primary);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 1;
}

.links__icon::after {
	display: block;
	content: "";
	background: linear-gradient(350deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .25;
	mix-blend-mode: darken;

}

.links__icon--primary {
	background: var(--primary) !important;
}

.links__icon--secondary {
	background: var(--secondary) !important;
}

.links__icon--tertiary {
	background: var(--tertiary) !important;
}

.links__icon--website {
	background: #c68800 !important;
}

.links__icon--menu {
	background: #d70147 !important;
}

.links__icon--booking {
	background: #00834a !important;
}

.links__icon--facebook {
	background: #1976f0 !important;
}

.links__icon--instagram {
	background: #8139b1 !important;
}

.links__icon--tiktok {
	background: black !important;
}

.links__icon--twitter {
	background: black !important;
}

.links__icon--linkedin {
	background: #0a66c2 !important;
}

.links__icon--google {
	background: #d9412f !important;
}

.links__icon--tripadvisor {
	background: #32dea2 !important;
}

.links__icon svg {
	fill: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 40%;
	width: 40%;
	z-index: 10;
}



/*******************************
# Grid
*******************************/

.grid {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: grid;
	grid-gap: 1em;
	grid-template-columns: repeat(2, 1fr);
}

.grid a {
	display: block;
	position: relative;
	background: white;
	aspect-ratio: 5/2;
	border-radius: .5em;
	transition: all.4s ease;
	text-decoration: none;
	box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.1);
}

.grid a:hover {
	text-decoration: none;
	transform: translateY(-5%);
}


.grid svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 40%;
	max-width: 80%;
}



/*******************************
# Credit
*******************************/

.credit a {
	text-transform: uppercase;
	color: #d70147;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.2em;
	text-decoration: underline;
}

.credit__logo {
	max-width: 14rem;
	margin-bottom: .5rem;
}



/*******************************
# Background
*******************************/

.background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	/* opacity: 0.5; */
	/* filter: blur(8px); */
}




/*******************************
# Forms
*******************************/

.form {
	display: flex;
	flex-flow: column;
	gap: 1rem;
	margin: 2rem 0 1rem;
}

form label {
	display: block;
	font-weight: bold;
	font-size: 0.875rem;
	margin-bottom: 0.5em;
	text-align: left;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="password"] {
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	padding: 1.2em;
	border: 0;
	border-radius: 0.25em;
}

select, option {
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	padding: 1.2em;
	border: 0;
	border-radius: 0.25em;
	background: white;
}

.spinner {
	max-width: 1.5rem;
	animation: rotation 1.5s linear infinite;
	vertical-align: middle;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


/*******************************
# Top Banner
*******************************/

.top-banner {
	line-height: 0;
}

@media(min-width: 32rem) {

	.top-banner {
		display: block;
		border-radius: 0 0 1rem 1rem;
		max-width: 32rem;
		margin: 0 auto;
		overflow: hidden;
	}

	.top-banner img {
		width: 100%;
		max-width: none;
	}


}


/*******************************
# Modal
*******************************/

.modal {
	position: fixed;
	top: -20%;
	left: 0;
	width: 100%;
	height: 140%;
	z-index: 99;
	background: rgba(0, 0, 0, 0.4);
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s ease;
}

.modal__inner {
	background: #24262f;
	color: white;
	border-radius: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32rem;
	max-width: 90vw;
	max-height: 70vh;
	overflow: auto;
}

.modal::after {
	content: "";
	display: block;
}

.modal--open .modal {
	visibility: visible;
	opacity: 1;
}

.modal--open {
	overflow: hidden;
}

.modal--open .container {
	filter: blur(0.5rem);
}

.modal__close {
	position: absolute;
	cursor: pointer;
	top: 50%;
	right: 3%;
	transform: translateY(-50%);
	line-height: 0;
}

.modal__close svg {
	width: 2em;
	height: auto;
	fill: white;
}

.modal__heading {
	font-size: 1.2rem;
}

.modal__header {
	background: #555662;
	font-weight: bold;
	min-height: 3em;
	text-align: right;
	position: relative;
}
.modal__body {
	padding: clamp(0.5rem, 7vw, 2rem);
	padding-bottom: 2.6em;
}

.footer {
	background: black;
	padding: 1rem;
	color: white;
}



/*******************************
# Animations
*******************************/

@keyframes bounce {
	0%, 5%, 12.5%, 20%, 100% {transform: translateY(0);}
	10% {transform: translateY(-5%);}
	15% {transform: translateY(-2.5%);}
}



/* End */