@import url('./_config.css');

h1, h2, h3, h4, h5, h6 {
	font-weight: var(--titleWeight);
	font-weight: bold;
	color: var(--titleColor);
	line-height: 1;
	margin: 30px 0 20px;
}
b, strong {font-weight: var(--boldWeight)}

.container {
	max-width: 90%;
	width: var(--containerWidth);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5 {
	color: white;
}




/*
			N A V B A R
*/

.navbar {
	background: linear-gradient(black 70%, transparent);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: all .3s;
}

.affix {
	background: linear-gradient(black 100%, transparent);
}

.navbar-logo {
	margin: 20px 0;
	transition: all .3s;
}

.affix .navbar-logo {
	margin: 5px 0;
}

.navbar-logo-image {
	display: block;
	height: 50.3px;
	transition: all .3s;
}

.affix .navbar-logo-image {height: 30px;}




/*
			N A V B A R   N A V
*/

.navbar-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.navbar-nav li {
	list-style: none;
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

.navbar-nav > li:not(:first-child) {
	padding-left: var(--navMargin);
}

.navbar-nav a {
	will-change: auto;
}

.navbar-nav > li > a {
	color: hsl(0, 0%, 100%);
	font-size: 0.875rem;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-flex;
	text-decoration: none;
	padding: 10px 0;
	transition: all .2s;
	outline: none;
	position: relative;
	overflow: hidden;
}

.nav-dropdown > a::after {
	filter: invert(1);
}


.navbar-nav a::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: -101%;
	width: 100%;
	height: 2px;
	will-change: transform;
	background-color: white;
	transition: all .2s var(--ease);
}


.navbar-nav a:focus::before,
.navbar-nav a:hover::before,
.navbar-nav .nav-active::before {
	left: 0;
}

.navbar-nav .nav-active {
	color: white;
}

.navbar-nav ul {
	position: absolute;
	display: none;
	top: 100%;
	left: var(--navMargin);
	margin: 0;
	padding: 10px;
	min-width: 250px;
	background-color: white;
	box-shadow: 0 10px 30px hsla(0, 0%, 0%, .2);
}

.navbar-nav > li:first-child > ul {
	left: 0;
}

.navbar-nav ul a {
	padding: 10px 15px;
	display: flex;
	font-size: 0.875rem;
	color: var(--textColor);
	justify-content: space-between;
	text-decoration: none;
	overflow: hidden;
	transition: all .3s var(--ease);
}

.navbar-nav ul a::after {
	transform: rotate(-90deg);
}

.navbar-nav ul a::before {
	content: '>';
	font-family: monospace;
	font-weight: bold;
	font-size: 1rem;
	width: auto;
	height: auto;
	display: block;
	transform: translateX(0) !important;
	visibility: visible;
	background: none;
	position: absolute;
	top: 8px;
	left: 0;
	opacity: 0;
	color: var(--primary);
}

.navbar-nav ul a:hover::before {
	transform: translateX(10px) !important;
	opacity: 1;
}
.navbar-nav ul a:hover {
	padding-left: 25px;
	padding-right: 5px;
}

.navbar-nav ul .active > a,
.navbar-nav ul a.active {
	color: var(--primary);
}

.navbar-nav > li > .open,
.navbar-nav .nav-dropdown:hover > ul {
	display: block;
	animation: showDropdown .3s 1 forwards;
}

.navbar-nav .open .open,
.navbar-nav ul .nav-dropdown:hover > ul {
	display: block;
	animation: showNextDropdown .3s 1 forwards;
}

.navbar-nav ul ul {
	top: 0; left: 100%;
}


/* mobile menu */

.mobile-menu-toggler {
	width: 32px;
	height: 24px;
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	background: none;
	transition: all var(--fastSpeed) var(--easeOutBack);
	outline: none;
}

.mobile-menu-toggler div {
	display: block;
	height: 2px;
	width: 32px;
	background-color: white;
	transition: all var(--fastSpeed) var(--easeOutBack);
	transform-origin: right;
	box-shadow: 0 0 5px hsl(0, 0%, 100%, .8);
}

.mobile-menu-toggler div:last-child {
	width: 70%;
}

.mobile-menu-toggler.active-toggler div:first-of-type {
	transform: rotate(-45deg);
}

.mobile-menu-toggler.active-toggler div:last-child {
	transform: rotate(45deg);
	width: 100%;
}

.mobile-menu-toggler.active-toggler div:nth-of-type(2) {
	display: none;
}

.mobile-nav {
	transition: transform var(--fastSpeed) var(--easeOutQuart);
	transform: translateX(-100%);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	max-width: 80vw;
	width: 300px;
	/* background-color: hsla(0, 0%, 0%, 0.8);
	backdrop-filter: blur(10px); */
	background-color: var(--primary);
	margin: 0;
	padding: 0;
	z-index: 99999;
	overflow-y: auto;
}

.mobile-nav.show {
	transform: translateX(0);
}

.mobile-nav ul,
.mobile-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav ul {
	background-color: hsla(0, 0%, 0%, .3);
}

.mobile-nav a {
	display: block;
	font-size: 1rem;
	text-decoration: none;
	font-weight: 700;
	color: white;
	box-sizing: border-box;
	padding: 10px 15px;
	border-bottom: 1px solid hsla(0, 0%, 100%, .2);
}

.mobile-nav ul a {
	font-size: 0.875rem;
	font-weight: normal;
	padding-left: 30px;
}

.mobile-nav ul ul a {
	padding-left: 45px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
	color: var(--primary);
	background-color: #fff;
}







/*
			H E A D E R
*/

.header-top {
	background-color:hsl(0, 0%, 0%, .5);
}

.slogan h1 {
	margin-top: 0;
	font-size: 3.75rem;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.slogan h2 {
	font-size: var(--h3);
	font-weight: normal;
	letter-spacing: .2em;
}

.lead {
	line-height: 1.4;
}

.sub .lead {
	line-height: var(--lineHeight);
}






/*
			M A I N   S E C T I O N S
*/

section {
	overflow: hidden;
	width: 100%;
}

.btn {
	padding: 1.8em 3em;
	font-size: 0.75rem;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#rgb .image-glow {
	position: relative;
}



#rgb .image-glow::before {
    top: 9%;
    left: 13%;
    width: 74%;
    height: 57%;
    z-index: -1;
}

#rgb .image-glow::after {
    top: -10%;
    left: -5%;
    width: 108%;
    height: 97%;
	border-radius: 45%;
	opacity: .7;
	box-shadow: inset 0 0 100px white, inset 0 0 95px white, inset  0 0 90px white, inset 0 0 85px white, inset 0 0 100px white, inset 0 0 95px white, inset  0 0 90px white, inset 0 0 85px white;
    z-index: -2;
}


