@font-face {
	font-family: 'Montserrat';
	src: url('/fonts/Montserrat-Regular.woff2') format('woff2'),
		url('/fonts/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/fonts/Montserrat-SemiBold.woff2') format('woff2'),
		url('/fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/fonts/Montserrat-Italic.woff2') format('woff2'),
		url('/fonts/Montserrat-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/fonts/Montserrat-LightItalic.woff2') format('woff2'),
		url('/fonts/Montserrat-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}



html {scroll-behavior: smooth;}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #2a2b2f;
}

/* HEADER */

header {
	background-color: #0e131c;
}

.menu {
	width: 100%;
	height: 80px;
	z-index: 10;
}

.menu a {
	text-transform: uppercase;
	font-weight: 600;
	color: #c8c8c8;
	margin-right: 2.5rem;
	font-size: 18px;
	text-decoration: none;
}

.menu a:last-of-type{
	margin-right: 1rem;
}

.menu a:hover {
	text-decoration: underline;
}

.hero {
	min-height: 100vh;
	background: url('img/attilio_hero_mobile.jpg') no-repeat center;
	background-size: cover;
}

.logo-wrapper {
	height: 40%;
}

.name {
	max-width: 70%;
}

@media (min-width: 992px) {
	.logo-wrapper {
		height: 100%;
	}
	.hero {
		background: url('img/attilio_hero.jpg') no-repeat center;
		background-size: cover;
	}
	
	.name {
		max-width: 60%;
	}
	
 }

.credit {
	font-size: 12px;
	color: #c8c8c8;
	position: absolute;
	bottom: 10px;
	right: 10px;
}


/* BIOGRAPHIE */

#bio {
	padding-top: 4rem;
	padding-bottom: 3rem;
}

#bio p {
	font-weight: 400;
	font-style: italic;
	font-size: 18px;
	margin-bottom: 2rem;
}


@media (min-width: 992px) {
	
	#bio p {
		font-size: 20px;
	}

 }


.bio-toggle {
	font-size: 20px;
	font-style: italic;
	padding: 8px 16px;
	margin-bottom: 2rem;
	
}


.btn-outline-primary {
	color: #2a2b2f;
	border-color: #2a2b2f;
	border: 2px solid;
	outline: none;
	border-radius: 0;
	box-shadow: none!important;
}

.btn-outline-primary:hover, .btn-outline-primary:active {
	background: #2a2b2f;
	color: white;
	border-color: #2a2b2f;
	outline: none;
} 

.btn-outline-primary:focus {
	outline: none;
	box-shadow: none;
}


/* FOOTER */

footer {
	background-color:  #2a2b2f;
	padding-top: 4rem;
	padding-bottom: 3rem; 
	color: #c8c8c8;
}

footer a, footer a:active, footer a:visited {
	color: #c8c8c8;
	text-decoration: none;
}

footer a:hover {
	color: #c8c8c8;
	text-decoration: underline;
}

footer h4 {
	font-weight: 600;
	font-size: 18px;
}

footer p {
	font-style: italic;
	font-size: 18px;
}



.insta-logo {
	position:absolute;
	right: 0;
	top: 0;
	width: 30px;
	
}