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

body {
	margin: 0;
	/* font-family: 'Bauhaus 93', sans-serif; */
	font-family: 'Bayer Universal Regular';
	background-color: #f7f1e9; /* https://icolorpalette.com/color/antique-parchment */
	background-image: url("img/bg-jan.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% auto;
	float: left;
	width: auto;
	color: #222;
	text-align: left;
	padding: 40px;
	max-width: 800px;
	min-width: 800px;
	position: relative;
}
@font-face {
    font-family: 'Bayer Universal Regular';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/BayerUniversal-Regular.woff') format('woff');
    }
@font-face {
	font-family: 'Tschichold ArchiType Normal';
	src: url('fonts/tschicholdarchitype-normal.ttf') format('truetype');
	}
@font-face {
	font-family: 'Cadet';
	src: url('fonts/cadet/Cadet-Regular.otf') format('opentype');
	}
nav {
	background-color: #bebbbb;
	padding: 5px 0;
	text-align: left;
	position: relative;
}
nav .hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	margin: 10px 10px;
	width: 30px;
	height: 21px;
	cursor: pointer;
}
nav .hamburger .bar {
	height: 4px;
	background-color: #333;
	border-radius: 2px;
}
nav ul {
	margin: 10px 10px;
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	transition: all 0.3s ease-in-out;
}
nav ul li a {
	text-decoration: none;
	color: black;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: bold;
	transition: color 0.3s ease-in-out;
}
nav ul li a:hover {
	color: #444;
}
header {
	padding: 20px 0;
	border-bottom: 2px solid black;
}
h1 {
	font-size: 5em;
	color: black;
	text-transform: uppercase;
	line-height: 0.2;
	font-family: 'Cadet';
}
h2 {
	font-size: 2em;
	color: black;
	text-transform: uppercase;
	margin-top: 40px;
}
h3 {
	font-size: 4em;
	color: black;
	line-height: 0.2;
	font-family: 'Cadet';
}
h4 {
	font-size: 2em;
	color: black;
	line-height: 0.2;
	font-family: 'Cadet';
}
p {
	font-size: 1.5em;
	line-height: 1.6;
}
.highlight {
	font-size: 1.5em;
	font-weight: bold;
	text-transform: uppercase;
	/* color: #380000; */
	color: black;
}
.responsive-image {
	max-width: 100%;       
	height: auto;          
	display: inline-block; 
	vertical-align: middle;
}
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}
.calculator-container {
	background-color: #faf7f4;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0;
	border: 1px solid gray;
}
td {
	padding: 10px;
	border: 1px solid gray;
}
label {
	font-weight: bold;
}
input {
	padding: 8px;
	width: 100%;
	box-sizing: border-box;
}
button {
	background-color: #bebbbb;
	color: black;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin-top: 10px;
}
button:hover {
	background-color: #a8a5a5;
}
#totalCost {
	margin-top: 20px;
	font-size: 18px;
}
footer {
	text-align: center;
	width: 100%;
	margin: auto 0
}
@media (max-width: 800px) {
	body {
		padding: 20px;
		background-size: 125% auto;
		background-image: url("img/bg-jan-gray.png");
		background-position: bottom;
		max-width: auto;
		min-width: auto;
	}
	nav ul {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	nav .hamburger {
		display: flex;
	}
	nav ul.active {
		display: flex;
	}
	h1 {
		font-size: 3.5em;
		line-height: 1;
	}
	h2 {
		line-height: 1;
	}
	h3 {
		font-size: 2.5em;
		line-height: 1;
	}
	h4 {
		line-height: 1;
	}
} 