@charset "utf-8";
/* CSS Document */

/*	--------------------------------------------------------------------------------------------------------  VARIABLES  */

	:root{
	/*	----------------------------------------------------------  SIZES  */
		--full-width: 100%;
		--inner-width: 1360px;

	/*	---------------------------------------------------------  COLORS  */
		--phillys-blue: rgba(63,218,224,1);



		--bg-color-test: rgba(255,0,0,0.1);

	/*	----------------------------------------------------------  FONTS  */
		--climate-crisis: 'Climate Crisis', 'Arial';
		--barlow-condensed: 'Barlow Condensed', 'Arial';

		--thin: 		100;
		--extralight: 	200;
		--light: 		300;
		--regular: 		400;
		--medium: 		500;
		--semibold: 	600;
		--bold: 		700;
		--black: 		800;
		--extrablack: 	900;
	}

/*	-----------------------------------------------------------------------------------------------------------  BASICS  */

	* {
		box-sizing: border-box;
	}

	html, body {
		width: 100%;
		height: auto;
		min-height: 100vh;
		position: relative;

		padding:0;
		margin:0;

		font-family: var(--barlow-condensed), sans-serif;
		font-style: normal;
		font-size: 93.75%;
		color: white;
	}

	html{
		/*	force scrollbars  */
		overflow-y: scroll;
		scroll-behavior: smooth;
	}

	body{
		overflow-x: hidden;
		background-color: black;
	}

/*	---------------------------------------------------------------------------------------------------  GENERIC RESETS  */

	h1, h2, h3, h4, h5, h6, p, td, ul, li, figure, button {
		margin: 0;
		padding: 0;
		font-weight: normal;
		font-style: normal;
		border: 0;
		outline: 0;
		background-color: transparent;
	}


/*	----------------------------------------------------------------------------------------------------------  FLEXBOX  */
	.flx{
		display: flex;
	}

	.flxR{
		display:flex;
		flex-flow:row;
		flex-wrap:nowrap;
	}

	.flxC{
		display:flex;
		flex-flow:column;
		flex-wrap:nowrap;
	}

	.flxJCA	{ justify-content:space-around; }
	.flxJCB	{ justify-content:space-between; }
	.flxJCC	{ justify-content:center; }
	.flxJCE	{ justify-content:flex-end; }
	.flxJCS	{ justify-content:flex-start; }

	.flxAIC	{ align-items:center; }
	.flxAIE	{ align-items:flex-end; }
	.flxAIS	{ align-items:flex-start; }
	.flxWrp	{ flex-wrap:wrap; }


/*	-------------------------------------------------------------------------------------------------------------  GRID  */

	.grd{
		display: grid;
	}



/*	------------------------------------------------------------------------------------------------------------  SIZES  */

	.fllW{
		width:100%;
		height:auto;
	}
	.fllH{
		height:100%;
		width:auto;
	}
	.fllWH{
		width:100%;
		height:100%;
	}

	.innerWidth{
		width:100%;
		max-width: var(--inner-width);
		margin:0 auto;
	}


/*	-------------------------------------------------------------------------------  COMMON CLASSES  */

	h1{
		font-weight: normal;
	}

	h2{
		font-family: var(--climate-crisis), sans-serif;
		font-size: 1.6rem;
		text-transform: uppercase;
		letter-spacing: 0.1rem;

		padding: 0 0 2rem;

		@media screen and (min-width: 666px){
			font-size: 2.2rem;
		}
	}

	h3{
		width: 100%;
		font-family: var(--barlow-condensed), sans-serif;
		font-size: 1.4rem;
		font-weight: var(--semibold);
		font-style: normal;
		text-align: left;
		text-transform: uppercase;
		letter-spacing: 0.1rem;

		padding: 1rem 0;
	}

	p,
	ol,
	ul{
		padding: 0 0 1rem;
		font-size: 1.2rem;
		font-weight: var(--light);

		@media screen and (min-width: 666px){
			font-size: 1.4rem;
		}
	}

	button,
	.khphi_btnLookalike{
		width: fit-content;
		min-width: 200px;
		height: 50px;

		cursor: pointer;

		margin: 0 0 20px;

		font-family: var(--barlow-condensed), sans-serif;
		font-size: 1.35rem;
		font-weight: var(--semibold);
		color: black;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;

		border-radius: 25px;
		background-color: var(--phillys-blue);

		transition: all 0.5s;

		&:hover, &:focus, &:active{
			background-color: white;
		}

	}


