/* RESET */
html {
	box-sizing: border-box;
	font-size: 16px;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}
/* /RESET */

@font-face {
    font-family: 'Tangerine';
    src: url('fonts/Tangerine_Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Miama';
    src: url('fonts/Miama.otf') format('opentype');
}

@font-face {
    font-family: 'VesperLibre';
    src: url('fonts/VesperLibre-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.otf') format('opentype');
}

body {
	background: white;
	font-family: 'Montserrat', Arial, sans-serif;
}

button {
	min-width: 300px;
	border: 2px solid black;
	background: transparent;
	padding: 10px;
	color: black;
	font-family: 'Montserrat';
	font-size: 30px;
	text-transform: uppercase;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

input,
textarea {
	border: 2px solid gray;
	background: white;
	padding: 10px;
	font-family: 'Montserrat';
	font-size: 30px;
	color: black;
}

input::placeholder {
	color: gray;
}

nav {
	height: 75px;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
	top: 0;
	left: 0;
}

.nav-mobile-hamburger {
	display: none;
}

.nav-mobile-menu {
	display: none;
}

.nav-content {
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
}

.nav-section {
	height: 100%;
	min-width: 0%;
	max-width: 100%;

	flex-grow: 1;
	flex-shrink: 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.nav-section.name {
	font-family: 'Tangerine';
	font-size: 30px;
	flex-grow: 0;
	padding: 0 20px;
}

.nav-link {
	height: 100%;
	min-width: 0%;
	max-width: 100%;
	text-transform: uppercase;

	flex-grow: 1;
	flex-shrink: 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.nav-link a {
	height: 100%;
	min-width: 0%;
	max-width: 100%;
	color: black;
	text-decoration: none;
	flex-grow: 1;
	flex-shrink: 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	
	transition-property: background, font-weight;
	transition-duration: 1s;
}

.nav-link a:hover {
	font-weight: bold;
	background: rgba(255, 255, 255, 0.8);
}

header {
	width: 100%;
	height: 50vh;
}

body.home header {
	background-image: url('../images/header-clothesrack.jpg');
	background-size: 100% auto;
	background-repeat: no-repeat;
}

body.shop header {
	background-color: rgb(227, 222, 219);
	background-image: url('../images/boxes.jpg'), linear-gradient(to right, rgb(227, 222, 219), rgb(211, 207, 204));
	background-size: 100% auto;
	background-position: right bottom -183px;
	background-repeat: no-repeat;
}

.header-content {
	width: 100%;
	height: 100%;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.header-content h1 {
	min-width: 100%;
	max-width: 100%;
	font-size: 100px;
	font-family: 'VesperLibre';
	color: white;
	text-shadow: 1px 3px 3px black;
	
	flex-grow: 1;
	flex-shrink: 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.header-content h2 {
	min-width: 100%;
	max-width: 100%;
	font-size: 75px;
	font-family: 'Tangerine';
	color: white;
	text-shadow: 1px 3px 3px black;
	padding-left: 20%;
	
	flex-grow: 1;
	flex-shrink: 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

section {
	width: 100%;
}

.section-content {
	width: 100%;
	padding: 30px;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.section-box {
	min-width: 50%;
	max-width: 50%;
	
	flex-grow: 0;
	flex-shrink: 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.section-text {
	padding: 0 30px;
	line-height: 2em;
}

.section-text h3 {
	font-size: 40px;
	font-family: 'VexperLibre';
	padding-bottom: 30px;
}

.section-text div {
	width: 100%;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.section-text button {
	margin: 50px 0;
}

.section-text h3 span {
	font-size: 70px;
	font-family: 'Tangerine';
}

.section-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.section-banner {
	width: 100%;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.section-banner .section-text h3 {
	padding-bottom: 0;
}


.style-potential {
	height: 500px;
	background-image: url('../images/accessories2.jpg');
	background-size: 100% auto;
	background-position: right bottom -520px;
}

.style-potential .section-text h3 {
	background: rgba(255, 255, 255, 0.7);
	padding: 50px;
}

.section-contact {
	background-image: url('../images/purses.jpg');
	background-size: 100% auto;
	background-position: center bottom -200px;
}

.section-contact .section-text {
	min-width: 100%;
	max-width: 100%;
	padding: 90px 50px;
}

.section-text div.contact-form {
	width: 100%;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: center;
}

.section-text div.contact-form-box {
	min-width: 50%;
	max-width: 50%;
	height: 162px;
	
	flex-grow: 0;
	flex-shrink: 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: center;
}

.section-text div.contact-form-box.contact-form-left {
	justify-content: flex-end;
}

.section-text div.contact-form-box.contact-form-right {
	padding: 20px 0 0 20px;
	justify-content: flex-start;
}

.section-text div.contact-form-button {
	padding-right: 5%;
	justify-content: flex-end;
}

.contact-form-box input {
	min-width: 45%;
	max-width: 45%;
	margin: 20px 20px 0 0;
	
	flex-grow: 0;
	flex-shrink: 0;
}

.contact-form-box textarea {
	min-width: 90%;
	max-width: 90%;
	height: 100%;
	
	flex-grow: 0;
	flex-shrink: 0;
}

footer {
	width: 100%;
}

.footer-content {
	width: 100%;
	padding: 50px;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.footer-content .footer-link {
	padding: 0 20px;
}

.footer-content .footer-link a {
	color: gray;
	text-transform: uppercase;
	
}

.footer-content .footer-copyright {
	width: 100%;
	padding: 50px;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

@media screen and (max-width: 992px) {
	nav {
		height: 10vh;
		font-size: 50px;
		z-index: 10;
	}

	.nav-mobile-hamburger {
		height: 10vh;
		width: 10vh;
		padding: 10px;
		cursor: pointer;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	
	.nav-mobile-menu {
		z-index: 9;
	}
	
	.nav-mobile-menu {
		display: flex;
		height: 0;

		transition-property: height;
		transition-duration: 1s;
	}
	
	.nav-mobile-menu.display {
		height: 100vh;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		padding-top: 10vh;
		background: rgba(255, 255, 255, 0.8);
		
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		align-content: center;
	}

	.nav-link {
		display: none;
	}
	
	.nav-section.name {
		font-size: 60px;
		z-index: 10;
	}
	
	.nav-mobile-menu.display .nav-link {
		width: 100%;
		min-height: 0%;
		max-height: 100%;
		height: auto;
		font-size: 75px;
		text-align: center;
		
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	
	.nav-mobile-menu.display .nav-link a {
		width: 100%;
		
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	
	header {
		background-size: cover;
		line-height: 1;
	}
	
	body.home header {
		background-size: cover;
	}

	body.shop header {
		background-position: right bottom;
		background-size: cover;
	}
	
	.header-content h1 {
		text-align: center;
	}
	
	.header-content h2 {
		padding-left: 0;
		text-align: center;
	}
	
	.section-box {
		min-width: 100%;
		max-width: 100%;
	}
	
	.style-potential {
		height: 350px;
		  background-position: right bottom;
	}
	
	.section-contact {
		background-size: cover;
		background-position: center bottom;
	}
	
	.section-text div.contact-form-box {
		min-width: 100%;
		max-width: 100%;
		height: auto;
	}
	
	.contact-form-box input {
		min-width: 100%;
		max-width: 100%;
		margin: 20px 0 0 0;
	}
	
	.section-text div.contact-form-box.contact-form-right {
		padding: 20px 0 0 0;
	}
	
	.contact-form-box textarea {
		min-width: 100%;
		max-width: 100%;
	}
	
	.section-text div.contact-form-button {
		padding-right: 0;
		justify-content: center;
	}
	
	.footer-content .footer-link {
		min-width: 100%;
		max-width: 100%;
		padding: 20px;
		text-align: center;
	}
}