:root {
	--primary-color: #313d41;
	--secondary-color: #c9d0d6;
	--danger-color: #C84221;
	--bg-color: rgba(49,61,65,1.00);
/*	--imagefilter-max: grayscale(1) sepia(1) hue-rotate(165deg) blur(2px) brightness(300%);*/
	--imagefilter-max: grayscale(.2) sepia(.1) hue-rotate(10deg) blur(1px) brightness(100%);
	--imagefilter-off: grayscale(0) sepia(0) hue-rotate(0deg) blur(0px) brightness(100%);
	--imagefilter-offBright: grayscale(0) sepia(0) hue-rotate(0deg) blur(0px) brightness(110%);
	--imagefilter-timeFast: .2s;
	--imagefilter-time: .5s;
}


	
	
	
	

html, body{
	background-color: var(--bg-color);
	font-size: 28px;
}

body{
	background-attachment: local;
	min-height: 100dvh;
	background-size: 300%;
	background-position: center;
	height: 100dvh;
	overflow-y: hidden;
}

meny{
	background-color: var(--secondary-color);
	color:var(--primary-color);
	opacity: .98;
}
meny ul li {
	font-weight: 500;
	cursor: pointer;
	transition: all .3s;
}
meny ul li:hover {
	color:black;
}
.speakerButton[togglesound='0'] .speakerOff {fill:var(--secondary-color);}
.speakerButton[togglesound='1'] .speakerOff {fill:transparent;}
.speakerButton[togglesound='0'] .speakerOn {fill:transparent;}
.speakerButton[togglesound='1'] .speakerOn {fill:var(--secondary-color);}	

h1{
	color: var(--secondary-color);
	text-align: center;
}
h2{
	font-size: 1em;
	color: var(--primary-color);
}
section bio{
	margin-top: 4em;
	display: flex;
	flex-direction: column;
}

section bio h2{
	font-size: 1.3em;
}
section bio h2 span{
	font-weight: 300;
	width: 100%;
	display: flex;
	font-size: .7em;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: .4em;
}
p{
margin-block-start: .5em;
margin-block-end: .5em;
line-height: 1.5em;
}
.dialog {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 1rem;
	margin-bottom: 1rem;
}
.role {
	font-weight: bold;
	text-transform: uppercase;
	white-space: nowrap;
	text-align: end;
	font-size: .8em;
	padding-top: .2em;
	color: var(--primary-color);
}
.text {
	white-space: pre-wrap; /* bevarer linjeskift */
}
.role span{
	font-size: .7em;
	font-weight: 300;
	flex-wrap: wrap;
	white-space: normal;
}


.videotrack{
	height: 100%;
	max-height: 90svh;
	position: relative;
	aspect-ratio: 1 / 1;
}

.videotrack video{
	height: 100%;
	width: 100%;
	filter: var(--imagefilter-max);
	transition: all var(--imagefilter-timeFast);
	opacity: .7;
}
.videotrack video.videoplay{
	filter: var(--imagefilter-off);
	opacity: .9;
}







videosection{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--bg-color);
	min-height: 50vh;
	padding: 10vh 0;
}

playknapp{
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	pointer-events: none;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	opacity: 1;
	transition: all .5s;
}

videosection .videotrack.videoplay playknapp{
	opacity: 0;
}
videosection .videotrack.videoplay playknapp svg{
/*	backdrop-filter: blur(0px);*/
}
playknapp svg{
	transition: all .5s;
	background-color: rgba(255,255,255,0.0);
	border-radius: 100px;
	fill:var(--secondary-color);
	color:var(--secondary-color);
}



bildesection{
	padding: 3em 0em;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--bg-color);
