/* CSS Document */

/* =========================================================
   KONTAKTPERSONER
========================================================= */

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

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

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


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

.kontakt-heading {
	max-width: 760px;
	margin: 0 auto 55px;

	text-align: center;
}

.kontakt-heading-label {
	display: block;

	margin-bottom: 9px;

	color: #FF2D75;

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

.kontakt-heading h2 {
	margin: 0;

	color: #FFFFFF;

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

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

.kontakt-heading p {
	max-width: 620px;

	margin: 24px auto 0;

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

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


/* =========================================================
   GRID
========================================================= */

.kontakt-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

	gap: 22px;
}


/* =========================================================
   KORT
========================================================= */

.kontakt-card {
	position: relative;

	display: flex;
	flex-direction: column;

	min-width: 0;
	overflow: hidden;

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

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

	box-shadow:
		0 26px 70px rgba(0, 0, 0, .22),
		inset 0 1px 0 rgba(255, 255, 255, .035);

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

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

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

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

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

	box-shadow:
		0 32px 80px rgba(0, 0, 0, .28),
		0 0 32px rgba(255, 45, 117, .07);
}


/* =========================================================
   BILDEOMRÅDE
========================================================= */

.kontakt-image-area {
	position: relative;

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

	height: 300px;
	overflow: hidden;

	background:
		radial-gradient(
			circle at 50% 78%,
			rgba(255, 45, 117, .13),
			transparent 35%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(122, 58, 255, .11),
			transparent 38%
		),
		linear-gradient(
			to bottom,
			rgba(255, 255, 255, .015),
			rgba(20, 25, 47, .15)
		);
}

.kontakt-image-area::after {
	content: "";

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

	height: 38%;

	background:
		linear-gradient(
			to top,
			rgba(27, 27, 46, .84),
			transparent
		);

	pointer-events: none;
}

.kontakt-image-glow {
	position: absolute;
	left: 50%;
	bottom: 14px;

	width: 190px;
	height: 190px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(255, 45, 117, .20),
			rgba(122, 58, 255, .09) 47%,
			transparent 72%
		);

	transform: translateX(-50%);

	filter: blur(5px);
}

.kontakt-image {
	position: relative;
	z-index: 2;

	display: block;

	width: auto;
	max-width: 95%;
	height: 94%;

	object-fit: contain;
	object-position: center bottom;

	filter:
		grayscale(100%)
		drop-shadow(
			0 18px 24px rgba(0, 0, 0, .27)
		);

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

.kontakt-card:hover .kontakt-image {
	transform: scale(1.025);

	filter:
		grayscale(10%)
		drop-shadow(
			0 23px 30px rgba(0, 0, 0, .34)
		);
}


/* Manglende bilde */

.kontakt-image-placeholder {
	position: relative;
	z-index: 2;

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

	width: 120px;
	height: 120px;
	margin-bottom: 40px;

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

	background: rgba(255, 255, 255, .045);
	color: rgba(255, 255, 255, .35);

	font-size: 42px;
}


/* =========================================================
   INNHOLD
========================================================= */

.kontakt-content {
	display: flex;
	flex: 1;
	flex-direction: column;

	padding: 27px 25px 25px;
}

.kontakt-role {
	display: block;

	margin-bottom: 7px;

	color: #FF2D75;

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

.kontakt-content h3 {
	margin: 0 0 23px;

	color: #FFFFFF;

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


/* =========================================================
   KONTAKTDETALJER
========================================================= */

.kontakt-details {
	display: grid;
	gap: 11px;

	margin-bottom: 25px;
}

.kontakt-detail {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 12px;

	padding: 10px;

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

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

	text-decoration: none;

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

.kontakt-detail:hover {
	border-color: rgba(255, 45, 117, .25);
	background: rgba(255, 255, 255, .045);
}

.kontakt-detail-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;

	border-radius: 11px;

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

	font-size: 13px;
}

.kontakt-detail > span:last-child {
	min-width: 0;
}

.kontakt-detail small {
	display: block;

	margin-bottom: 2px;

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

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

.kontakt-detail strong {
	display: block;

	overflow-wrap: anywhere;

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

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


/* =========================================================
   KNAPPER
========================================================= */

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

	margin-top: auto;
}

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

	width: 100%;
	padding: .72rem .85rem;

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


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

.kontakt-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;
}

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

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

.kontakt-empty p {
	margin: 0;
}


/* =========================================================
   MINDRE DESKTOP
========================================================= */

@media (max-width: 1399px) {

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

}


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

@media (max-width: 991px) {

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

}


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

@media (max-width: 767px) {

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

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

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

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

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

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

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

	.kontakt-image-area {
		height: 330px;
	}

	.kontakt-content {
		padding: 24px 21px 22px;
	}

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

	.kontakt-button {
		padding: .82rem 1rem;
	}

}

/* =========================================================
   FELLES KONTAKTKANALER
========================================================= */

.kontakt-kanaler {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;

	margin-top: 25px;
}

.kontakt-kanal {
	display: inline-flex;
	align-items: center;
	gap: 11px;

	min-height: 60px;
	padding: 10px 15px;

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

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

	text-align: left;
	text-decoration: none;

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

.kontakt-kanal:hover {
	transform: translateY(-2px);

	background: rgba(255, 255, 255, .06);
	color: #FFFFFF;
}


/* Ikon */

.kontakt-kanal-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;

	width: 39px;
	height: 39px;

	border-radius: 12px;

	color: #FFFFFF;

	font-size: 15px;
}


/* Tekst */

.kontakt-kanal small {
	display: block;

	margin-bottom: 1px;

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

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

.kontakt-kanal strong {
	display: block;

	color: #FFFFFF;

	font-size: 12px;
	font-weight: 650;
	white-space: nowrap;
}


/* E-post */

.kontakt-kanal-epost {
	border-color: rgba(255, 45, 117, .24);
}

.kontakt-kanal-epost .kontakt-kanal-icon {
	background: #FF2D75;
}

.kontakt-kanal-epost:hover {
	border-color: rgba(255, 45, 117, .48);

	box-shadow:
		0 10px 28px rgba(255, 45, 117, .09);
}


/* Instagram */

.kontakt-kanal-instagram {
	border-color: rgba(255, 45, 117, .20);
}

.kontakt-kanal-instagram .kontakt-kanal-icon {
	background:
		linear-gradient(
			135deg,
			#7A3AFF,
			#FF2D75,
			#FFD200
		);
}

.kontakt-kanal-instagram:hover {
	border-color: rgba(255, 45, 117, .45);

	box-shadow:
		0 10px 28px rgba(255, 45, 117, .08);
}


/* Facebook */

.kontakt-kanal-facebook {
	border-color: rgba(0, 229, 255, .20);
}

.kontakt-kanal-facebook .kontakt-kanal-icon {
	background: #1877F2;
}

.kontakt-kanal-facebook:hover {
	border-color: rgba(0, 229, 255, .42);

	box-shadow:
		0 10px 28px rgba(0, 229, 255, .07);
}


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

@media (max-width: 767px) {

	.kontakt-kanaler {
		display: grid;
		grid-template-columns: 1fr;
		justify-content: stretch;
	}

	.kontakt-kanal {
		width: 100%;
	}

}