/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Saddler Gentlemen Website
Version:	1.25
Last change:	19/12/2019
Created by:	Incondite Media
-------------------------------------------------------------------*/





/*------------------------------------------------------------------
[Table of Contents]

1. Google Fonts
2. Typography
3. Buttons
4. Main Styling
5. Header & Navigation
6. Hero
7. Columns
8. Media Queries
-------------------------------------------------------------------*/





/*------------------------------------------------------------------
[1. Fonts]
-------------------------------------------------------------------*/
	
/* Essonnes Text
font-family: essonnes-text, serif;
font-weight: 400;
font-style: normal;
*/

/* Essonnes Text Italic
font-family: essonnes-text, serif;
font-weight: 400;
font-style: italic;
*/

/* Essonnes Text Bold
font-family: essonnes-text, serif;
font-weight: 700;
font-style: normal;
*/

/* Essonnes Text Bold Italic
font-family: essonnes-text, serif;
font-weight: 700;
font-style: italic;
*/





/*------------------------------------------------------------------
[2. Typography]
-------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6, p, a {
	margin: 0;
	}
	
a {
	text-decoration: none;
	}

h1 {
	font-family: essonnes-text, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4.5rem;
	color: #c0c0bf;
	line-height: 1;
	}

	h1 span {
			font-family: essonnes-text, serif;
			font-weight: 400;
			font-style: italic;
			}

h2 {
	font-family: essonnes-text, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 3rem;
	color: #c0c0bf;
	line-height: 1.2;
    margin-bottom: 3rem;
	}

	h2 span {
			font-family: essonnes-text, serif;
			font-weight: 400;
			font-style: italic;
			}

p {
	font-family: essonnes-text, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	color: #c0c0bf;
	line-height: 1.8;
	margin-bottom: 2rem;
	}

	p:last-child {
		margin-bottom: 0;
		}

.dark-text {
	color: #081d12;
	}





/*------------------------------------------------------------------
[3. Buttons]
-------------------------------------------------------------------*/

.btn {
	font-family: essonnes-text, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	color: #c0c0bf;
	line-height: 1;
	text-decoration: none;
	display: inline-block;
	background-color: #22372c;
	padding: 1rem 2rem;
	}

	.btn span {
			font-family: essonnes-text, serif;
			font-weight: 400;
			font-style: italic;
			}

.btn:hover {
	opacity: 0.5;
	}





/*------------------------------------------------------------------
[4. Main Styling]
-------------------------------------------------------------------*/

html, body { 
	height: 100%;
	margin: 0;
    padding: 0;
    border: 0;
	scroll-behavior: smooth;
	}
	
*, div {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
	}
	
img {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	}
	
.container {
	padding: 0 10rem;
	margin: 0 auto;
	}
	
.row {
	width: 100%;
	height: auto;
	float: left;
	position: relative;
	}
	
.padding {
	padding: 150px 0;
	}
	
.centered {
	text-align: center;
	}

.centered-image {
	margin: 0 auto;
	}

.address {
	width: 100%;
	height: auto;
	float: left;
	position: relative;
	background-color: #152a1f;
	}

.dark-green-bg {
	background-color: #081d12;
	}





/*------------------------------------------------------------------
[5. Header & Navigation]
-------------------------------------------------------------------*/

#header {
	width: 100%;
	height: auto;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	padding: 40px 2rem;
	display: flex;
	z-index: 999;
	}

.logo {
	width: 300px;
	display: inline-flex;
	}

.logo-mobile {
	width: 38px;
    display: none;
	}

.book {
	display: block;
	}





/*------------------------------------------------------------------
[6. Hero]
-------------------------------------------------------------------*/

.hero {
	width: 100%;
	height: 100vh;
	background: #152a1f url("../img/hero/hero.png") no-repeat left;
	}

.hero-wrapper {
    width: 100%;
	height: 100vh;
	display: flex;
	padding: 0 2rem;
    text-align: center;
	}

	.hero-wrapper h1 {
		margin-bottom: 3rem;
		}

.sub-wrapper {
	width: 600px;
	height: auto;
	margin: 0 auto;
	}

.countdown-wrapper {
	width: 100%;
	height: auto;
	margin-top: 2rem;
	}
	
#days, #hours, #minutes {
	width: 130px;
	font-family: essonnes-text, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
    color: #c0c0bf;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    background-color: #22372c;
    padding: 2rem 1rem;
	margin: 0 0.5rem;
	}
	
#days span, #hours span, #minutes span {
	font-family: essonnes-text, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #c0c0bf;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
	}

.hero-footer {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 40px;
	display: flex;
	padding: 0 2rem;
	text-align: center;
	}





/*------------------------------------------------------------------
[7. Columns]
-------------------------------------------------------------------*/

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	}

.items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	}

.row-reverse {	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	}

.col-2 {
	width: 40%;
    height: auto;
    float: left;
    position: relative;
	}





/*------------------------------------------------------------------
[16. Media Queries]
-------------------------------------------------------------------*/	

/* 1440 */
@media (max-width: 90em) {
	
	.container {
		padding: 0 6rem;
		}
	
	.col-2 {
		width: 45%;
		}
	
}

/* 1024 */
@media (max-width: 64em) {
	
	h1 {
		font-size: 3rem;
		}
	
	h2 {
		font-size: 2rem;
		}
	
	p {
		font-size: 1rem;
		}
	
	.btn {
		font-size: 1rem;
		}
	
	.container {
		padding: 0 3rem;
		}
	
	.padding {
		padding: 125px 0;
		}
	
	.logo {
		width: 280px;
		}
	
	.hero {
		background-size: 280px;
		}
	
	#days, #hours, #minutes {
		width: 110px;
		font-size: 3rem;
		}
	
	#days span, #hours span, #minutes span {
		font-size: 14px;
		}
	
	.col-2 {
		width: 47%;
		}
	
}

/* 640 */
@media (max-width: 40em) {
	
	h1 {
		font-size: 2.3rem;
		line-height: 1.3;
		}
	
	.btn {
		padding: 1rem;
		}
	
	.container {
		max-width: 500px;
		padding: 0 2rem;
		}
	
	.padding {
		padding: 100px 0;
		}
	
	.logo {
		display: none;
		}

	.logo-mobile {
		display: block;
		}
	
	.hero {
		background-size: 220px;
		}
	
	.hero-footer {
		display: none;
		}
	
	.sub-wrapper {
		width: 90%;
		}
	
	#days, #hours, #minutes {
		width: 90px;
		font-size: 2rem;
		padding: 1.5rem 0.75rem;
		margin: 0 3px;
		}
	
	#days span, #hours span, #minutes span {
		font-size: 10px;
		letter-spacing: 1px;
		}
	
	.flex {
		display: block;
		}
	
	.col-2 {
		width: 100%;
		}
	
	.col-2:first-child {
		margin-bottom: 4rem;
		}
	
}