@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);
}



.menu-background {
	background-color: lightslategrey;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 105px;
	text-align: right;
	padding-top: 60px;
	padding-right: 32px;
	font-size: 25px;
	color: white;
}



/* 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(0, 0, 0, 0.1);
	color: white;
	height: 700px;
	position: relative;
}
.showcase:before {
	content: '';
	background: url("../images/Showcase-04.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;
}



/* Sold Listings */
.gallery {
	display: flex;
	flex-flow: row wrap;
}

.listing-container {
	padding-top: 4px;
	padding-bottom: 10px;
	padding-left: 4px;
	padding-right: 4px;
	display: flex;
	flex-flow: column;
	justify-content: space-around;
	max-width: 720px;
	min-width: 360px;
	flex: 1;
}

.listing-photo img {
	width: 100%;
}

.listing-title {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding-left: 4px;
	padding-right: 4px;
	background-color: lightgray;
}

.listing-details {
	display: flex;
	flex-flow: row nowrap;
	justify-content:flex-start;
	padding-left: 4px;
	padding-right: 4px;
	background-color: lightgray;
	height: 22px;
}
.listing-details p {
	font-size: 14px;
	font-weight: 300;
}


.nav-button-container{
	display: flex;
	max-width: 400px;
	margin: auto;
}
.nav-button {
	text-align: center;
	font-size: 17px;
	font-weight: 400;
	background-color: rgba(258, 163, 58, 1);
	width: 180px;
	height: 50px;
	padding-top: 12px;
	border-radius: 25px;
	margin: auto;
}
.nav-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 : 719px) {
	.listing-container {
		max-width: 500px;
		min-width: 250px;
	}
}
