body{
	position: relative;
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-size: 18px;
}

*::after, *::before{
	box-sizing: border-box;
}

:root{
	--night-sky: #495157;
	--moon-light: #907874;
	--dusk: #5e5b5c;
}

/* **********************
=========================

UNIVERSAL 

=========================
************************/

html{
	scroll-behavior: smooth;
}

#loader{
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 120px;
	height: 120px;
	margin: -76px 0 0 -76px;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid var(--moon-light);
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin{
	0% { -webkit-transform: rotate(0deg); }
	100% {-webit-transform: rotate(360deg); }
}

@keyframes spin{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom{
	position: relative;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s;
}

@-webkit-keyframes animationbottom{
	from  { bottom: -100px; opactiy: 0 }
	to { bottom: 0px; opacity: 1 }
}

@keyframes animatebottom{
	from { bottom -100px; opacity: 0 }
	to { bottom: 0px; opacity: 1 }
}

#page{
	display: none;
}

body{
}

h1, h2, h3, h4, p, a, label, li{
	/*font-family: "Cinzel", serif;*/
	font-family: "Lato", sans-serif;
}

h3{
	font-size: 30px;
	font-size: 30px;
	text-decoration: underline;
	color: white; 
	margin: 15px 0;
	font-weight: 300;
}

label{
	color: white;
	text-transform: uppercase;
}

a{
	text-decoration: none;
	color: var(--moon-light);
}

ul{
	color: white; 
	list-style: none; 
	line-height: 25px;
}

.container{
	height: 100%;
	width: 100%;
	max-width: 1440px;
	/*min-width: 300px;*/
	padding: 0 10px;
	margin: auto;
	/*border: 1px solid red;*/
}

.separator{
	margin: 20px 0;
}

.justify-center{
	display: flex;
	justify-content: flex-start;
	/*justify-content: center;*/
	align-items: center;
}

.justify-column{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/*align-items: center;*/
}

.full-width{ width: 100%; }
.two-third-width{ width: 66.667%; }
.one-third-width{ width: 33.333%; }
.half-width{ width: 50%; padding: 25px;}
.quarter-width{ width: 25%; }

.margin-bottom{
	margin-bottom: 100px;
}

.margin-bottom-half{
	margin-bottom: 50px;
}


.hero-container{
	position: relative;
	width: 100%;
	height: 100vh;
}

.logo-container{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	width: 100%;
	max-width: 600px;
	min-width: 300px;
	height: 100vh;
	z-index: 9999;
}

.logo img{
	width: 100%; 
	margin-top: 125px; 
	padding: 0 25px;
}

@media only screen and (max-width: 768px){
	.logo img{
		margin-top: 75px;
	}
}

.foreground{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url('../hero/trees.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: center;
	background-attachment: fixed;
	z-index: 9;
}

.ocean{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url('../hero/Ocean.png');
	background-size: cover;
	background-position-x: center;
	background-attachment: fixed;
	z-index: 4;
}

.temple{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url('../hero/Temple.png');
	background-size: cover;
	background-position-x: center;
	background-attachment: fixed;
	z-index: 4;
}

.moon{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url('../hero/Moon.png');
	background-size: cover;
	background-position-x: center;
	background-attachment: fixed;
	z-index: 2;
}

.sky{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url('../hero/Sky.png');
	background-size: cover;
	background-position-x: center;
	background-attachment: fixed;
	z-index: 1;
}

.grass{
	width: 100%; 
	height: 200px; 
	margin-top: -175px; 
	position: relative; 
	display: block;
	z-index: 15;
}

/* **********************
=========================

INTRO

=========================
*************************/

.intro{
	width: 100%;
	padding: 55px 0 200px 0;
	background-color: black;
	margin-top: -5px;
	position: relative;
	z-index: 25;
}

.introTextGradient{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 60px;
	font-weight: 900;
	width: 100%;
	height: 75px;
	text-transform: uppercase;
	text-align: center;
	background-image: linear-gradient(to right, var(--moon-light), var(--dusk),  var(--night-sky));
	-webkit-background-clip: text;
	color: transparent;
}

.intro-media{
	margin: 25px 0; 
	color: white; 
	font-size: 18px; 
	padding: 25px 50px;
}

.contact-button{
	border: 1px solid white; 
	background-color: transparent;
	color: white; 
	padding: 15px; 
	cursor: pointer;
	transition: .5s;
}

.contact-button:hover{
	background-color: var(--night-sky);
}

.sigil img{
	width: 100%;
	max-width: 300px;
	display: block;
	margin: auto;
}

.cta{
	font-family: "Lato", sans-serif;
	display: block; 
	text-align: center;
	font-size: 32px;
	color: white;
	cursor: pointer;
	position: relative;
	z-index: 9999;
	/*background-clip: text;*/
	color: black;
	font-weight: 300;
	/*background-image: linear-gradient(to right, black, white, black);*/
	width: max-content;
	margin: 25px auto 0 auto;
	/*padding: 12.5px 25px;*/
}

.main-copy{
	margin: 15px 0;
	font-size: 18px;
	line-height: 32px;
}

.services-div{
	width: 100%; 
	margin: auto; 
	padding: 0 25px;
}

@media only screen and (max-width: 768px){
	.services-div{
		max-width: 400px; 
	}
}

@media only screen and (max-width: 990px){
	.cta::after{
		display: none;
	}
	.cta::before{
		display: none;
	}
}

/* **********************
=========================

MENU

=========================
************************/

.menu-container{
	position: sticky; 
	width: 100%; 
	background-color: black; 
	height: 50px; 
	top: 0; 
	left: 0; 
	z-index: 30; 
	display: flex; 
	justify-content: center; 
	align-items: center;
	z-index: 10000;
}

.menu li{
	font-family: cinzel;
	font-size: 20px;
	float: left;
	margin: 15px;
}

.menu li a{
	font-family: cinzel;
	font-size: 20px;
	float: left;
	margin: 15px;
}

/* ***************************
==============================

MOBILE MENU HAMBURGER GRAPHIC

=============================
*************************** */

.button-box{
	display: none;
	flex-direction: column;
	width: max-content;
	cursor: pointer;
}

.top, .middle, .bottom{
	content: "";
	width: var(--bar-width);
	height: var(--bar-height);
	background-color: var(--background);
	margin-top: var(--hamburger-gap);
	margin-bottom: var(--hamburger-gap);
	transition: var(--animation-timing);
	position: relative;
}

:root{
	--bar-width: 60px;
	--bar-height: 4px;
	--hamburger-gap: 3px;
	--foreground: #333;
	--background: white;
	--hamburger-margin: 5px;
	--animation-timing: 200ms ease-in-out;
	--hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}

.menu-button{
	--x-width: calc(var(--hamburger-height) * 1.41421356237);
	display: flex;
	flex-direction: column;
	gap: var(--hamburger-gap);
	width: max-content;
	cursor: pointer;
	transition: var(--animation-timing);
}

.menu-button::before, .menu-button div, .menu-button::after{
	content: "";
	width: var(--bar-width);
	height: var(--bar-height);
	background-color: var(--foreground);
	transform-origin: left center;
	transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), translate var(--animation-timing);
}

