@import url("./_config.css");
@import url("./cookies.css");

html {
	scroll-padding-top: 100px;
}

.lg-on {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: var(--titleWeight);
}
b,
strong {
	font-weight: var(--boldWeight);
}

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

.btn {
	padding: 1.8em 2.3em;
	background-color: black;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	line-height: 1;
	letter-spacing: 1px;
	white-space: nowrap;
}

.btn:hover {
	background-color: hsl(0 0% 10%);
	color: white;
	box-shadow: -5px 5px 0 var(--primaryDark);
	transform: translateX(5px) translateY(-5px);
	-webkit-transform: translateX(5px) translateY(-5px);
	-moz-transform: translateX(5px) translateY(-5px);
	-ms-transform: translateX(5px) translateY(-5px);
	-o-transform: translateX(5px) translateY(-5px);
}

/*
			N A V B A R
*/

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.affix {
	background-color: hsl(0 0% 100% / 0.5);
	backdrop-filter: blur(3px);
}

.navbar-logo {
	margin: 23.5px 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

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

.navbar-logo-image {
	display: block;
	height: 83px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

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

/*
			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: white;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	display: inline-flex;
	text-decoration: none;
	padding: 10px 30px;
	transition: all 0.2s;
	outline: none;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.affix .navbar-nav > li > a {
	color: black;
}

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

.navbar-nav a::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -300px;
	right: 200px;
	top: 0;
	bottom: 0;
	z-index: -1;

	will-change: transform;
	background-color: black;
	transition: all 0.3s var(--ease);
	-webkit-transition: all 0.3s var(--ease);
	-moz-transition: all 0.3s var(--ease);
	-ms-transition: all 0.3s var(--ease);
	-o-transition: all 0.3s var(--ease);
}

.navbar-nav a:focus::before,
.navbar-nav a:hover::before,
.navbar-nav .nav-active::before {
	left: 10px;
	right: 10px;
	transform: skewX(-10deg);
	-webkit-transform: skewX(-10deg);
	-moz-transform: skewX(-10deg);
	-ms-transform: skewX(-10deg);
	-o-transform: skewX(-10deg);
}

.navbar-nav > li > a:hover,
.navbar-nav .nav-active {
	color: white !important;
}

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

.navbar-nav ul a {
	padding: 10px 15px;
	/* display: flex; */
	display: block;
	font-size: 0.875rem;
	color: white;
	justify-content: space-between;
	text-decoration: none;
	overflow: hidden;
	line-height: 1.3;
	transition: all 0.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 {
	left: 0;
	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 0.3s 1 forwards;
}

.navbar-nav .open .open,
.navbar-nav ul .nav-dropdown:hover > ul {
	display: block;
	animation: showNextDropdown 0.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;
}

.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%, 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%, 0.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
*/

.slogan {
	width: calc(100% * 4 / 12);
}

.slogan h1 {
	font-weight: 300;
	margin-top: 100px;
	margin-bottom: 30px;
	color: white;
}

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

main {
	background: url(/assets/img/bg2.jpg) center top no-repeat;
}

.pl-col {
	padding-left: calc(var(--containerWidth) * 1 / 12);
}
.pr-col {
	padding-right: calc(var(--containerWidth) * 1 / 12);
}
.px-col {
	padding: 0 calc(var(--containerWidth) * 1 / 12);
}

#wieczory .md\:w-6-12:nth-child(odd) {
	padding-bottom: var(--sectionPadding);
}

#wieczory .md\:w-6-12:nth-child(even) {
	padding-top: var(--sectionPadding);
}

#wieczory .card {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

#wieczory .card-body {
	position: absolute;
	right: 0;
	z-index: 20;
	background-color: white;
	padding: 80px 40px;
	width: 60%;
	transition: transform 3s;
	-webkit-transition: transform 3s;
	-moz-transition: transform 3s;
	-ms-transition: transform 3s;
	-o-transition: transform 3s;
}

#wieczory .card:hover .card-body {
	transform: translateX(-20px);
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	-o-transform: translateX(-20px);
}

#wieczory .card .card-image {
	aspect-ratio: 7/9;
	width: 65%;
}

#wieczory .card .card-image img {
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
}



.card-title--link {
	color: black;
	font-weight: normal;
}

.card:hover .card-title--link {
	color: var(--primary);
}

#kroki .content {
	background-color: white;
	padding: 60px;
	width: 40%;
}

#kroki > img {
	aspect-ratio: 3/2;
	height: auto;
	object-fit: cover;
	width: 1320px;
	max-width: 80%;
}

.krok {
	width: 100%;
	flex-wrap: nowrap;
	margin-left: -120px;
}