#rgb .image-glow::before,
#rgb .image-glow::after {
	content: '';
    display: block;
    position: absolute;
	background-size: 400% 400% !important;
	background-position: 0% 0%;
	animation: rgbgradient 15s ease infinite;
    background: linear-gradient( #a01ef7, #f842bb, #34bff1, #ebd03a, #2afdbe);
}



#lightground {
	background-color: black;
}

#lightground .image-glow {
	position: relative;
}

#lightground .image-glow img {
	filter: drop-shadow(0 0 50px hsl(0, 0%, 100%, .8));
}

/* #lightground .image-glow::after {
	content: '';
	display: block;
	position: absolute;
	top: 	-200px;
	left: 	-200px;
	right: 	-200px;
	bottom: -200px;
	z-index: -1;
	border-radius: 50%;
	background: radial-gradient(white, transparent 40%, transparent 70%);
} */

#foil {
	background: var(--bgLight);
}

mark {
	background-color: var(--secondary);
	font-weight: bold;
}


.gallery.grid {
	gap: 10px;
}

.gallery a {
	overflow: hidden;
	width: 100%;
}

.gallery img {
	display: block;
	width: 100%;
	transition: all var(--normalSpeed) var(--ease);
}

.gallery a:hover img {
	transform: scale(1.1);
}

.movies.grid {
	gap: 10px;
	margin-top: 10px;
}

#gdzie {
	background: linear-gradient(var(--bgLight), #ffffff 30%);
}

#gdzie a small {
	font-size: 0.625rem;
	font-weight: bold;
	color: black;
}


form {
	width: 100%;
}

fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

label {
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 1.125rem;
}

label p {
	margin: 0;
}

input,select,textarea {
	width: 100%;
	color: white;
	box-sizing: border-box;
	padding: .8rem 1rem;
	border: 1px solid hsl(0, 0%, 100%, .2);
	background-color: transparent;
}

[type="checkbox"],
[type="radio"] {
	width: auto;
	flex-shrink: 0;
}

label p,
label li {
	font-size: 0.875rem;
	line-height: 1.3;
}

label li {
	margin: .5em 0 0 0;
	list-style: disc !important;
}

label li::marker {
	color: white !important;
}

label ul {
	margin: 0;
	padding: 0;
}

label a {
	opacity: .6;
}

label a:hover {
	opacity: 1 !important;
	text-decoration: underline !important;
}

textarea {
	height: 14.8rem;
}

.ok {
	border-color: var(--borderColor);
}

.error {
	border-color: red;
}

.error-msg {
	color: red;
	font-size: 1rem;
	margin-top: 5px;
}

.star {
	color: red;
	font-family: sans-serif;
}

#alert {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.5rem 1rem;
	color: white;
	font-weight: bold;
}

#alert.success {
	background-color: rgb(0, 133, 22);
}


#alert.danger {
	background-color: rgb(165, 0, 0);
}

label p,
label li,
label a {
	color: white;
}

label li {
	list-style: disc;
}

label a {
	text-decoration: underline;
}


/*
			F O O T E R
*/

.madeby {
	color: white;
	text-decoration: none;
	line-height: 1;
	display: inline-block;
}

.madeby small {
	float: left;
	margin: 4px 4px 0 0;
	font-size: 0.6875rem;
}


