@charset "UTF-8";

header {
	display: grid;
	grid-template-columns: auto auto;
	background-color: var(--col-header-bg);
	box-sizing: border-box;
}


#header-logo {
	height: 100%;
	/*margin: 10px 0 10px 15px;*/
	margin-left: 15px;
	padding: 0 15px;
	display: grid;
	grid-template-columns: auto auto;
	justify-self: left;
	transition: 0.5s ease-in;
}
#header-logo:hover {
	background-color: var(--col-header-button);
	transition: 0.2s ease-out;
	transform: translate(0, 5px);
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

#header-logo a {
	display: grid;
	grid-template-columns: auto auto;

	justify-self: left;
	text-decoration: none;
	white-space: nowrap;
}

#book-icon {
	fill: white;
	width: 35px;
	height: 35px;
	align-self: center;
}
#header-text {
	margin-left: 15px;
	align-self: center;
	color: var(--col-text-inverted);
	font-family: Dosis, sans-serif;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 3px 0px 1px;
	line-height: 80%;
}
.header-text-subtitle {
	font-size: 60%;
}
#header-menu {
	align-self: center;
	justify-self: right;
	margin-right: 15px;
}
.header-links {
	height: 100%;
	min-width: 100px;
	justify-self: end;

	display: grid;
	grid-template-columns: repeat(6, auto);
}
#header-menu a {
	padding: 15px 18px;
	margin: 0 5px;
	color: var(--col-text-inverted);
	text-align: center;
	text-decoration: none;
	font-family: Dosis, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: 0.5s ease-in;
}
#header-menu a:hover {
	background-color: var(--col-header-button);
	transition: 0.2s ease-out;
	transform: translate(0, 5px);
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

#header-menu .ico {
	margin-right: 10px;
	font-weight: normal;
}


#header-hamburger {
	display: none;
	align-self: center;
	justify-self: right;
	margin-right: 15px;
	padding: 10px;
	cursor: pointer;
	transition: 0.2s ease-out;
}
#header-hamburger:hover {
	background-color: var(--col-highlight);
}

#hamburger1, #hamburger2, #hamburger3 {
	width: 25px;
	height: 3px;
	background-color: var(--col-text-inverted);
	margin: 5px 0;
}




/* MOBILE CONFIG 1 */
@media (max-width: 950px) {
	#header-logo {
		margin-left: 5px;
		padding: 0 10px;
	}
	#book-icon {
		width: 15px;
		height: 15px;
	}
	#header-text {
		margin-left: 10px;
		align-self: center;
		color: var(--col-text-inverted);
		font-family: Dosis, sans-serif;
		font-size: 14px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.1em;
	}
	#header-menu {
		margin-right: 5px;
	}
	#header-menu a {
		padding: 10px 10px;
		margin: 0 0px;
		font-size: 12px;
	}
}

/* MOBILE CONFIG 2 */
/*@media (max-width: 651px) {
	header {
		display: block;
	}
	#header-logo {
		margin: auto;
		padding: 10px 5px;
		width: auto;
		display: block;
	}
	#header-logo:hover {
		transition: 0.2s ease-out;
		transform: none;
		box-shadow: none;
	}
	#header-logo a {

	}
	#book-icon {
		justify-self: right;
	}
	.header-links {
		grid-template-columns: auto;
		grid-template-rows: repeat(6, auto);
	}
	#header-menu {
		margin-right: 0;
	}
	#header-menu a {
		padding: 8px 18px;
	}
	#header-menu a:hover {
		transition: 0.2s ease-out;
		transform: none;
		box-shadow: none;
	}
}*/


@media (max-width:650px) {
	#header-logo {
		margin-left: 15px;
		font-size: 20px;
	}

	#header-hamburger {
		display: block;
	}

	#header-menu {
		display: none;
	}
	.header-links {
		grid-template-columns: auto;
		grid-template-rows: repeat(6, auto);
	}
}