/*	min-height: 100vh;*/
}
bildesection bilde {
	width: 100%;
	max-width: 800px;
	transition: all 2s;
	opacity: .4;
	filter: var(--imagefilter-max);
	transform: scale(1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
bildesection img{
    max-height: 80vh;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}
bildesection.fully-visible bilde {
	transition: all var(--imagefilter-time);
	opacity: .9;
	filter: var(--imagefilter-off);
	transform: scale(1.02);
}

.kredliste{
	color: var(--secondary-color);
	border-spacing: 10px 10px; /* 20px horisontalt, 0px vertikalt */
	width: 100%;
}

.kredliste .kredKey{
	text-align: right;
	color: var(--secondary-color);
	font-size: .85em;
	text-transform: uppercase;
	font-weight: 300;
	vertical-align: top;
	padding-top: .25em;
	text-wrap: balance;
/*	text-wrap: auto;*/
/*
	hyphens: auto;
	-webkit-hyphens: auto; 
    -ms-hyphens: auto;    
*/
}


.kredliste .kredValue{
	vertical-align: top;
	hyphens: auto;
	width: 60%;
	text-wrap: balance;
/*	text-wrap: auto;*/
/*
	hyphens: auto;
	-webkit-hyphens: auto; 
    -ms-hyphens: auto;    
*/

}
#turneliste{
	margin: 0;
	padding: 0;	
}
#turneliste li{
	margin: 0;
	padding: .25em 0;
	list-style: none;
}
#turneliste p{
	margin: 0;
	padding: 0;
}
#turneliste p.Billettlinje2{
	font-size: .85em;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 300;

}
#turneliste p .sted{
	font-weight: 700;
	text-transform: uppercase;
}
img.frimerke{
	transition: all var(--imagefilter-time);
	width: 20%;
	min-width: 130px;
	height: auto;
	float: left;
	margin-right: 1em;
	margin-top: .35em;
	transform: scale(.95);
	opacity: .5;
	filter: var(--imagefilter-max);
	border-radius: .3em;
}

img.frimerke.dobbel{
	width: 100%;
	margin-top: 0;
	margin-bottom: 1em;
}

img.fully-visible{
	opacity: .9;
	transform: scale(1);
	filter: var(--imagefilter-off); 
}

img.frimerke.full{
	transition: all var(--imagefilter-time);
	transform: scale(1);
	width: 100%;
	min-width: auto;
	margin: 1em 0;
}


img.frimerke.full.fully-visible{
	filter: var(--imagefilter-off);
}

