@charset "UTF-8";
/* CSS Document */

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Lato', sans-serif;
	line-height: 1.4;
	background-color: rgb(255, 255, 245);
}



/* Header logo */
.logo-header {
	position: absolute;
	z-index: 1;
	height: 100px;	
	margin: 15px;
}
.logo-header img{
	height: 80%;
	padding: 5px;
	outline-style: solid;
	outline-color: white;
	outline-width: thin;
	cursor: pointer;
}



/* Navigation links for desktop */
.desktop-nav-container {
	position: absolute;
	z-index: 1;
	width: 98%;
	padding-top: 20px;
}
.desktop-nav-links ul {
	display: flex;
	list-style: none;
	justify-content: flex-end;
}
.desktop-nav-links a {
	color: white;
	text-decoration: none;
	letter-spacing: 3px;
	font-size: 12px;
	padding: 12px;
}



/* Showcase */
.container{
	max-width: 960px;
	margin: auto;
	overflow: hidden;
	padding: 0 3rem;
}
.showcase {
	background-color: rgba(50, 50, 50, 0.1);
	color: white;
	height: 700px;
	position: relative;
}
.showcase:before {
	content: '';
	background: url("../images/Showcase-05.jpg") no-repeat center center/cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.showcase .showcase-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
}
.showcase h1 {
	font-size: 60px;
	padding-top: 0%;
	text-shadow: 5px 5px 10px black;
}
.showcase p {
	font-size: 18px;
	font-weight: 300;
}



.text-container {
	display: flex;
	flex-flow: column;
	padding-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 0px;
	max-width: 730px;
	justify-content: center;
	margin: auto;
}
.text-title {
	text-align: center;
}
.text-remarks {
	text-align: center;
	margin-top: 5px;
	font-size: 16px;
	font-weight: 300;
}



/* Contact info */
.contact-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	padding-top: 10px;
}
.contact-logo {
	max-width: 360px;
	padding-left: 20px;
	padding-right: 20px;
}
.contact-logo img {
	width: 100%;
}
.contact-info {
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

/* Phone button */
.phone-button {
	display: inline-block; 
	color: black;
	text-decoration: none;
	transition: all 0.3s ease-in;
	transform: scale(1.0);
	padding-top: 10px;
	padding-bottom: 8px;
}
.phone-button:hover {
	transform: scale(1.05);
}

/* Email button */
.email-button {
	display: inline-block; 
	color: black;
	text-decoration: none;
	transition: all 0.3s ease-in;
	transform: scale(1.0);
}
.email-button:hover {
	transform: scale(1.05);
}



/* Social media */
.social-media {
	display: flex;
	justify-content: center;
}
.social-media img {
	padding: 6px;
	margin: 24px;
}



.footer-container{
	background-color: lightgray;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
}
.footer-container div{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 380px;
}
.footer-container img{
	padding-top: 5px;
}

.footer-disclamer {
	background-color: lightgray;
	text-align: center;
	font-size: 12px;
	font-weight: 300;
	padding-left: 10px;
	padding-right: 10px;
}
.footer-disclamer p {
	padding-top: 10px;
	max-width: 760px;
	margin: auto;
}
.footer-copyright {
	background-color: lightgray;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
	padding: 10px;
}

