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


* {
	margin: 0;
	padding: 0;
}

body {
	min-width: 320px;
	max-width: 1920px;
	margin: 0 auto;
	font-family: "Cabin", arial sans-serif;
	color: #363636;
}

.container {
	padding: 0 5rem;
}

.container.inner-page {
	padding: 0 5rem 5rem;
}

/* Header */
header {
	background: #fff;
	position: relative;
	width: 100%;
	display: flex;
}

header > .container {
	display: flex;
	width: 100%;
    justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
}

header .logo-box {
	display: inline-flex;
    align-items: center;
}

header .logo-box img {
	max-width: 60px;
	margin-right: .5rem;
	position: relative;
	top: 0;
}

header .logo-box h1 {
	font-size: 26px;
    font-weight: 700;
    text-transform: Uppercase;
    letter-spacing: 3px;
}

header ul {
	list-style-type: none;
	display: inline-flex;
	align-items: center;
}

header ul > li > a {
	text-decoration: none;
	font-family: "Cabin", arial sans-serif;
	font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
	color: #363636;
	padding: 20px 15px;
	letter-spacing: 1px;
}

header ul > li > a:hover,
header ul > li > a.actual {
	background: #edc7b4;
}

/* Home Welcome Section */
.home-hero {
	width: 100%;
	padding: 180px 0;
	background: url("../Images/hard/home-hero.jpg") center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.home-hero.inner-page {
	width: 100%;
	padding: 180px 0;
	background: url("../Images/hard/coffee-mug.jpg") center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.home-hero:before,
.home-hero.inner-page:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(52, 52, 52, 0.3);
}

.home-hero .home-caption h2 {
	text-align: center;
	color: rgb(237, 199, 180);
    text-shadow: rgba(52, 52, 52, 0.7) 0px 0px 8px;
	font-family: "Cabin", arial sans-serif;
	font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 10px;
	z-index: 2;
	position: relative;
}

.home-hero .home-caption h2 > span {
	display: block;
	font-size: 14px;
    font-weight: 600;
    line-height: 2;
	letter-spacing: 2px;
	color: #fff;
	margin-top: .5rem;
}

.welcome-section {
	padding: 5rem 8rem;
}

.welcome-section h3 {
	font-size: 35px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: Uppercase;
    letter-spacing: 5px;
	text-align: center;
	margin-bottom: 1.5rem;
}

.welcome-section p {
	text-align: center;
	margin-bottom: 1rem;
	font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.button-container {
	display: block;
	margin: 2rem auto 1rem;
	max-width: 300px;
}

a.home-buttons {
	font-family: "Cabin", arial sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #363636;
    padding: 15px 25px;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: 0px 0px 6px rgb(0, 0, 0, .25);
    margin: 0.5rem;
	text-align: center;
	display: inline-block;
	width: 80px;
}



a.home-buttons:hover {
	background-color: #edc7b4;
    color: #363636;
}


/* Page Content Area*/
div#page-content {
    padding: 5rem 8rem 0;
    text-align: center;
}

.home-pageContent {
	padding: 0 !important;
}

div#page-content h1 {
	font-size: 40px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: Uppercase;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 1rem;
}

div#page-content h2 {
	font-size: 35px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: Uppercase;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 1rem;
}

div#page-content h3 {
	font-size: 30px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: Uppercase;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 1rem;
}

div#page-content h4 {
	font-size: 25px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: capitalize;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

div#page-content h5 {
	font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: capitalize;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

div#page-content h6 {
	font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: capitalize;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

div#page-content p {
    text-align: center;
    margin-bottom: .5rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

div#page-content p:last-of-type {
	margin-bottom: 3rem;
}

div#page-content p > span {
	font-weight: 700;
}



/* Gallery Images*/
.gallery-section {
	padding: 0 8rem;
}

#gallery-container {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


#gallery-container .image-box {
	position: relative;
	width: 300px;
    height: 300px;
	overflow: hidden;
	margin: 10px;
}

#gallery-container .image-box .image {
	width: 100%;
	height: 100%; 
	background-size: cover;
	background-position: center; 
	background-repeat: no-repeat; 
}

#gallery-container .caption-container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 10px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.75); 
	margin: 0;
}

#gallery-container .caption-container p {
	font-size: 18px;
}

#gallery-container .caption-container .sold-message {
	color: rgb(237, 199, 180);
	font-family: "Cabin", arial sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,.15);
    margin: .5rem auto 0.5rem;
    display: block;
	max-width: 80px;
}

#gallery-container .caption-container .buy-now {
	font-family: "Cabin", arial sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #363636;
    padding: 10px 15px;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background: #fff;
    margin: .5rem auto 0.5rem;
    display: block;
	cursor: pointer;
}

#gallery-container .caption-container .buy-now:hover {
	background: rgb(237, 199, 180);
}