lesmer{
	display: block;
	overflow-y: hidden;
	height: 15em;
	-webkit-mask-image: -webkit-linear-gradient(#000 0%, transparent 100%);
	mask-image: -o-linear-gradient(#000 0%, transparent 100%);
	mask-image: linear-gradient(#000 0%, transparent 100%);
	mask-repeat: no-repeat;
	transition: mask-image .4s, -webkit-mask-image .4s;
}
lesmer.exp{
	-webkit-mask-image: -webkit-linear-gradient(#000 100%, transparent 100%);
	mask-image: -o-linear-gradient(#000 100%, transparent 100%);
	mask-image: linear-gradient(#000 100%, transparent 100%);
}

section inner {
	display: flex;
	flex-direction: column;
	
}

button.lesmer{
	padding: 1em 2em;
	color:var(--primary-color);
	border: 1px solid var(--primary-color);
	background-color: transparent;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-content: center;
	border-radius: .5em;
	cursor: pointer;
	transition: border .3s;
	margin-top: 2em;
}
button.lesmer:hover{
	border: 1px solid black;
}

button.lesmer span{
	transition: all .3s;
	font-size: 2em;
	color:var(--primary-color);
	margin-right: .25em;
}
button.lesmer:hover span{
	color:darkred;
}
button.lesmer p{
	transition: all .3s;
	font-size: 1.5em;
	margin: 0;
	padding: 0;
	padding-top: .15em;
}
button.lesmer:hover p{
	color:black;
}
hamburger {
    width: 50px;
    height: 50px;
    padding: 15px;
	fill:var(--secondary-color);
	mix-blend-mode:normal;
}
.speakerButton{
	opacity: 1;
}

.whitebox {
  background: linear-gradient(
    to bottom,
    transparent 0px,      /* 0–10px: fade inn */
    white 6em,           /* 10px → fullt synlig */
    white calc(100% - 6em), /* helt synlig ned til 10px fra bunnen */
    transparent 100%      /* siste 10px: fade ut */
  );
}



bildegalleri {
	display: flex;
	width: 100%;
	justify-content: center;
}
bildegalleri inner{
	display: grid;
	width: 100%;
	padding: 0 0;
	box-sizing: border-box;
	max-width: 600px;
	grid-template-columns: repeat(auto-fill, 180px);
	justify-content: center;
	gap: 10px;
}


bildegalleri .bilde{
	transition: all var(--imagefilter-time);
	transform: scale(.95);
	opacity: .5;
	filter: var(--imagefilter-max);
	border-radius: .3em;
	width: 180px;
	height: 180px;
}
bildegalleri .fully-visible.bilde{
	transform: scale(1);
	opacity: .9;
	filter: var(--imagefilter-off);
	border-radius: .3em;

}
bildegalleri bilde img{
	border-radius: .15em;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
bildegalleri .fully-visible.bilde:hover{
	cursor: pointer;
	transition: all var(--imagefilter-time);
	opacity: 1;
	filter: var(--imagefilter-offBright);
	border-radius: .3em;
}

bigimage{
	position: fixed;
	height: 100vh;
	width: 100vw;
	z-index: 200000;
	background-color: hsla(35, 45.45%, 11.69%, .8);
		backdrop-filter: blur(10px);
}
bigimage n1{
	height: 100%;
	width: 100%;
}

bigimage img{
	width: 100%;
	height: auto;
}

footer{
	display: flex;
	height: 300px;
	width: 300px;
	justify-content: center;
	margin-bottom: 3em;
}
footer kred{
	line-height: 1.3em;
}
.footer inner{
	width: 100%;
	padding: 0 2em;
	box-sizing: border-box;
	max-width: 600px;
	justify-content: center;
	align-items: center;
}


.footer footer logo{
	width: 50%;
	margin-bottom: 2em;
	justify-content: center;
	align-items: center;
	display: flex;
	min-width: 150px;
	max-width: 300px;
}


.bildetekst-container{
	margin-top: .33em;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: .8
}

.bildetekst-container .bildetittel{
	font-weight: 900;
	letter-spacing: .05em;
	margin-right: .3em;
	display: inline-block;
}
.bildetekst-container .bildetittel:after{
	content: ":";
}
.bildetekst-container .bildetekst{
	font-size: .8em;
	width: 100%;
	max-width: calc(100vw - 4em);
	text-align: center;
	text-wrap: balance;
	font-style: italic;
}
.bildetekst-container .fotobyline{
	font-size: .6em;
}




#file_004_kraaker{
	padding-bottom: 2em;
}
#file_005_video_kraaker .videotrack video{
	height: auto;
}
#file_005_video_kraaker .videotrack{
	aspect-ratio: auto;
}
#file_005_video_kraaker{
	padding-top: 0;
}



#turneliste{
	color:var(--secondary-color);
}
#turneliste li {
	margin: 0;padding:0;
	text-align: center;
	display: flex;
	flex-direction: column;
}

#turneliste li span{
	font-weight: 700;
	color: white;
	font-size: .75em;
	display: block;
	margin-top: 1em;
	text-transform: uppercase;
}


#roller{
	margin: 0;
	padding: 0;
	color: var(--secondary-color);
}
#roller li {
	text-align: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: center;
	align-items: center;
	padding-bottom: .5em;

}

#roller li rolle{
	font-weight: 900;
	text-transform: uppercase;
	color: white;
}

#roller li navn{
	font-size: .7em;
	text-wrap: balance;
	
}

#tilbakemelding-respons{
	margin-top: 0.5em;
	text-align: center;
	color: rgb(216, 230, 240);
	font-weight: 700;
	font-size: 1.5em;
}
.noselect {
  -webkit-user-select: none; /* Safari */
  user-select: none; /* Non-prefixed version, 
                        currently supported by all other modern browsers */
	cursor: default;
}