/* ==========================================================
   NEWATOURS – HOTELS
   ========================================================== */

.newatours-hotels {
	--newa-navy: #0d2d4a;
	--newa-gold: #b08d57;
	--newa-text: #2e2e2e;
	--newa-muted: #68717b;
	--newa-border: rgba(13, 45, 74, 0.12);
	--newa-soft: #faf8f4;
	--newa-hotel-tab-active-bg: #faf8f4;
	--newa-hotel-tab-accent: #b08d57;
	--newa-hotel-map-color: #b08d57;
	--newa-hotel-map-hover-color: #b08d57;

	display: grid;

	grid-template-columns:
		300px
		minmax(0, 1fr);

	gap: 36px;

	width: 100%;
}


/* ==========================================================
   HOTEL TABS – LINKER BLOCK
   ========================================================== */

.newatours-hotels-tabs {
	display: flex;
	flex-direction: column;

	gap: 0;

	align-self: start;

	min-width: 0;

	border:
		1px solid
		var(--newa-border);

	border-radius: 8px;

	background: #ffffff;

	overflow: hidden;
}


/* ==========================================================
   EINZELNER TAB
   ========================================================== */

.newatours-hotels-tab {
	position: relative;

	display: grid !important;

	grid-template-columns:
		32px
		minmax(0, 1fr)
		18px;

	align-items: center;

	column-gap: 14px;

	width: 100%;

	min-height: 80px;

	margin: 0 !important;
	padding:
		12px
		18px !important;

	border: 0 !important;

	border-bottom:
		1px solid
		var(--newa-border) !important;

	border-radius: 0 !important;

	background:
		#ffffff !important;

	box-shadow: none !important;
	outline: none !important;

	color:
		var(--newa-navy) !important;

	text-align: left !important;

	cursor: pointer;

	transition:
		background-color 0.2s ease;
}


.newatours-hotels-tab:last-child {
	border-bottom:
		0 !important;
}


.newatours-hotels-tab:hover {
	background:
		#fcfbf8 !important;
}


/* ==========================================================
   AKTIVER TAB
   ========================================================== */

.newatours-hotels-tab.is-active {
	background:
		var(--newa-hotel-tab-active-bg) !important;
}


/* goldene Linie links */

.newatours-hotels-tab.is-active::before {
	content: "";

	position: absolute;

	top: 0;
	bottom: 0;
	left: 0;

	width: 4px;

	background:
		var(--newa-hotel-tab-accent);
}


/* ==========================================================
   NUMMER
   ========================================================== */

.newatours-hotels-tab-index {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 30px;
	height: 30px;

	border-radius: 50%;

	background:
		var(--newa-gold);

	color:
		#ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}


/* ==========================================================
   TAB-INHALT
   ========================================================== */

.newatours-hotels-tab-content {
	display: flex;
	flex-direction: column;

	min-width: 0;
}


.newatours-hotels-tab-name {
	color:
		var(--newa-navy);

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}


.newatours-hotels-tab-stars {
	margin-top: 5px;

	color:
		var(--newa-gold);

	font-size: 16px;
	line-height: 1;

	letter-spacing: 1px;
}


.newatours-hotels-tab-meta {
	margin-top: 7px;

	color:
		#424a53;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}


/* ==========================================================
   PFEIL TAB
   ========================================================== */

.newatours-hotels-tab-arrow {
	display: flex;
	align-items: center;
	justify-content: center;

	color:
		var(--newa-navy);

	font-family:
		Arial,
		sans-serif;

	font-size: 27px;
	font-weight: 300;
	line-height: 1;

	transition:
		color 0.2s ease,
		transform 0.2s ease;
}


.newatours-hotels-tab:hover
.newatours-hotels-tab-arrow,
.newatours-hotels-tab.is-active
.newatours-hotels-tab-arrow {
	color:
		var(--newa-gold);
}


.newatours-hotels-tab:hover
.newatours-hotels-tab-arrow {
	transform:
		translateX(2px);
}


/* ==========================================================
   HOTEL PANELS
   ========================================================== */

.newatours-hotels-panels {
	min-width: 0;
}


.newatours-hotel-panel {
	display: none;
}


.newatours-hotel-panel.is-active {
	display: block;
}


/* ==========================================================
   HOTEL HEADER
   ========================================================== */

.newatours-hotel-header {
	margin-bottom: 18px;
}


.newatours-hotel-title-row {
	display: flex;
	align-items: center;

	flex-wrap: wrap;

	gap: 12px;
}


.newatours-hotel-title {
	margin: 0;

	color:
		var(--newa-navy);

	font-family:
		"Marcellus",
		serif;

	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
}


.newatours-hotel-stars {
	color:
		var(--newa-gold);

	font-size: 16px;
	line-height: 1;

	letter-spacing: 2px;
}


.newatours-hotel-city {
	margin-top: 5px;

	color:
		var(--newa-muted);

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
}


/* ==========================================================
   GALERIE – 1 GROSS + 6 KLEIN
   ========================================================== */

.newatours-hotel-gallery {
	display: grid;

	grid-template-columns:
		minmax(0, 1.65fr)
		minmax(0, 1fr)
		minmax(0, 1fr);

	grid-template-rows:
		repeat(
			3,
			minmax(0, 1fr)
		);

	gap: 8px;

	width: 100%;

	aspect-ratio: 16 / 7;

	margin-bottom: 24px;
}


.newatours-hotel-gallery-item {
	position: relative;

	display: block !important;

	width: 100%;
	height: 100%;

	margin: 0 !important;
	padding: 0 !important;

	border: 0 !important;
	border-radius: 6px !important;

	background:
		transparent !important;

	box-shadow: none !important;
	outline: none !important;

	overflow: hidden;

	cursor: zoom-in;

	appearance: none;
	-webkit-appearance: none;
}


.newatours-hotel-gallery-item.is-main {
	grid-column: 1;
	grid-row: 1 / 4;
}


.newatours-hotel-gallery-item:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
}


.newatours-hotel-gallery-item:nth-child(3) {
	grid-column: 3;
	grid-row: 1;
}


.newatours-hotel-gallery-item:nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}