/* Shop pop-up form */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
	z-index: 9999; /* Make sure it's high enough to appear above other elements */
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    margin: 15% auto;
    width: 85%;
	max-width: 500px;
    border-radius: 5px;
}

.modal-content h3 {
	text-align: center;
	font-size: 16px;
    padding: 10px 20px;
}


.close-btn {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    float: right;
}
.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Contact Us */
.contact-page h2 {
	text-align: center;
	margin-bottom: .5rem;
}

.contact-page > .container > p {
    margin-bottom: 2rem;
}

/* Forms */
form > p {
    text-align: center;
}

form > p label {
	font-weight: 600;
	padding-right: .75rem;
}

input[type="email"],
input[type="text"],
input[type="file"] {
	border: none;
    border-bottom: 1px solid #A0A0A0;
	padding: 5px;
	background: none;
}

#buyForm button {
	cursor: pointer;
}

#contactForm button,
#buyForm button,
input[type="submit"] {
	font-family: "Cabin", arial sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #363636;
    padding: 10px 20px;
    letter-spacing: 1px;
    text-decoration: none;
	border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: 0px 0px 6px rgb(0, 0, 0, .25);
    margin: 2rem auto 0.5rem;
    display: block;
	
}

#contactForm button:hover,
#buyForm button:hover,
input[type="submit"]:hover {
    background-color: #edc7b4;
    color: #363636;
}

#buyForm p,
#contactForm p{
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    justify-content: center;
}

#buyForm p {
	width: 100%
}

#buyForm p > label {
	text-align: right;
    width: 80px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

#buyForm input[type="email"],
#buyForm input[type="text"],
#buyForm input[type="file"],
#buyForm textarea {
	width: 200px;
}


#contactForm p {
	width: 100%
}

#contactForm p > label {
	text-align: right;
    width: 175px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

#contactForm input[type="email"],
#contactForm input[type="text"],
#contactForm input[type="file"],
#contactForm textarea {
	width: 300px;
}


/* Footer */
footer {
	background: #363636;
	padding: 3rem 0;
}

footer > .container {
	display: flex;
	justify-content: space-between;
}

footer h4 {
	font-family: "Cabin", arial sans-serif;
	font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 10px;
	color: rgb(237, 199, 180);
}

footer h4 > span {
	display: block;
	font-size: 14px;
    font-weight: 600;
    line-height: 2;
	letter-spacing: 0px;
	color: #fff;
	text-transform: capitalize;
	margin-top: .5rem;
}

footer ul {
	list-style-type: none;
	display: inline-flex;
	align-items: center;
	margin-top: .65rem;
}

footer a {
	color: #fff;
	font-size: 20px;
    margin-right: 1rem;
}

footer li:last-of-type a {
	margin-right: 0;
}

footer a:hover {
	color: rgb(237, 199, 180);
}

@media only screen and (max-width:900px) {
	
	header .logo-box h1 {
		display: none;
	}
	
	.home-hero .home-caption h2 {
		text-align: center;
		color: rgb(237, 199, 180);
		text-shadow: rgba(52, 52, 52, 0.71) 0px 0px 8px;
		font-family: "Cabin", arial sans-serif;
		font-size: 40px;
	}
	
	.home-hero .home-caption h2 > span {
    	font-size: 12px;
	}
	
	.gallery-section,
	.welcome-section {
		padding: 5rem 0;
	}
	
	footer > .container {
		display: block;
	}
	
	footer .container > div:first-of-type {
		margin-bottom: 2rem;
	}
	
	footer h4 {
    	text-align: center;
	}
	
	footer ul {
		width: 50px;
		text-align: center;
		margin: 0 auto;
		display: block;
	}
	
	footer ul > li {
		display: inline-block;
	}
}

@media only screen and (max-width:600px) {
	
	.container {
		padding: 0 2rem;
	}
	
	div#page-content {
    	padding: 5rem 0 0;
	}
	
	.container.inner-page {
		padding: 0 2rem 2rem;
	}
	
	header .logo-box img {
	    max-width: 40px;
	}
	
	header ul > li > a {
		font-size: 12px;
		padding: 20px 7px;
	}
	
	.home-hero {
    	padding: 120px 0;
	}
	
	.home-hero .home-caption h2 {
        font-size: 28px;
    }
	
	#buyForm input[type="email"],
	#buyForm input[type="text"],
	#buyForm input[type="file"],
	#buyForm textarea {
		width: 150px;
	}
	
	#contactForm p > label {
		width: 48px; 
	}
	
	#contactForm p:nth-of-type(3),
	#contactForm p:nth-of-type(4) {
		display: block;
	}
	
	#contactForm p:nth-of-type(3) textarea,
	#contactForm p:nth-of-type(4) textarea,
	#contactForm p:nth-of-type(3) label,
	#contactForm p:nth-of-type(4) label {
		width: 100%;
	}
		
	#contactForm p:nth-of-type(3) label,
	#contactForm p:nth-of-type(4) label { {
		text-align: center;
	}
	
}