.menu-button input{
	appearance: none;
	padding: 0;
	margin: 0;
	outline: none;
	pointer-events: none;
}

.menu-button:has(input:checked)::before{
	rotate: 45deg;
	width: var(--x-width);
}

.menu-button:has(input:checked)::after{
	rotate: -45deg;
	width: var(--x-width);
	translate: 0 calc(var(--bar-height) / 2);
}

.menu-button input:checked{
	opacity: 0;
	width: 0;
}


/*.mobile-menu-button{
	display: none;
	width: 100%;
	max-width: 38px;
	cursor: pointer;
	background-image: url("../img/menu.jpg");
	height: 20px;
}*/

.mobile-menu{
	position: absolute; 
	width: 100%; 
	height: 0px; 
	top: 50px; 
	left: 0; 
	background-color: black;
	transition: height .2s;
}

.mobileMenuList{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 0;
	height: 0;
	transition: height .2s;
}

.menuItems{
	display: none;
	margin: 5px;
}

.menuItems a{
	font-family: cinzel !important;
	font-size: 20px;
}


/* **********************
=========================

SERVICES CSS

=========================
*************************/

.inner-column{
	position: relative; 
	z-index: 20; 
	background-color: white; 
	padding: 50px; 
	margin-top: -200px;
}

.h2-gradient{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 60px;
	font-weight: 900;
	width: 100%;
	text-transform: uppercase;
	text-align: center;
	
	background-image: linear-gradient(to right, var(--moon-light), var(--dusk),  var(--night-sky));
	-webkit-background-clip: text;
	color: transparent;
}

.services-img{
	display: block; 
	margin: 0 auto 0 auto; 
	min-width: 250px; 
	max-width: 630px; 
	width: 100%; 
	/*margin-bottom: 50px;*/
}

/* **********************
=========================

CONTACT CSS

=========================
*************************/

#contact{
	/*background-image: linear-gradient(to bottom, white, #777777, black);
	padding-top: 150px;*/
	background-color: black;
}

.contact-container{
	background-image: linear-gradient(to right, var(--moon-light), var(--dusk),  var(--night-sky)); 
	border: 2px solid black; 
	border-radius: 5px; 
	padding: 25px 50px; 
	margin: auto;
}

.submit{
	width: 100%; 
	border: none; padding: 10px; 
	margin: 10px 0 0 0; 
	font-family: 'Montserrat', sans-serif; 
	font-size: 18px; 
	text-align: left;
	background-color: black;
	color: white;
	cursor: panel-name;
	transition: .5s;
}

.submit:hover{
	background-color: white;
	color: black;
}

/* **********************
=========================

FOOTER CSS

=========================
*************************/

footer{
	background-color: black; 
	width: 100%; 
	padding: 50px 0;
}

/* **********************
=========================

INNER PAGE CSS

=========================
*************************/

.innerpage-logo{
	width: 100%;
	max-width: 500px;
	display: block;
	margin: 25px auto;
}

/* **********************
=========================

RESPONSIVE CSS

=========================
*************************/

@media only screen and (max-width: 1440px){
	.hero-container, .logo-container, .foreground, .ocean, .temple, .moon, .sky{
		height: 75vh;
	}
}

@media only screen and (max-width: 980px){
	.justify-center{
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.two-third-width, .one-third-width{
		width: 100%;
	}
	.half-width{
		width: 100%;
	}
}

@media only screen and (max-width: 768px){
	.grass{
		height: auto;
	}
	.container{
		padding: 0 0;
		width: 100%;
		max-width: 450px;
	}
	.intro-media{
		padding: 25px 25px;
	}
	.introTextGradient{
		font-size: 30px;
		height: 50px;
	}
	.h2-gradient{
		font-size: 50px;
		margin: 15px 0;
	}
	.menu{
		display: none;
	}
	.mobile-menu-button{
		display: block;
	}
	.button-box{
		display: flex;
		align-items: center;
		justify-content: center;
	}
}



