/* CSS Document */

/* =========================================================
   HALLER
========================================================= */

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

.haller-container {
	width: 100%;
	max-width: 1540px;

	margin: 0 auto;
	padding: 0 24px;
}


/* =========================================================
   OVERSKRIFT
========================================================= */

.haller-heading {
	max-width: 790px;
	margin: 0 auto 55px;

	text-align: center;
}

.haller-heading-label {
	display: block;

	margin-bottom: 9px;

	color: #FF2D75;

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

.haller-heading h2 {
	margin: 0;

	color: #FFFFFF;

	font-size: clamp(40px, 5vw, 62px);
	font-weight: 800;
	line-height: 1.05;
}

.haller-heading .pinkline {
	margin-left: auto;
	margin-right: auto;
}

.haller-heading p {
	max-width: 670px;
	margin: 24px auto 0;

	color: rgba(255, 255, 255, .60);

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


/* =========================================================
   OVERSIKTSKART
========================================================= */

.haller-overview {
	display: grid;
	grid-template-columns: minmax(300px, .72fr) minmax(0, 1.55fr);

	overflow: hidden;

	margin-bottom: 75px;

	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 26px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 45, 117, .04),
			rgba(122, 58, 255, .025),
			rgba(0, 229, 255, .018)
		),
		rgba(255, 255, 255, .04);

	box-shadow:
		0 30px 80px rgba(0, 0, 0, .24),
		inset 0 1px 0 rgba(255, 255, 255, .035);

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

.haller-overview-content {
	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 42px;
}

.haller-overview-label {
	display: block;

	margin-bottom: 10px;

	color: #FF2D75;

	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .11em;
}

.haller-overview-content h3 {
	margin: 0 0 17px;

	color: #FFFFFF;

	font-size: clamp(28px, 4vw, 43px);
	font-weight: 800;
	line-height: 1.08;
}

.haller-overview-content p {
	margin: 0;

	color: rgba(255, 255, 255, .61);

	font-size: 15px;
	line-height: 1.7;
}

.haller-overview-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;

	margin-top: 29px;
}

.haller-overview-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
}


/* Bilde */

.haller-overview-image {
	position: relative;
	overflow: hidden;

	min-height: 470px;

	background: #14192F;
}

.haller-overview-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition:
		transform .55s ease,
		filter .55s ease;
}

.haller-overview:hover .haller-overview-image img {
	transform: scale(1.015);
	filter: brightness(1.04);
}

.haller-overview-image-overlay {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			to right,
			rgba(27, 27, 46, .42),
			transparent 30%
		);

	pointer-events: none;
}

.haller-map-button {
	position: absolute;
	right: 19px;
	bottom: 18px;
	z-index: 2;

	display: inline-flex;
	align-items: center;
	gap: 8px;

	padding: 10px 14px;

	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 999px;

	background: rgba(27, 27, 46, .78);
	color: #FFFFFF;

	font-size: 11px;
	font-weight: 700;
	text-decoration: none;

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

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

.haller-map-button:hover {
	transform: translateY(-2px);

	border-color: rgba(255, 45, 117, .45);
	background: rgba(255, 45, 117, .82);
	color: #FFFFFF;
}


/* =========================================================
   LISTEOVERSKRIFT
========================================================= */

.haller-list-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 35px;

	margin-bottom: 35px;

	scroll-margin-top: 115px;
}

.haller-list-heading span {
	display: block;

	margin-bottom: 7px;

	color: #FF2D75;

	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .11em;
}

.haller-list-heading h3 {
	margin: 0;

	color: #FFFFFF;

	font-size: clamp(31px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.08;
}

.haller-list-heading > p {
	max-width: 440px;
	margin: 0;

	color: rgba(255, 255, 255, .52);

	font-size: 14px;
	line-height: 1.6;
}


/* =========================================================
   HALLGRID
========================================================= */

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


/* =========================================================
   HALLKORT
========================================================= */

.hall-card {
	display: flex;
	flex-direction: column;

	min-width: 0;
	overflow: hidden;

	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 23px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 45, 117, .025),
			rgba(122, 58, 255, .025),
			rgba(0, 229, 255, .015)
		),
		rgba(255, 255, 255, .04);

	box-shadow:
		0 25px 68px rgba(0, 0, 0, .20),
		inset 0 1px 0 rgba(255, 255, 255, .035);

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

	transition:
		transform .26s ease,
		border-color .26s ease,
		background .26s ease,
		box-shadow .26s ease;
}

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

	border-color: rgba(255, 45, 117, .34);

	background:
		linear-gradient(
			145deg,
			rgba(255, 45, 117, .05),
			rgba(122, 58, 255, .035),
			rgba(0, 229, 255, .022)
		),
		rgba(255, 255, 255, .055);

	box-shadow:
		0 32px 78px rgba(0, 0, 0, .27),
		0 0 30px rgba(255, 45, 117, .065);
}


/* =========================================================
   HALLBILDE
========================================================= */

.hall-card-image {
	position: relative;
	overflow: hidden;

	aspect-ratio: 16 / 10;

	background: #14192F;
}

.hall-card-image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition:
		transform .5s ease,
		filter .5s ease;
}

.hall-card:hover .hall-card-image img {
	transform: scale(1.035);
	filter: brightness(1.05);
}

.hall-card-image-overlay {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			to top,
			rgba(20, 25, 47, .70),
			transparent 62%
		);

	pointer-events: none;
}

