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

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

body {
	font-family: 'Lato', sans-serif;
	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.2);
	color: white;
	height: 700px;
	position: relative;
}
.showcase:before {
	content: '';
	background: url("../images/Showcase-01.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-inner img {
	margin-top: 10%;
	max-width: 230px;
	width: 100%;
}
.showcase h1 {
	font-family: 'Nothing You Could Do', cursive;
	font-size: 60px;
	padding-top: 0%;
	text-shadow: 5px 5px 10px black;
}
.showcase p {
	font-size: 18px;
	font-weight: 300;
}



/* About Li */
.about-li-title h1 {
	font-family: 'Nothing You Could Do', cursive;
	font-size: 50px;
	text-align: center;
	padding-top: 10px;
}
.about-li-container {
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	justify-content: center;
}
.about-li-photo {
	max-width: 310px;
}
.about-li-photo img {
	border-radius: 10px;
	width: 100%;
	objectj-fit: contain;
}
.about-li-text-container {
	margin-left: 20px;
	max-width: 500px;
}
.about-li-description {
	font-weight: 300;
	font-size: 18px;
}


/* Intro Video */
.intro-video-container {
	display: flex;
	justify-content: center;
}
.intro-video-container-inner {
    max-width: 820px;
	padding-top: 20px;
	padding-bottom: 10px;
}
.intro-video-container-inner video {
    width: 100%;
    object-fit: contain;
}


/* Service Areas */
.service-area-title {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	text-align: center;
	font-weight: 600;
}
.service-area-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
.service-area-container div{
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 140px;
}



.obround-button {
	text-align: center;
	font-size: 17px;
	font-weight: 400;
	background-color: rgba(258, 163, 58, 1);
	width: 280px;
	height: 50px;
	padding-top: 14px;
	border-radius: 25px;
	margin: auto;
}
.obround-button a {
	text-decoration: none;
	color: white;
}


/* 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;
}



@media only screen and (min-width : 200px) and (max-width : 810px) {	
	.about-li-container {
		flex-direction: column;
	}
	.about-li-photo {
		margin: auto;
	}
	.about-li-text-container {
		text-align: center;
		margin: auto;
	}
}
