/*-------------------------------------------------------
  Variables
-------------------------------------------------------*/

:root {
	--white: #fff;
	--white-rgb: 255, 255, 255;

	--navy: #2b3d5c;

	--blue: #59C5C7;

	--black: #000;
	--black-rgb: 0, 0, 0;

	--header-height: 140px;
	--admin-height: 32px;
}

/*-------------------------------------------------------
  Base
-------------------------------------------------------*/

html,
body {
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

body,
html {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
	background: white;
	color: var(--navy);
	font-family: 'Poppins', sans-serif;
}

/*-------------------------------------------------------
  Header
-------------------------------------------------------*/

.top-header {
	padding: 15px 30px;
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
}

.contact-section {
	display: flex;
	align-items: center;
	justify-self: flex-end;
}

.phone {
	align-items: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-icon {
	background-color: #59c5c733;
	padding: 14px;
	margin-right: 5px;
	border-radius: 300px;
	cursor: pointer;
}

.phone-white {
	background-color: #ffffff33;
}

.contact-link {
	font-family: inter;
	color: var(--blue);
	font-weight: 600;
	font-size: 19px;
	text-decoration: none;
	margin-left: 5px;
}

.booking-button {
	margin-left: 15px;
	padding: 17px 51px;
	background-color: var(--blue);
	border-radius: 300px;
	border-width: 0;
	color: white;
	transition-duration: 0.4s;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
}

.booking-button:hover {
	background-color: #c78659;
}

.logo-image {
	width: 255px;
	height: auto;
}

/*-------------------------------------------------------
  Holding Page
-------------------------------------------------------*/

.holding-page {
	display: flex;
	align-items: center;
	margin: 0px 30px;
	padding: 200px 150px;
	background-image: url('hero-img.jpg');
	background-position: center;
	background-size: cover;
	border-radius: 15px;
	color: white;
	overflow: hidden;
	position: relative;
}

.holding-page:before {
	content: '';
	display: block;
	position: absolute;
	lefT: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.holding-page a {
	color: white;
}

h1,
h2,
h3 {
	font-family: 'freight-text-pro', serif;
	font-size: 58px;
	font-weight: 400;
}

p {
	font-size: 16px;
	font-family: 'Inter', sans-serif;
}

h3 {
	font-size: 26px;
	font-family: 'Inter', sans-serif;
}

.banner p {
	padding-bottom: 30px;
}

.banner-button {
	margin-left: 0;
	margin-right: 15px;
	background-color: #459c9e;
}

.information {
	margin: 80px 30px;
	color: #000;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.information a {
	color: #000;
	text-decoration: none;
}

.information-content {
	background-color: #f5f5f5;
	padding: 50px;
	border-radius: 15px;
}

.coming-soon {
	padding: 0px 30px;
	padding-bottom: 80px;
	text-align: center;
	color: #000;
}

.coming-soon h2 {
	font-size: 38px;
}

.banner {
	max-width: 850px;
	z-index: 99;
}

/*-------------------------------------------------------
  Site Credit
-------------------------------------------------------*/

.site-credit {
	position: absolute;
	right: 20px;
	bottom: 15px;
	opacity: 0.1;
	transition: 0.3s ease all;
}

.site-credit:hover {
	opacity: 0.4;
}

.site-credit img {
	height: 18px;
	width: auto;
}

/*---------------------------------------------------------
  Responsive
----------------------------------------------------------*/

@media screen and (max-width: 900px) {
	.holding-page {
		margin: 0px 30px;
		padding: 40px;
		text-align: center;
	}

	.top-header {
		grid-template-columns: auto;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.top-header .contact-section {
		display: none;
	}

	.logo-image {
		width: 200px;
		height: auto;
	}

	.banner {
		width: 100%;
	}

	h1, h2 {
		font-size: 42px !important;
	}

	.contact-section {
		display: block;
		align-items: center;
		justify-content: center;
	}

	.phone {
		padding-top: 20px;
		justify-content: center;
		align-self: center;
	}

	.booking-button {
		justify-content: center;
		margin: 0;
		align-self: center;
	}

	.information {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.site-credit {
		right: 0;
		left: 0;
		margin: auto;
		text-align: center; 
	}
}

@media screen and (max-width: 700px) {
	.coming-soon{
		padding-bottom: 40px;
	}

	.holding-page {
		margin: 0px 20px;
		padding: 30px;
	}

	.information{
		margin: 20px;
		gap: 20px;
	}

	.information-content {
		padding: 20px;
	}

	.phone{
		transform: scale(0.8);
	}

	h1, h2 {
		font-size: 32px !important;
	}

	h3 {
		font-size: 22px;
	}
}
