/* INFORMATION
Author: Dusty Mendes
Company: MENDES
Created: April 2025
*/


/* INITIALIZE
--------------------------------------------------------------------*/

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,table,tr,th,td,embed,object {margin:0; padding:0;}
em,h1,h2,h3,h4,h5,h6,strong {font-style:normal; font-weight:normal;}
ul,ol {list-style:none;}
a {text-decoration:none;}
img, button {border: 0;}

*:focus, a:active {outline: 0; -moz-outline: none;}


/* FONTS
--------------------------------------------------------------------*/
@font-face {
    font-family: 'TAY Barrera';
    src: url('../fonts/TAYBarreraRegular.woff2') format('woff2'),
        url('../fonts/TAYBarreraRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}


/* HTML & BODY
--------------------------------------------------------------------*/
html {
	width: 100%;
	height: 100%;
	background: #000;
	scroll-behavior: smooth;
	
	background: url(../images/bg.png) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

}

body {	
	width: 100%;
	height: 100%;
	color: #92897e;
	z-index: 0;
	position: relative;
}


/* GENERAL STYLES & TREATMENTS
--------------------------------------------------------------------*/

.show {
	display: block;
}

.no-show {
	display: none;
}

.half-opac {
	opacity: .24;
}

.no-opac {
	opacity: 0;
}

.rotate-90 {
	transform: rotate(90deg);
}

.circle {
	border-radius: 50%;
}

.zi-minus-one {
	z-index: -1;
}

.zi-one {
	z-index: 1;
}

.zi-two {
	z-index: 2;
}

.zi-three {
	z-index: 3;
}

.zi-four {
	z-index: 4;
}

.zi-five {
	z-index: 5;
}

.zi-six {
	z-index: 6;
}


/* ANIMATIONS
--------------------------------------------------------------------*/

@keyframes am-fadein {
  from {opacity: 0; transform: translatey(12px);}
  to {opacity: 1; transform: translatey(0);}
}


@keyframes side-fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* LAYOUT
--------------------------------------------------------------------*/

#main-container {
	width: 100%;
	height: 100%;
	position: relative;
}

#header {
	width: 100%;
	text-align: center;
	margin: 40px auto 0 auto;
	font-family: 'Montserrat';
	font-weight: normal;
	font-style: normal;
}

#logo {
	margin: 200px auto 40px auto;
	width: 200px;
	text-align: center;
}

#menu-container {
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
	font-family: 'Arial'; font-family: 'Montserrat';
	font-weight: normal;
	font-style: normal;
}

	#menu-container a {
		color: #000;
		transition: .25s; text-size: 50%;
	}

	#menu-container a:hover {
		background: #c9c8c3;
		transition: .25s;
	}

#summary-container {
	text-align: center;
	margin: 0 auto 0 auto;
	width: 740px;
	font-family: 'Arial'; font-family: 'Montserrat';
	font-weight: normal;
	font-style: normal;
	font-size: 2em;
}

#contact-container {
	width: 100%;
	text-align: center;
	margin: 60px auto 0 auto;
	font-family: 'Montserrat';
	font-weight: normal;
	font-style: normal;
	font-size: 16px;
	float: left;
}


#contact-container a {color: #92897e; transition: all 0.3s ease-out;}
#contact-container a:hover {color: #92897e; opacity:.5;}
#contact-container a:active {color: #92897e; opacity:.5;}
#contact-container a:visited {color: #92897e;}


#footer {
	width: 100%;
	text-align: center;
	margin: 300px auto 0 auto;
	font-family: 'Arial'; font-family: 'Montserrat';
	font-weight: normal;
	font-style: normal;
	font-size: 12px;
	padding-bottom: 60px;
	float: left;
}



/* Extra small devices (phones, 600px and down) */
	@media only screen and (max-width: 600px) {
		#summary-container {width: 400px;}
	}
