
/* ===== Hide wp_nav_menu page-list fallback & stray body-top HTML ===== */
body > ul,
body > ul.nav-collapse,
body > .menu {
	display: none !important;
}
/* ===== /Hide fallback ===== */

/* ===== Header flex row: logo + nav side by side ===== */
body #header > .site {
	display: flex !important;
	flex-direction: row !important;
	justify-content: space-between !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	height: 70px;
}

body #header > .site #logo {
	flex-shrink: 0 !important;
	min-width: 220px !important;
	width: 220px !important;
	max-width: 250px;
	clear: none !important;
	display: block !important;
}

body #header > .site #logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

body #header > .site #nav-holder {
	width: auto !important;
	clear: none !important;
	float: none !important;
	flex-shrink: 1;
}
/* ===== /Header flex row ===== */

/* ===== Desktop nav fix: unlock nav hidden by mobile max-height:0 ===== */
body #header {
	background: #fbfbfb;
	border-bottom: 1px solid rgba(128,128,128,0.5);
	position: relative;
	z-index: 10;
	height: 70px;
	box-sizing: border-box;
}

body #nav-holder {
	max-height: 70px !important;
	overflow: visible !important;
	position: relative !important;
	float: right;
	width: auto;
	left: auto;
	top: auto;
	z-index: 2;
	transition: none;
}

body #nav-holder ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	margin: 0;
	padding: 0;
}

body #nav-holder > ul > li {
	display: inline-block;
	position: relative;
	padding: 0 0 0 20px;
}

body #nav-holder ul li a {
	display: block;
	color: #000000;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap;
}

body #nav-holder ul li {
	position: relative;
}

body #nav-holder ul li .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: max-content !important;
	min-width: 260px !important;
	background-color: #1a1a1a !important;
	box-shadow: 0 5px 15px rgba(0,0,0,0.4);
	padding: 10px 0;
	z-index: 999;
}

body #nav-holder ul li .sub-menu li {
	display: block;
}

body #nav-holder ul li .sub-menu li a {
	color: #ffffff !important;
	padding: 10px 20px;
	display: block;
	line-height: 1.4 !important;
	white-space: normal !important;
	border-bottom: 1px solid #2a2a2a !important;
}

body #nav-holder ul li .sub-menu li a:hover {
	color: #e69500 !important;
	background-color: #2a2a2a !important;
}

body #nav-holder ul li:hover > .sub-menu {
	display: block;
}

body #nav-toggle {
	display: none !important;
}
body #nav-holder ul li > a {
	padding: 0 4px;
}

body #nav-holder > ul {
	gap: 8px;
}

/* Hide system notices/alerts that leak into the header area */
body .global-message:empty,
body #header .notice,
body #header .alert,
body #header .woocommerce-message,
body #header .woocommerce-error,
body #header .woocommerce-info,
body #header [class*="booking-"],
body #header [class*="foglal"] {
	display: none !important;
}
/* Nav CTA buttons: last two menu items */
body #nav-holder > ul > li:nth-last-child(1) > a,
body #nav-holder > ul > li:nth-last-child(2) > a,
body #nav-holder > ul > li.menu-item-btn > a,
body #nav-holder > ul > li.btn > a {
	background-color: #e69500;
	color: #ffffff !important;
	padding: 8px 15px;
	border-radius: 4px;
	display: inline-block;
	line-height: 1.4 !important;
	font-weight: 600;
	text-decoration: none;
}

body #nav-holder > ul > li:nth-last-child(1) > a:hover,
body #nav-holder > ul > li:nth-last-child(2) > a:hover {
	background-color: #cc8400;
}

/* Hero wp-block-columns: 2 equal columns on desktop */
body .wp-block-columns {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 50px !important;
	justify-content: space-between !important;
	max-width: 1100px;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-bottom: 30px;
}

body .wp-block-columns .wp-block-column {
	flex: 1 1 0% !important;
	min-width: 0;
}

body .wp-block-column > figure,
body .wp-block-column > img,
body .wp-block-column .wp-block-image {
	margin-bottom: 25px !important;
}


body .wp-block-column h3,
body .wp-block-column h4 {
	margin-bottom: 15px !important;
	line-height: 1.3;
}

/* 3 oszlopos szekciók (pl. Miért minket, Foglalás) */
body .wp-block-columns.has-3-columns {
	gap: 20px;
}

body .wp-block-columns.has-3-columns .wp-block-column {
	padding: 0 20px;
}

body .wp-block-columns.has-3-columns .wp-block-column img,
body .wp-block-columns.has-3-columns .wp-block-column svg {
	margin-bottom: 20px !important;
}

body .wp-block-columns.has-3-columns .wp-block-column h2,
body .wp-block-columns.has-3-columns .wp-block-column h3,
body .wp-block-columns.has-3-columns .wp-block-column h4 {
	line-height: 1.2;
	margin-bottom: 15px;
}
/* ===== /Desktop nav fix ===== */

/* ===== Cookie banner ===== */
body #cookie-alert {
	position: fixed !important;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	padding: 15px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 20px;
	z-index: 9999;
	box-sizing: border-box;
}

body #cookie-policy-close {
	background-color: #e69500 !important;
	color: #fff !important;
	border: none;
	padding: 10px 25px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 3px;
	display: inline-block;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}
/* ===== /Cookie banner ===== */


body .site > .alignfull {
	margin-left: calc( 50% - 50vw);
	margin-right: calc( 50% - 50vw);
	width: 100vw;
	max-width: 100vw;
}



body #nav-holder ul, 
body #nav-holder ul li, 
body #nav-holder ul li a {
	line-height: 70px;
}

body #nav-holder ul li {
	padding: 0;
}

body #nav-holder ul .sub-menu li a {
	color:#ffffff;
}

body #nav-holder ul .sub-menu li {
	line-height: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, .5);
}

body #nav-holder ul .sub-menu {
	left: 10px;
	right:initial;
	padding: 5px 0 0 0;
	top:70px;
	
	box-shadow: 5px 5px 5px 5px rgb(128 128 128 / 30%);
}

body #nav-holder ul li .sub-menu {
	opacity:0;
	transition:opacity .3s ease-out;
	background: rgba(0, 0, 0, .95);
	min-width: 160px;
	
	position: absolute;
	display: none;
	right: -10px;
	padding: 10px 10px 10px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 5px 0px 5px 5px rgba(128, 128, 128, 0.3);
	
}

body #nav-holder ul li:hover .sub-menu {
	opacity:1;
}

body #nav-holder ul li.menu-item-has-children > a:after {
	content: '▼';
	display: inline;
	padding-left: 3px;
	font-size: 10px;
	line-height: 10px;
}




body .testimonial p {
	font-size:18px;
	line-height:28px;
}

body .quickberg-text-media.image-in-background .cover-wrapper,
body .quickberg-media-text.image-in-background .cover-wrapper {
	padding-bottom: 35%;
}


body.admin-bar.enabled-sticky-mobile.sticky-header #header {
	top: 32px;
}

/* Oszlopokon belüli vastagított "címsorok" sorközének javítása */
body .wp-block-column strong,
body .wp-block-column h2,
body .wp-block-column h3 {
	line-height: 1.3 !important;
	display: inline-block;
	word-break: normal !important;
	overflow-wrap: normal !important;
	-webkit-hyphens: auto;
	hyphens: auto;
}