/*	---------------------------------------------------------------------------------------  HEADER  */
.khphi_hdrWrp{
	width: 100%;
	min-width: 320px;
	max-width: 550px;
	height: fit-content;

	margin: 50px 0;


	.khphi_hdr{
		width: 100%;

		position: relative;
		padding: 0 60px;

		a{
			display: block;
			color: white;

			&:hover, &:focus, &:active{
				color: var(--phillys-blue);
			}
		}

		.khphi_hdrLogo{
			width: 100%;
			height: auto;
		}

		.khphi_hdrLogoFont{
			display: block;
			position: absolute;
			bottom: 10%;
			left: 58%;

			font-family: var(--climate-crisis), sans-serif;
			font-size: clamp(0.6rem, -0.049rem + 3.043vi, 1.067rem);
			line-height: 1;
			text-transform: uppercase;

		}
	}

}





/*	----------------------------------------------------------------------------------  THE FIXATIV  */
.fixativ{

}





/*	-----------------------------------------------------------------------------------------  MAIN  */
.khphi_mainWrp{
	width: fit-content;
	min-width: 320px;

	height: fit-content;

}
	.khphi_main{
		width: 100%;
		max-width: 900px;

		padding: 0 60px;

		@media screen and (min-width: 666px){
			padding: 0 100px;
		}

		h2{
			width: 100%;
			text-align: center;
		}

		p{
			width: 100%;
		}

		p:last-of-type{
			padding-bottom: 2rem;
		}
	}









/*	---------------------------------------------------------------------------------------  FOOTER  */
.khphi_ftrWrp{
	width: 100%;
	min-width: 320px;
	max-width: var(--full-width);
	min-height:30px;
}
	.khphi_ftr{
		width: 100%;
		max-width: var(--inner-width);

		padding: 50px 25px 20px;

		font-size: 1.2rem;
		font-weight: var(--semibold);

		.khphi_ftrTimes,
		.khphi_ftrAddress{
			width: 100%;

			margin: 0 0 10px;

			font-size: 1rem;

			@media screen and (min-width: 360px){
				font-size: 1.2rem;
			}
			@media screen and (min-width: 666px){
				flex-flow:row nowrap;
			}

			span {
				white-space: nowrap;

				@media screen and (min-width: 666px) {
					&:not(&:last-of-type)::after {
						display: inline-block;
						padding: 0;
						margin: 0 7px 0 3px;
						content: "·";
					}
				}

				& > span:not(&:last-of-type)::after {
					display: inline-block;
					padding: 0;
					margin: 0 5px 0 7px;
					content: "·";
				}
			}
		}
	}



/*	----------------------------------------------------------------------------------  CHECKER STRIPES  */

.khphi_checkerStripe{
	width: 30px;
	height: 100vh;

	position: fixed;
	top: 0;
	left: 0;

	background-color: var(--phillys-blue);

	mask-image: url('../../assets/media/images/phillys_checker_mask.svg');
	mask-size: 100%;
	mask-repeat: repeat-y;

	@media screen and (min-width: 666px){
		width: 72px;
	}

	&.khphi_checkerStripeR{
		left: auto;
		right: 0;
	}

	.khphi_checkerStripeNoise{
		width: 100%;
		height: 100%;

		opacity: 0.15;

		background-image: url('../../assets/media/images/phillys_background_noise_72x180.png');
		background-size: 84px;
		background-repeat: repeat-y;
	}
}


/*	--------------------------------------------------------------------------------------  BACKGROUND  */

.khphi_bg{
	width: 100vw;
	height: 100vh;

	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;

	background-image: url('../../assets/media/images/phillys_background001_1920x1280.jpg');
	background-size: cover;
	background-position: 40% top;
	background-repeat: no-repeat;

	@media screen and (min-width: 666px){
		background-position: center;
	}

	.khphi_bgOverlay{
		width: 100%;
		height: 100%;

		position: absolute;
		top: 0;
		left: 0;

		mix-blend-mode: multiply;

		background-color: rgba(0,0,0,0.666);
	}
}

.impressum .khphi_bgOverlay{
	background-color: rgba(0,0,0,0.9);
}