.newatours-hotel-gallery-item:nth-child(5) {
	grid-column: 3;
	grid-row: 2;
}


.newatours-hotel-gallery-item:nth-child(6) {
	grid-column: 2;
	grid-row: 3;
}


.newatours-hotel-gallery-item:nth-child(7) {
	grid-column: 3;
	grid-row: 3;
}


.newatours-hotel-gallery-item img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	transition:
		transform 0.25s ease;
}


.newatours-hotel-gallery-item:hover img {
	transform:
		scale(1.025);
}


/* ==========================================================
   BESCHREIBUNG
   ========================================================== */

.newatours-hotel-description {
	margin-bottom: 22px;

	color:
		var(--newa-text);

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}


.newatours-hotel-description p {
	margin:
		0
		0
		10px;
}


.newatours-hotel-description p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   ADRESSE DES HOTELS
   ========================================================== */

.newatours-hotel-location {
	margin:
		0
		0
		22px;

	padding: 0;

	border: 0;

	background:
		transparent;
}


.newatours-hotel-location-label {
	display: flex;
	align-items: center;

	gap: 10px;

	margin:
		0
		0
		7px;

	padding: 0;

	color:
		var(--newa-navy);

	font-family:
		"Marcellus",
		serif;

	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;

	letter-spacing: 0;
	text-transform: none;
}


.newatours-hotel-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	flex:
		0
		0
		21px;

	width: 21px;
	height: 21px;

	color:
		var(--newa-gold);
}


.newatours-hotel-icon svg {
	display: block;

	width: 20px;
	height: 20px;

	fill: none;

	stroke:
		currentColor;

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


.newatours-hotel-address {
	margin:
		0
		0
		0
		31px;

	padding: 0;

	color:
		var(--newa-text);

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
}

.newatours-hotel-address-title {
    font-weight: 600;
}

/* Google Maps Link */

.newatours-hotel-map-link {
	display: inline-flex !important;
	align-items: center;

	gap: 8px;

	margin:
		7px
		0
		0
		29px !important;

	padding: 0 !important;

	border: 0 !important;
	border-radius: 0 !important;

	background:
		transparent !important;

	box-shadow: none !important;
	outline: none !important;

	color:
		var(--newa-hotel-map-color) !important;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;

	text-decoration: none !important;

	cursor: pointer;
}


.newatours-hotel-map-link:hover,
.newatours-hotel-map-link:focus {
	background:
		transparent !important;

	color:
		var(--newa-hotel-map-hover-color) !important;

	text-decoration:
		none !important;
}


.newatours-hotel-map-link-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 17px;
	height: 17px;
}


