.site-header{
	position: relative;
	z-index: 10;
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 18px;
	padding-bottom: 18px;
}

.site-logo img{
	height: clamp(90px, 66.67px + 3.7vw, 120px);
}



.site-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}


.site-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

ul.site-nav-primary {
  gap: 42px;
}

ul.site-nav-secondary {
  gap: 36px;
}

.site-nav a {
	display: inline-block;
	text-decoration: none;
	transition: color 160ms ease;
}

.site-nav-primary-wrapper{
    display: inline-flex;
    background-color: rgba(232, 232, 232, 0.5);
	/* blur */
	backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 8px;
}

.site-nav-estimation-btn{
    background-color: var(--ltc-yellow);
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--ltc-blue) !important;
}


.site-nav a:hover,
.site-nav a:focus-visible {
	color: #b55a2f;
}

.site-nav-secondary a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
	letter-spacing: 0.08em;
	color: var(--ltc-blue);
}

.site-nav-white > .site-nav-secondary a {
	color: #FFFFFF;
}

.site-nav-primary a {
	font-size: 18px;
	line-height: 24px;
	font-weight: 300;
    color: var(--ltc-blue);
}

.site-nav-white > .site-nav-primary-wrapper > .site-nav-primary a, .site-nav-white > .site-nav-primary-wrapper > .site-nav-primary button {
    color: white;
}

.ltc-primary-dropdown a {
    color: var(--ltc-blue);
    font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: 0.01em;
}
.site-nav-white .site-nav-primary-wrapper .ltc-primary-dropdown a {
    color: var(--ltc-blue);
}


.site-nav-dropdown {
	position: relative;
}

.site-nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	padding: 0;
	background: transparent;
	font-size: 18px;
	line-height: 24px;
	font-weight: 300;
	letter-spacing: 0.01em;
	color: #2a2a2a;
	transition: color 160ms ease;
}

.site-nav-dropdown-toggle::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 160ms ease;
}

.site-nav-dropdown-toggle:hover,
.site-nav-dropdown-toggle:focus-visible {
	color: #b55a2f;
}

.site-nav-dropdown .ltc-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	display: none;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	min-width: 150px;
	padding: 14px;
	border: 1px solid #ece7dd;
	background-color: var(--ltc-grey) !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	z-index: 999 !important;
}

.site-nav-dropdown .ltc-dropdown li{
	display: inline-block;
	width: 100%;
}



.site-nav-dropdown .ltc-dropdown a {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

.site-nav-dropdown.is-open .ltc-dropdown {
	display: flex;
}

.site-nav-dropdown.is-open .site-nav-dropdown-toggle::after {
	transform: rotate(-135deg) translateY(1px);
}

.hamburger {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #2a2a2a;
}
.hamburger::before{
	content: "";
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	height: 48px;
	width: 48px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--ltc-blue);
	border-radius: 999px;
}

.hamburger-box {
	position: relative;
	display: block;
	width: 24px;
	height: 20px;
	margin: 0 auto;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	position: absolute;
	left: 0;
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 1px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
	content: "";
}

.hamburger-inner {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger-inner::before {
	top: -8px;
}

.hamburger-inner::after {
	top: 8px;
}

.hamburger.is-active .hamburger-inner {
	transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-active .hamburger-inner::before {
	opacity: 0;
}

.hamburger.is-active .hamburger-inner::after {
	top: 0;
	transform: rotate(-90deg);
}

























.mobile-menu {
	display: none;
	z-index: 9999;
}

.ltc-top-mobile {
	display: none;
}
.ltc-top-desktop {
	display: block;
}



@media (max-width: 1339.99px) {
	.ltc-top-desktop {
		display: none;
	}
	.ltc-top-mobile {
		display: block;
	}
	.mobile-menu {
		position: fixed;
		top: var(--site-header-height, 80px);
		left: 0;
		right: 0;
		height: calc(100dvh - var(--site-header-height, 80px));
		overflow-y: auto;
		border-top: 1px solid #ece7dd;
		background: #ffffff;
		z-index: 9999;
	}

	.mobile-menu.is-open {
		display: block;
	}

	/* Keep the mobile nav stack above fixed UI elements outside the header context. */
	.body-mobile-menu-open .site-header {
		z-index: 1001;
	}

	/* Homepage hero creates a stacking context; lift it only while menu is open. */
	.body-mobile-menu-open .home-hero-wrapper {
		z-index: 1000;
	}

	.body-mobile-menu-open {
		overflow: hidden;
	}

	.mobile-menu-inner {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.mobile-menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	

	.mobile-menu-primary li + li,
	.mobile-menu-secondary li + li {
		margin-top: 10px;
	}

	.mobile-menu-primary a {
		font-size: 16px;
		line-height: 32px;
		font-weight: 500;
		letter-spacing: 0.01em;
		color: #1f1f1f;
		text-decoration: none;
	}

	.mobile-menu-secondary {
		margin-top: 30px;
		padding-top: 30px;
		border-top: 1px solid #ece7dd;
	}

	.mobile-menu-secondary a {
		font-size: 16px;
		line-height: 24px;
		font-weight: 300;
		color: #2a2a2a;
		text-decoration: none;
	}

	.mobile-menu a:hover,
	.mobile-menu a:focus-visible {
		color: #b55a2f;
	}
}


































/*********************************************************************
 * Custom Bootstrap Dropdown voor de Taalswitcher
 */

/* 1. Basis voor de lijstitem wrapper */
.site-nav-secondary .dropdown {
    position: relative;
    display: inline-block;
}

/* 2. De ingebouwde Bootstrap pijl (caret) activeren en stylen */
.site-nav-secondary .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    /* Dit maakt de ECHTE Bootstrap driehoek die NOOIT afsnijdt: */
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/* Pijltje omdraaien als het menu openklapt */
.site-nav-secondary .dropdown-toggle[aria-expanded="true"]::after {
    border-top: 0;
    border-bottom: 0.3em solid;
}

/* 3. Het witte dropdown vlak (Standaard onzichtbaar) */
.site-nav-secondary .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background-color: #ffffff;
    border: 1px solid #ece7dd;
    padding: 8px 0;
    margin-top: 8px;
    list-style: none;
    min-width: 80px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

/* Alleen tonen als er op geklikt is */
.site-nav-secondary .dropdown-menu.show {
    display: block;
}

/* 4. De talen in het menu (Altijd donkere tekst) */
.site-nav-secondary .dropdown-item {
    display: block;
    width: 100%;
    padding: 6px 16px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--ltc-blue) !important;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 160ms ease, color 160ms ease;
}

/* Hover effect op EN / FR */
.site-nav-secondary .dropdown-item:hover,
.site-nav-secondary .dropdown-item:focus-visible {
    background-color: #f8f9fa;
    color: #b55a2f !important;
}