/* CSS Document */
/* =========================================================
   HOTELLSEKSJON
========================================================= */

.hotel-section {
	position: relative;
	padding: 80px 0;
	
}


/* =========================================================
   INFORMASJON ØVERST
========================================================= */

.hotel-info-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.9fr 1fr 1.1fr;
	gap: 28px;

	padding-bottom: 55px;
	margin-bottom: 55px;

	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hotel-info-item {
	min-width: 0;
}

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

	width: 46px;
	height: 46px;

	margin-bottom: 20px;

	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;

	background: rgba(255, 255, 255, 0.05);
	color: #FF2D75;

	font-size: 18px;
}

.hotel-info-item h3 {
	margin: 0 0 14px;

	color: #FFFFFF;

	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.hotel-info-item p {
	margin: 0;

	color: rgba(255, 255, 255, 0.68);

	font-size: 16px;
	line-height: 1.65;
}

.hotel-info-item strong {
	color: #FFFFFF;
	font-weight: 600;
}

.hotel-info-item a:not(.btn) {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;

	transition:
		color 0.2s ease;
}

.hotel-info-item a:not(.btn):hover {
	color: #00E5FF;
}

.hotel-booking-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: 100%;
	max-width: 310px;

	margin-top: 2px;
}

.btn-booking-disabled {
	opacity: 0.55;
	cursor: default;
	pointer-events: none;
}


/* =========================================================
   PRISOMRÅDE
========================================================= */

.hotel-prices {
	padding: 42px;

	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 24px;

	background: rgba(255, 255, 255, 0.045);

	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.20);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.hotel-prices-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;

	margin-bottom: 30px;
}

.hotel-prices-label {
	display: inline-block;

	margin-bottom: 8px;

	color: #FF2D75;

	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.hotel-prices-heading h2 {
	margin: 0;

	color: #FFFFFF;

	font-size: clamp(30px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.05;
}

.hotel-prices-heading > p {
	margin: 0;

	color: rgba(255, 255, 255, 0.55);

	font-size: 15px;
}


/* =========================================================
   PRISKORT
========================================================= */

.hotel-price-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.hotel-price-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;

	padding: 22px;

	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;

	background: rgba(11, 22, 51, 0.42);

	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}

.hotel-price-card:hover {
	transform: translateY(-3px);

	border-color: rgba(255, 45, 117, 0.45);
	background: rgba(255, 255, 255, 0.07);
}

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

	width: 48px;
	height: 48px;

	border-radius: 14px;

	background: rgba(255, 45, 117, 0.12);
	color: #FF2D75;

	font-size: 18px;
}

.hotel-room-content h3 {
	margin: 0 0 4px;

	color: #FFFFFF;

	font-size: 18px;
	font-weight: 700;
}

.hotel-room-content p {
	margin: 0;

	color: rgba(255, 255, 255, 0.48);

	font-size: 14px;
}

.hotel-room-price {
	text-align: right;
	white-space: nowrap;
}

.hotel-room-price strong {
	display: block;

	color: #FFFFFF;

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

.hotel-room-price span {
	display: block;

	margin-top: 6px;

	color: rgba(255, 255, 255, 0.48);

	font-size: 13px;
}


/* =========================================================
   PRISMERKNAD
========================================================= */

.hotel-price-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	margin-top: 28px;
	padding-top: 26px;

	border-top: 1px solid rgba(255, 255, 255, 0.09);

	color: rgba(255, 255, 255, 0.62);

	font-size: 15px;
	text-align: center;
}

.hotel-price-note i {
	color: #00E5FF;
}


/* =========================================================
   RESPONSIVT
========================================================= */

@media (max-width: 1199px) {

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

}


@media (max-width: 767px) {

	.hotel-section {
		padding: 55px 0;
	}

	.hotel-info-grid {
		grid-template-columns: 1fr;
		gap: 35px;

		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	.hotel-booking-button {
		max-width: none;
	}

	.hotel-prices {
		padding: 24px 18px;
		border-radius: 20px;
	}

	.hotel-prices-heading {
		display: block;
	}

	.hotel-prices-heading > p {
		margin-top: 10px;
	}

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

	.hotel-price-card {
		grid-template-columns: auto 1fr;
	}

	.hotel-room-price {
		grid-column: 2;
		text-align: left;
	}

	.hotel-room-price strong,
	.hotel-room-price span {
		display: inline;
	}

	.hotel-room-price span {
		margin-left: 4px;
	}

	.hotel-price-note {
		align-items: flex-start;
		text-align: left;
	}

}

/* =========================================================
   HOTELL – FASILITETER
========================================================= */

.hotel-facilities {
	position: relative;
	padding: 40px 0 100px;
}


/* Overskrift */

.hotel-facilities-heading {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.hotel-facilities-label {
	display: block;
	margin-bottom: 10px;

	color: rgba(255, 255, 255, 0.55);

	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.hotel-facilities-heading h2 {
	margin: 0;

	color: #FFFFFF;

	font-size: clamp(38px, 5vw, 58px);
	font-weight: 700;
	line-height: 1.05;
}


/* Kortgrid */

.hotel-facilities-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}


/* Kort */

.hotel-facility-card {
	position: relative;
	overflow: hidden;

	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 22px;

	background: rgba(255, 255, 255, 0.045);

	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.20);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		background 0.25s ease;
}

.hotel-facility-card:hover {
	transform: translateY(-5px);

	border-color: rgba(255, 45, 117, 0.35);
	background: rgba(255, 255, 255, 0.065);
}


/* Bilde */

.hotel-facility-image {
	position: relative;
	overflow: hidden;

	aspect-ratio: 4 / 3;

	background: #14192F;
}

.hotel-facility-image::after {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			to top,
			rgba(20, 25, 47, 0.52),
			transparent 55%
		);

	pointer-events: none;
}

.hotel-facility-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform 0.5s ease;
}

.hotel-facility-card:hover .hotel-facility-image img {
	transform: scale(1.035);
}


/* Ikon over bildet */

.hotel-facility-icon {
	position: absolute;
	left: 22px;
	bottom: 20px;
	z-index: 2;

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

	width: 48px;
	height: 48px;

	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;

	background: rgba(27, 27, 46, 0.82);
	color: #FF2D75;

	font-size: 18px;

	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.25);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}


/* Tekst */

.hotel-facility-content {
	padding: 26px 26px 30px;
}

.hotel-facility-content h3 {
	position: relative;

	margin: 0 0 18px;
	padding-bottom: 15px;

	color: #FFFFFF;

	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.hotel-facility-content h3::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: 0;

	width: 46px;
	height: 3px;

	border-radius: 99px;

	background:
		linear-gradient(
			to right,
			#FF2D75,
			#7A3AFF
		);
}

.hotel-facility-content p {
	margin: 0;

	color: rgba(255, 255, 255, 0.64);

	font-size: 16px;
	line-height: 1.65;
}


/* =========================================================
   RESPONSIVT
========================================================= */

@media (max-width: 991px) {

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

	.hotel-facility-card:last-child {
		grid-column: 1 / -1;
		max-width: calc(50% - 12px);
		justify-self: center;
	}

}


@media (max-width: 767px) {

	.hotel-facilities {
		padding: 30px 0 70px;
	}

	.hotel-facilities-heading {
		margin-bottom: 34px;
	}

	.hotel-facilities-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hotel-facility-card:last-child {
		grid-column: auto;
		max-width: none;
	}

	.hotel-facility-content {
		padding: 23px 22px 26px;
	}

	.hotel-facility-content h3 {
		font-size: 20px;
	}

}