.newatours-hotel-map-link-icon svg {
	display: block;

	width: 17px;
	height: 17px;

	fill: none;

	stroke:
		currentColor;

	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* ==========================================================
   AUSSTATTUNG – WIE IM MOCKUP
   ========================================================== */

.newatours-hotel-amenities {
	display: grid;

	grid-template-columns:
		repeat(
			2,
			minmax(0, 1fr)
		);

	gap: 0;

	margin-top: 8px;

	border:
		1px solid
		var(--newa-border);

	border-radius: 8px;

	background:
		#ffffff;

	overflow: hidden;
}


.newatours-hotel-amenities-group {
	padding:
		20px
		24px
		22px;

	border: 0;
	border-radius: 0;

	background:
		transparent;
}


.newatours-hotel-amenities-group
+
.newatours-hotel-amenities-group {
	border-left:
		1px solid
		var(--newa-border);
}


/* Überschrift */

.newatours-hotel-amenities-title {
	display: flex;
	align-items: center;

	gap: 12px;

	margin:
		0
		0
		13px;

	padding: 0;

	color:
		var(--newa-navy);

	font-family:
		"Marcellus",
		serif;

	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;

	letter-spacing: 0;

	text-transform: uppercase;
}


.newatours-hotel-amenities-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	flex:
		0
		0
		25px;

	width: 25px;
	height: 25px;

	color:
		var(--newa-gold);
}


