/* -------- overall -------- */

:root {
	--Yellow: #F3B837;
	--DGrey: #353535;
	--White: #ffffff;
}

.container {
	max-width: 1096px;
	margin-left: auto;
	margin-right: auto;
}

body {
	margin: 0;
	font-family: "Rethink Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 21px;
}

h1, h2, h3, h4 {
	font-family: "IM Fell English", serif;
	font-weight: 400;
	font-style: italic;
	text-align: center;
}

h1 { font-size: 60px; }

h2 { font-size: 36px; margin: 0; }

h3 { font-size: 28px; }

/* -------- header and footer -------- */

header {
	padding: 12px;
	background-color: var(--Yellow);
}
.headerLogo { float: left; height: 36px; width: auto; }

.navRight { float: right; }

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

/* to remove line breaks after every list item */
nav ul li { display: inline; padding-left: 4px; padding-right: 4px;}

nav ul a {
	color: var(--DGrey);
	text-decoration: none;
}

.activeLink {
	font-weight: 700;
}

/* for menu items that are not active: become underlined on hover */
nav ul a:hover:not(.activeLink) {
	text-decoration: underline;
}

#footerSection {
	background-color: var(--DGrey);
	color: var(--Yellow);
	font-size: 16px;
	text-align: center;
	padding: 12px;
}

footer a {
	color: var(--Yellow);
}

/* -------- index.html -------- */

.landerH1 {
	font-family: "Rethink Sans", sans-serif;
	font-weight: 400;
	font-size: 36px;
	font-style: normal;
}

.landerH4 {
	font-family: "IM Fell English", serif;
	font-weight: 400;
	font-style: italic;
	font-size: 36px;
}

.yellowBG {
	background-color: var(--Yellow);
}

.button-white {
	display: inline-block;
	background-color: white;
	font-weight: 700;
	color: var(--DGrey);
	text-decoration: none;
	margin: 18px;
	padding: 12px 16px;
}

.button-white:hover{
	box-shadow: 0px 0px 4px white;
	text-decoration: underline;
}

.button-yellow {
	display: inline-block;
	background-color: var(--Yellow);
	font-family: "Rethink Sans", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: var(--DGrey);
	text-decoration: none;
	margin: 18px;
	padding: 12px 16px;
}

.button-yellow:hover{
	box-shadow: 0px 0px 4px var(--Yellow);
	text-decoration: underline;
}

#landerSection {
	background-image: url('imgs/lander-bg-01.1.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	min-height: 600px;
	
	/*	to vertically center the child content (blurBGbox) */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.blurBGbox {
	backdrop-filter: blur(8px);
	box-shadow: 0px 0px 16px white;
	background-color: rgb(255,255,255); /* fallback colour */
  	background-color: rgba(255,255,255, 0.5);
  	text-align: center;
  	border-radius: 8px;
  	max-width: 450px;
  	padding: 48px 48px 0px 48px;
  	
	
	/*  unreliable way of vertically centring	*/
  	/*position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translateY(-50%);
  	transform: translateX(-50%);*/
 }

#takeThePlunge {
	padding: 48px;
	text-align: center;
}

#whyUs { text-align: center; }

#whyUs h1 { margin-bottom: 12px;}

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

.blurb {
	width: 22.5%;
	padding: 8px;
	display: inline-block;
	text-align: center;
}

.blurb h3 { margin-bottom: 4px; }
.blurb p { margin-top: 0px; }

.blurbImg {
	display: flex;
	justify-content: center;
  	align-items: center;
	width: 250px;
	height: 250px;
}

/* Images within a blurbImg: height less than the max-height of the blurbImg - image width resizes automatically */
.blurbImg img { max-height: 100%; object-fit: cover; overflow: hidden; }

#contact { text-align: center; }

#contact h1 { padding: 32px 0 0 0; margin-bottom: 0; }

.addressBG {
	/* display: flex;
	justify-content: center;
	align-items: center; */
	position: relative;
}

.addressBG img { max-height: 45%; object-fit: cover; overflow: hidden; }

.address {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
}

/* -------- packages.html -------- */

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

.pkgRow h2 { text-align: left; }
.pkgImg { height: 250px; }
.pkgDesc { padding: 32px; }
.pkgImg img { height: 100%; object-fit: cover; overflow: hidden; }