.header {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 16px;
	transition-duration: 0.3s;
	box-sizing: border-box;
}

.header * {
	transition-duration: 0.3s;
}

.header-content {
	display: flex;
	width: 1400px;
	margin: 0 auto;
	max-width: 100%;
}

header .image-container {
	max-width: 400px;
	max-height: 100px;
}

.logo-container {
	margin-top: auto;
	margin-bottom: auto;
	flex-grow: 0;
	flex-shrink: 0;
	text-align: center;
	font-family: var(--heading-font);
	font-size: 50px;
	line-height: 50px;
}

.custom-logo {
	height: auto;
	width: auto;
}

.header .menu {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .menu ul {
	display: flex;
	list-style-type: none;
	justify-content: center;
	align-items: center;
	padding-left: 0;
}

.header .menu li {
	margin: 4px 20px;
}

.menu a {
	text-decoration: none;
	color: white;
}

.buttons-container {
	display: flex;
}

.buttons-container svg {
	margin: auto;
}

.contact-button {
	background-color: white;
	color: black;
	padding: 10px 18px;
	border-radius: 24px;
}

.contact-link {
	margin: auto;
}

.contact-button svg {
	color: black;
	margin-left: 4px;
}

.telephone-button {
	background-color: transparent;
}

.telephone-button svg {
	margin-right: 6px;
}

.telephone-button a {
	color: white !important;
}

.buttons-container div {
	margin: auto;
	display: flex;
}

.buttons-container a {
	text-decoration: none;
	color: black;
}

.header.scrolled {
	background-color: white;
}

.scrolled .menu a,
.scrolled .telephone-button * {
	color: black !important;
}

.scrolled .contact-button {
	background-color: black;
}

.scrolled .contact-button,
.scrolled .contact-button * {
	color: white;
}

.header .text-container {
	margin: auto;
}


@media (max-width: 1130px) {
	.buttons-container {
		display: none;
	}

	.header .image-container {
		width: 200px;
	}

	.header .logo-container {
		font-size: 40px;
		line-height: 40px;
	}

	.menu ul {
		justify-content: right !important;
	}
}

/* Hamburger Icon */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 30px;
	cursor: pointer;
}

.hamburger .bar {
	height: 4px;
	width: 100%;
	background-color: white;
	border-radius: 4px;
	transition: all 0.3s ease;
	margin: 2.5px;
}

.scrolled .hamburger .bar {
	background-color: var(--brown);
}


/* Show Hamburger Icon on Small Screens */
@media (max-width: 760px) {
	.hamburger {
		display: flex;
	}

	.header .menu {
		display: none;
		flex-direction: column;
		background-color: white;
		position: absolute;
		/* Adjust based on your header height */
		right: 0;
		width: 100%;
		box-sizing: border-box;
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	}

	.header .menu ul {
		justify-content: right !important;
		top: 80px;
		padding: 10px;
		margin: 0;
	}

	.header .menu a {
		color: var(--grey);
	}

	.header .menu.open {
		display: flex;
	}

	.header .menu ul {
		flex-direction: column;
		align-items: flex-start;
	}

	.header .menu li {
		margin: 10px 0;
	}

	.buttons-container {
		display: none;
	}

	.header-content {
		justify-content: space-between;
	}
}

@media (min-width: 760px) {
	.contact-menu-link {
		display: none;
	}
}