.newatours-hotel-amenities-icon svg {
	display: block;

	width: 24px;
	height: 24px;

	fill: none;

	stroke:
		currentColor;

	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* Listen */

.newatours-hotel-amenities-group ul {
	display: block;

	list-style: none;

	margin: 0;
	padding: 0;
}


.newatours-hotel-amenities-group li {
	position: relative;

	margin:
		0
		0
		5px;

	padding-left: 23px;

	color:
		var(--newa-text);

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}


.newatours-hotel-amenities-group li:last-child {
	margin-bottom: 0;
}


.newatours-hotel-amenities-group li::before {
	content: "✓";

	position: absolute;

	top: -1px;
	left: 0;

	color:
		var(--newa-gold);

	font-family:
		Arial,
		sans-serif;

	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
}


/* ==========================================================
   PHOTO LIGHTBOX
   ========================================================== */

.newatours-hotel-lightbox[hidden] {
	display: none !important;
}


.newatours-hotel-lightbox {
	position: fixed;

	inset: 0;

	z-index: 99999;

	display: flex;
	align-items: center;
	justify-content: center;

	background:
		rgba(0, 0, 0, 0.88);
}


.newatours-hotel-lightbox-backdrop {
	position: absolute;

	inset: 0;
}


.newatours-hotel-lightbox-inner {
	position: relative;

	z-index: 2;

	width: 100vw;
	height: 100vh;

	pointer-events: none;
}


.newatours-hotel-lightbox-stage {
	position: absolute;

	top: 55px;
	right: 80px;
	bottom: 70px;
	left: 80px;

	display: flex;
	align-items: center;
	justify-content: center;
}


.newatours-hotel-lightbox-image {
	display: block;

	width: auto;
	height: auto;

	max-width: 100%;
	max-height: 100%;

	object-fit: contain;

	box-shadow:
		0 4px 30px
		rgba(0, 0, 0, 0.30);

	pointer-events: auto;
}


.newatours-hotel-lightbox-counter {
	position: absolute;

	top: 18px;
	left: 20px;

	z-index: 10;

	color: #ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 15px;
	font-weight: 600;

	pointer-events: auto;
}


.newatours-hotel-lightbox-close {
	position: absolute;

	top: 12px;
	right: 18px;

	z-index: 10;

	width: 40px !important;
	height: 40px !important;

	padding: 0 !important;

	border: 0 !important;

	background:
		transparent !important;

	box-shadow: none !important;

	color:
		#ffffff !important;

	font-size: 34px !important;
	line-height: 1 !important;

	cursor: pointer;

	pointer-events: auto;
}


.newatours-hotel-lightbox-prev,
.newatours-hotel-lightbox-next {
	position: absolute;

	top: 50%;

	z-index: 10;

	width: 54px !important;
	height: 70px !important;

	padding: 0 !important;

	border: 0 !important;

	background:
		transparent !important;

	box-shadow: none !important;

	color:
		#ffffff !important;

	font-size: 58px !important;
	line-height: 1 !important;

	transform:
		translateY(-50%);

	cursor: pointer;

	pointer-events: auto;
}


.newatours-hotel-lightbox-prev {
	left: 42px;
}


.newatours-hotel-lightbox-next {
	right: 42px;
}


.newatours-hotel-lightbox-prev[hidden],
.newatours-hotel-lightbox-next[hidden] {
	display: none !important;
}


.newatours-hotel-lightbox-caption {
	position: absolute;

	left: 50%;
	bottom: -42px;

	transform:
		translateX(-50%);

	max-width: 80vw;

	color:
		#ffffff;

	font-family:
		"Source Sans 3",
		sans-serif;

	font-size: 17px;
	line-height: 1.4;

	text-align: center;

	text-shadow:
		0 1px 3px
		rgba(0, 0, 0, 0.65);
}


.newatours-hotel-lightbox-caption[hidden] {
	display: none !important;
}


/* ==========================================================
   GOOGLE MAPS MODAL
   ========================================================== */

.newatours-hotel-map-modal[hidden] {
	display: none !important;
}


.newatours-hotel-map-modal {
	position: fixed;

	inset: 0;

	z-index: 100000;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 30px;

	background:
		rgba(0, 0, 0, 0.72);
}


.newatours-hotel-map-backdrop {
	position: absolute;

	inset: 0;
}


.newatours-hotel-map-dialog {
	position: relative;

	z-index: 2;

	display: flex;
	flex-direction: column;

	width:
		min(
			900px,
			92vw
		);

	max-height:
		86vh;

	border-radius: 10px;

	background:
		#ffffff;

	box-shadow:
		0 15px 60px
		rgba(0, 0, 0, 0.30);

	overflow: hidden;
}


.newatours-hotel-map-head {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;

	padding:
		15px
		18px;

	border-bottom:
		1px solid
		var(--newa-border);
}


.newatours-hotel-map-title {
	color:
		var(--newa-navy);

	font-family:
		"Marcellus",
		serif;

	font-size: 21px;
	font-weight: 400;
	line-height: 1.25;
}


.newatours-hotel-map-close {
	display: flex !important;
	align-items: center;
	justify-content: center;

	width: 36px !important;
	height: 36px !important;

	padding: 0 !important;

	border: 0 !important;

	background:
		transparent !important;

	box-shadow: none !important;

	color:
		var(--newa-navy) !important;

	font-size: 30px !important;
	line-height: 1 !important;

	cursor: pointer;
}


.newatours-hotel-map-frame-wrap {
	width: 100%;

	height:
		min(
			600px,
			72vh
		);
}


.newatours-hotel-map-frame-wrap iframe {
	display: block;

	width: 100%;
	height: 100%;

	border: 0;
}


html.newatours-modal-open,
body.newatours-modal-open {
	overflow:
		hidden !important;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.newatours-hotels {
		grid-template-columns:
			230px
			minmax(0, 1fr);

		gap: 24px;
	}


	.newatours-hotels-tab {
		grid-template-columns:
			28px
			minmax(0, 1fr)
			15px;

		column-gap: 10px;

		min-height: 70px;

		padding:
			13px
			12px !important;
	}


	.newatours-hotels-tab-index {
		width: 27px;
		height: 27px;

		font-size: 12px;
	}


	.newatours-hotels-tab-name {
		font-size: 14px;
	}


	.newatours-hotels-tab-stars {
		font-size: 14px;
	}


	.newatours-hotels-tab-meta {
		font-size: 12px;
	}


	.newatours-hotels-tab-arrow {
		font-size: 23px;
	}


	.newatours-hotel-title {
		font-size: 22px;
	}


	.newatours-hotel-gallery {
		aspect-ratio:
			16 / 8;
	}
	
	.newatours-hotel-amenities-title {
		font-size: 13px;
		white-space: nowrap;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.newatours-hotels {
		display: block;
	}


	.newatours-hotels-tabs {
	display: flex;
	flex-direction: column;

	gap: 0;

	width: 100%;

	margin-bottom: 24px;
	padding: 0;

	border: 1px solid var(--newa-border);
	border-radius: 8px;

	background: #ffffff;

	overflow: hidden;
}


.newatours-hotels-tab {
	flex: none;

	width: 100%;
	min-width: 0;

	grid-template-columns:
		28px
		minmax(0, 1fr)
		14px;

	min-height: 60px;

	margin: 0 !important;

	padding: 12px !important;

	border: 0 !important;
	border-bottom:
		1px solid
		var(--newa-border) !important;

	border-radius: 0 !important;
}


.newatours-hotels-tab:last-child {
	border-bottom: 0 !important;
}


.newatours-hotels-tab.is-active {
	background:
		var(--newa-hotel-tab-active-bg) !important;
}


.newatours-hotels-tab.is-active::before {
	content: "";

	position: absolute;

	top: 0;
	bottom: 0;
	left: 0;

	width: 3px;

	background:
		var(--newa-hotel-tab-accent);
}


	.newatours-hotels-tab-index {
		width: 27px;
		height: 27px;
	}


	.newatours-hotel-title {
		font-size: 18px;
	}


	.newatours-hotel-city {
		font-size: 14px;
	}


	/* Gallery */

	.newatours-hotel-gallery {
		grid-template-columns:
			repeat(
				2,
				minmax(0, 1fr)
			);

		grid-template-rows: auto;

		gap: 6px;

		aspect-ratio: auto;

		margin-bottom: 20px;
	}


	.newatours-hotel-gallery-item,
	.newatours-hotel-gallery-item.is-main,
	.newatours-hotel-gallery-item:nth-child(n) {
		grid-column: auto;
		grid-row: auto;

		aspect-ratio: 4 / 3;
	}


	.newatours-hotel-gallery-item.is-main {
		grid-column: 1 / 3;

		aspect-ratio: 16 / 9;
	}


	.newatours-hotel-description {
		font-size: 15px;
		line-height: 1.6;
	}


	/* Adresse */

	.newatours-hotel-location-label {
		font-size: 17px;
	}


	.newatours-hotel-address {
		margin-left: 30px;

		font-size: 14px;
	}


	.newatours-hotel-map-link {
		margin-left:
			28px !important;

		font-size:
			14px;
	}


	/* Ausstattung untereinander */

	.newatours-hotel-amenities {
		grid-template-columns: 1fr;
	}


	.newatours-hotel-amenities-group {
		padding:
			17px
			18px;
	}


	.newatours-hotel-amenities-group
	+
	.newatours-hotel-amenities-group {
		border-left: 0;

		border-top:
			1px solid
			var(--newa-border);
	}


	.newatours-hotel-amenities-title {
		font-size: 16px;
	}


	/* Maps */

	.newatours-hotel-map-modal {
		padding: 14px;
	}


	.newatours-hotel-map-dialog {
		width: 100%;
	}


	.newatours-hotel-map-title {
		font-size: 18px;
	}


	.newatours-hotel-map-frame-wrap {
		height: 65vh;
	}


	/* Lightbox */

	.newatours-hotel-lightbox-stage {
		top: 55px;
		right: 15px;
		bottom: 65px;
		left: 15px;
	}


	.newatours-hotel-lightbox-prev {
		left: 8px;
	}


	.newatours-hotel-lightbox-next {
		right: 8px;
	}


	.newatours-hotel-lightbox-prev,
	.newatours-hotel-lightbox-next {
		width: 40px !important;
		height: 60px !important;

		font-size: 46px !important;
	}


	.newatours-hotel-lightbox-caption {
		bottom: -42px;

		max-width: 88vw;

		font-size: 15px;
	}
	
	.newatours-hotel-address-title {
		font-size: 15px;
	}

}


/* ==========================================================
   REISEINFO – 3 GLEICH GROSSE HOTELBILDER
   ========================================================== */

.newatours-hotels--reiseinfo
.newatours-hotel-gallery {
	grid-template-columns:
		repeat(
			3,
			minmax(0, 1fr)
		);

	grid-template-rows: 1fr;

	gap: 8px;

	aspect-ratio: auto;
}


.newatours-hotels--reiseinfo
.newatours-hotel-gallery-item,
.newatours-hotels--reiseinfo
.newatours-hotel-gallery-item.is-main,
.newatours-hotels--reiseinfo
.newatours-hotel-gallery-item:nth-child(n) {
	grid-column: auto;
	grid-row: auto;

	aspect-ratio: 4 / 3;
}


/* ==========================================================
   REISEINFO – MOBILE
   1 großes Bild oben + 2 kleinere darunter
   ========================================================== */

@media (max-width: 767px) {

	.newatours-hotels--reiseinfo
	.newatours-hotel-gallery {
		grid-template-columns:
			repeat(
				2,
				minmax(0, 1fr)
			);

		grid-template-rows: auto;

		gap: 6px;

		aspect-ratio: auto;
	}


	.newatours-hotels--reiseinfo
	.newatours-hotel-gallery-item,
	.newatours-hotels--reiseinfo
	.newatours-hotel-gallery-item:nth-child(n) {
		grid-column: auto;
		grid-row: auto;

		aspect-ratio: 4 / 3;
	}


	.newatours-hotels--reiseinfo
	.newatours-hotel-gallery-item.is-main {
		grid-column: 1 / 3;

		aspect-ratio: 16 / 9;
	}

}