footer {
	background-color: #000;
	overflow: hidden;
	width: 100%;
	/* background: black url(/assets/img/footerbg.png) center bottom no-repeat; */
	color: white;
	position: relative;
	mix-blend-mode: darken;
}

footer::after {
	content: '';
	display: block;
	width: 70%;
	aspect-ratio: 1/1;
	background: url(/assets/img/neon.jpg) center no-repeat;
	z-index: -1;

	position: absolute;
	bottom: -70%;
	left: 15%;
	animation: turn360 30s linear infinite forwards;
}

@keyframes turn360 {
	0% {transform: rotate(0);}
	100% {transform: rotate(360deg);}
}

footer h5 {
	margin-bottom: 0;
}

footer a {
	color: white;
	text-decoration: none;
	transition: opacity .2s;
}

footer a:hover {
	opacity: .7;
}


#lightground li::marker {
	color: white;
}

.shop-widget {
	position: fixed;
	top: 150px;
	right: 0;
	z-index: 200;
}




/*
			K E Y F R A M E S
*/

@keyframes showDropdown {
	0% {opacity: 0; transform: translateY(-10px);}
	100% {opacity: 1; transform: translateY(0);}
}

@keyframes showNextDropdown {
	0% {opacity: 0; transform: translateX(-10px);}
	100% {opacity: 1; transform: translateX(0);}
}

@keyframes rgbgradient {
	0% 		{background-position: 0% 0%  }
	15% 	{background-position: 0% 25% }
	25% 	{background-position: 0% 50% }
	50% 	{background-position: 0% 75% }
	75% 	{background-position: 0% 50% }
	85% 	{background-position: 0% 25% }
	100% 	{background-position: 0% 0%  }
}








/*
			M E D I A
			Q U E R I E S
*/


@media screen and (max-width: 1199px) {
	.navbar-nav > li:not(:first-child) {
		padding-left: 25px;
	}

	.navbar-logo-image {height: 40px;}

	.navbar-nav > li > a {font-size: 0.75rem;}

}


@media screen and (max-width: 1380px) {
	:root {
		--sectionPadding: 75px !important
	}
}


@media screen and (max-width: 1000px) {
	:root {
		--sectionPadding: 50px !important
	}

	.sm\:w-6-12 {margin-bottom: 50px;}

	.text-center.pb-sp p {
		margin-bottom: 0;
	}

	p:first-of-type {margin-top: 0;}
	p:last-of-type {margin-bottom: 0;}

	#rgb .md\:w-8-12 img {
		/* margin-top: -66px; */
		margin-left: 0;
		max-width: 100%;
	}

	section .mt-70 {
		margin-top: 25px;
	}

	section .mt-70 .w-full {
		margin-bottom: 25px;
		margin-top: 25px;
	}

	#lightground .md\:w-8-12 img {
		/* margin: -125px 0 0 0; */
		max-width: 100%;
	}

	.pb-sp.text-center, .pb-hsp.text-center {
		text-align: left;
	}

	#xxl .md\:w-8-12 img {
		/* margin: -55px 0 0 0; */
		max-width: 108%;
	}

	/* #foil {
		background: var(--bgLight) url(/assets/img/folia.png) center bottom 50px no-repeat;
		padding-bottom: 600px;
	} */

	footer form {margin-top: 50px;}

	#xxl .image-glow.ml-100 {margin-left: 0;}
}




@media screen and (max-width: 720px) {
	.slogan h1 {
		font-size: 3rem;
	}

	.slogan h2 {font-size: var(--h4);}

	#foil {
		padding-bottom: 63vw;
		background-size: auto 45vw;
	}

	footer {
		background-size: 95vw auto;
	}

	body {
		text-align: center !important;
	}

	.pb-sp.text-center, .pb-hsp.text-center {
		text-align: center;
	}

	#gdzie .w-full {
		margin-bottom: 30px;
	}

	.w-full {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	label {
		text-align: left;
	}
}


@media screen and (max-width: 580px) {
	.slogan h1 {
		letter-spacing: 2px;
		font-size: 2.8rem;
	}

	.slogan h2 {
		letter-spacing: .1em;
	}

	footer {
		padding-bottom: 100px;
	}

	footer .last {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.madeby {
		margin-top: 30px;
	}
}


@media screen and (max-width: 414px) {
	h2, .h2 {font-size: var(--h3);}
	h3, .h3 {font-size: var(--h4);}
	h4, .h4 {font-size: var(--h5);}
	h5, .h5 {font-size: var(--h6);}

	.slogan h1 {
		font-size: 2.5rem;
	}

	.slogan h2 {
		font-size: var(--h5);
	}

	.slogan p {
		font-size: 1rem;
	}

	#xxl .md\:w-8-12 img {
		/* margin: -15px 0 0 -44px; */
		max-width: 118%;
	}


	footer form .flex-nowrap.justify-between {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-end;
	}

	form .flex.col.pr-30 {padding-right: 0; margin-bottom: 15px;}
}


@media screen and (max-width: 400px) {
	.slogan h1 {
		font-size: 2.1rem;
	}

	.slogan h2 {
		font-size: 1.3rem;
		letter-spacing: 1px;
	}
}