.krok-icon {
	margin-right: 30px;
	border: 15px solid white;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.krok + .krok {
	margin-top: 30px;
}

.krok > div {
	flex-shrink: 1;
	flex-grow: 1;
}

.krok h4 {
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.krok h4 small {
	display: block;
	margin-bottom: 5px;
}

.krok p {
	font-size: 0.875rem;
	margin: 0;
}

.slider {
	padding-bottom: calc(var(--sectionPadding) / 2);
}

.slider .swiper-pagination-bullet {
	background-color: var(--primary);
}

#info .md\:w-7-12 {
	padding-right: 60px;
}





/*
			F O O T E R
*/

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

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

footer {
	background-color: black;
	padding: 40px 0;
	color: white;
}

footer a {
	color: white;
	text-decoration: none;
	transition: color 0.2s;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-ms-transition: color 0.2s;
	-o-transition: color 0.2s;
}

footer a:hover {
	color: var(--primary);
}

footer ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

footer li {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1;
	flex: 1;
	flex-basis: 16.6666%;
	padding-left: 15px;
	border-left: 1px solid hsl(0 0% 100% / .2);
}

footer li a {
	line-height: 1;
	font-weight: 400;
	font-size: .875rem;
	font-family: var(--font);
}

.copy {
	font-size: 0.875rem;
	letter-spacing: 1px;
}

/*
			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);
	}
}





















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

.sub .mobile-menu-toggler div {background-color: black;}


@media screen and (max-width: 1500px) {

	.navbar-nav > li > a {
		padding: 10px 20px;
	}

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

	.slogan {
		width: calc(100% * 5 / 12);
	}

	.slogan h1 {
		font-size: clamp(1.3rem, var(--h1), 5vw);
	}
}



@media screen and (max-width: 1295px) {
	.navbar-nav > li > a {
		padding: 10px 18px;
		letter-spacing: normal;
	}

	h3.card-title {
		font-size: var(--h4);
	}
}



@media screen and (max-width: 1199px) {
	.navbar-logo-image {
		height: 50px;
	}

	.navbar-nav > li > a {
		padding: 10px 15px;
	}

	.navbar-nav ul a {
		display: block;
	}

	#niezapomniane .md\:w-7-12,
	#niezapomniane .md\:w-3-12 {
		width: 100%;
		max-width: 100%;
		flex-basis: 100%;
	}

	#niezapomniane .md\:w-3-12 {margin-top: 30px;}

	.px-col {
		padding: 0;
	}

	.pl-col {padding-left: 0;}



	#kroki > img.max-w-full {
		height: 600px;
		object-fit: cover;
	}

	#kroki .content {
		padding: 30px;
		width: 45%;
	}

	.krok {
		width: 130%;
	}

	header .simpleParallax img {
		object-position: right;
	}
}


@media screen and (max-width: 1022px) {

	header, main, footer {overflow: hidden;}

	[class*="md:w"]:not([class*="sm:w"]) {
		padding-left: 0;
		padding-right: 0;
	}

	.affix .mobile-menu-toggler div {
		background-color: black;
	}

	header .simpleParallax img {
		width: 100% !important;
		height: auto !important;
	}


	.mobile-nav li a {color: black;}
	.mobile-nav ul li a {color: white;}

	#wieczory .md\:w-6-12:nth-child(2n+1),
	#wieczory .md\:w-6-12:nth-child(2n) {
		padding-top: 30px;
	}

	#info img.max-w-full {margin-top: 30px;}

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


@media screen and (max-width: 799px) {

	#kroki .content {
		padding: 20px;
		width: 55%;
	}

	.krok {
		width: 100%;
		margin-left: -45px;
	}

	.krok-icon {
		margin-right: 15px;
		width: 75px;
	}

}


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

	.slogan {
		width: 70%;
		padding-top: 50px;
	}

	header .container {
		align-items: flex-start;
	}

	.slogan h1 {
		font-size: clamp(1.5rem, var(--h1), 6vw);
	}


	#kroki .absolute {
		position: relative;
		margin-bottom: 50px;
	}

	#kroki .content {
		padding: 0;
		width: 100%;
	}

	.krok {
		width: 100%;
		margin-left: 0;
	}

	#kroki > img.max-w-full {
		height: auto;
		object-fit: cover;
	}

	#kroki p img {
		max-width: 100%;
		height: auto;
	}

	#galeria .swiper-container {
		padding-bottom: 50px;
	}

	#info .md\:w-7-12 {
		padding-right: 0;
	}
}



@media screen and (max-width: 639px) {
	/* header img.h-screen {
		height: 420px;
	} */

	header .absolute {
		background-color: hsl(0 0% 0% / .4);
	}

	/* header .simpleParallax img {
		object-position: -30vw;
	} */
}


@media screen and (max-width: 599px) {
	h1 {font-size: var(--h2)}
	h2 {font-size: var(--h3)}
	h3 {font-size: var(--h4)}
	h4 {font-size: var(--h5)}
	h5 {font-size: var(--h6)}

	h3.card-title {
		font-size: var(--h5);
	}

	#wieczory .card-body {
		padding: 40px 25px;
		width: 70%;
	}

	footer ul {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 15px;
	}

	footer li + li {
		padding-left: 0;
		margin-left: 0;
		border-left: 0;
	}

}


@media screen and (max-width: 438px) {
	header .simpleParallax img {
		transform: none !important;
	}
}


@media screen and (max-width: 400px) {
	.navbar-logo-image {
		height: 45px;
	}

	.btn {
		padding: 1.5em 2em;
	}

	.slogan {
		width: 80%;
		padding-top: 50px;
	}

	h3.card-title {
		font-size: var(--h6);
	}

	#wieczory .card-body {
		padding: 20px;
		width: 70%;
		font-size: .75rem;
	}

	#wieczory .card .card-image {
		aspect-ratio: 2/3;
		width: 85%;
	}
}