.hall-card-image-icon {
	position: absolute;
	left: 20px;
	bottom: 18px;
	z-index: 2;

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

	width: 45px;
	height: 45px;

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

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

	font-size: 16px;

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

.hall-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	color: rgba(255, 255, 255, .24);

	font-size: 52px;
}


/* =========================================================
   HALLINNHOLD
========================================================= */

.hall-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;

	padding: 26px 24px 24px;
}

.hall-card-label {
	display: block;

	margin-bottom: 6px;

	color: #FF2D75;

	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .11em;
}

.hall-card-content h3 {
	margin: 0 0 17px;

	color: #FFFFFF;

	font-size: 25px;
	font-weight: 750;
	line-height: 1.18;
}

.hall-card-info {
	margin-bottom: 22px;

	color: rgba(255, 255, 255, .61);

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


/* =========================================================
   HALLKONTAKT
========================================================= */

.hall-card-contact {
	display: grid;
	gap: 9px;

	margin-bottom: 23px;
}

.hall-card-contact a {
	display: grid;
	grid-template-columns: 37px minmax(0, 1fr);
	align-items: center;
	gap: 11px;

	padding: 9px;

	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 12px;

	background: rgba(255, 255, 255, .024);

	text-decoration: none;

	transition:
		border-color .2s ease,
		background .2s ease;
}

.hall-card-contact a:hover {
	border-color: rgba(255, 45, 117, .25);
	background: rgba(255, 255, 255, .045);
}

.hall-contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 37px;
	height: 37px;

	border-radius: 10px;

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

	font-size: 12px;
}

.hall-card-contact small {
	display: block;

	margin-bottom: 1px;

	color: rgba(255, 255, 255, .37);

	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .075em;
}

.hall-card-contact strong {
	display: block;

	overflow-wrap: anywhere;

	color: rgba(255, 255, 255, .78);

	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}


/* =========================================================
   HALLKNAPPER
========================================================= */

.hall-card-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;

	margin-top: auto;
}

.hall-card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	width: 100%;
	padding: .74rem .8rem;

	font-size: 10px;
	white-space: nowrap;
}


/* =========================================================
   PARKERING CTA
========================================================= */

.haller-parking-cta {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;

	margin-top: 70px;
	padding: 27px 30px;

	border: 1px solid rgba(255, 45, 117, .22);
	border-radius: 21px;

	background:
		linear-gradient(
			135deg,
			rgba(255, 45, 117, .075),
			rgba(122, 58, 255, .045),
			rgba(0, 229, 255, .025)
		),
		rgba(255, 255, 255, .035);

	box-shadow:
		0 22px 58px rgba(0, 0, 0, .18);
}

.haller-parking-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 56px;
	height: 56px;

	border-radius: 16px;

	background: #FF2D75;
	color: #FFFFFF;

	font-size: 22px;
}

.haller-parking-text span {
	display: block;

	margin-bottom: 4px;

	color: #FF5A93;

	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .10em;
}

.haller-parking-text h3 {
	margin: 0 0 5px;

	color: #FFFFFF;

	font-size: 22px;
	font-weight: 750;
}

.haller-parking-text p {
	margin: 0;

	color: rgba(255, 255, 255, .55);

	font-size: 13px;
	line-height: 1.55;
}

.haller-parking-cta .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;

	white-space: nowrap;
}


/* =========================================================
   TOMT RESULTAT
========================================================= */

.haller-empty {
	grid-column: 1 / -1;

	padding: 55px 30px;

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

	background: rgba(255, 255, 255, .04);
	color: rgba(255, 255, 255, .55);

	text-align: center;
}

.haller-empty i {
	margin-bottom: 13px;

	color: #FF2D75;
	font-size: 29px;
}

.haller-empty p {
	margin: 0;
}


/* =========================================================
   NETTBRETT
========================================================= */

@media (max-width: 1199px) {

	.haller-overview {
		grid-template-columns: 1fr;
	}

	.haller-overview-image {
		min-height: 430px;
	}

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

}


/* =========================================================
   MOBIL
========================================================= */

@media (max-width: 767px) {

	.haller-section {
		padding: 55px 0 75px;
	}

	.haller-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.haller-heading {
		margin-bottom: 38px;
		text-align: left;
	}

	.haller-heading .pinkline {
		margin-left: 0;
		margin-right: 0;
	}

	.haller-heading p {
		margin-left: 0;
		margin-right: 0;
	}

	.haller-overview {
		margin-bottom: 55px;
		border-radius: 20px;
	}

	.haller-overview-content {
		padding: 27px 22px;
	}

	.haller-overview-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.haller-overview-actions .btn {
		width: 100%;
	}

	.haller-overview-image {
		min-height: 285px;
	}

	.haller-map-button {
		right: 13px;
		bottom: 13px;
	}

	.haller-list-heading {
		display: block;
	}

	.haller-list-heading > p {
		margin-top: 13px;
	}

	.haller-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.hall-card {
		border-radius: 20px;
	}

	.hall-card-content {
		padding: 23px 20px 21px;
	}

	.hall-card-actions {
		grid-template-columns: 1fr;
	}

	.hall-card-button {
		padding: .82rem 1rem;
	}

	.haller-parking-cta {
		grid-template-columns: 1fr;

		padding: 24px 21px;
	}

	.haller-parking-cta .btn {
		width: 100%;
	}

}