@charset "UTF-8";

:root,
[data-bs-theme=light] {
	--font: 'Work Sans', system-ui, sans-serif;
	--font-title: 'Krona One', system-ui, sans-serif;

	--primary-color: hsl(146 53% 56%);
	--primary-color-light: hsl(146 53% 66%);
	--primary-color-dark: hsl(146 53% 46%);

	--secondary-color: hsl(193 100% 41%);
	--secondary-color-light: hsl(193 100% 51%);
	--secondary-color-dark: hsl(193 100% 31%);

	--gradient-1: var(--primary-color);
	--gradient-2: var(--secondary-color);

	--xxl: 7.5rem;
	--xl: calc(var(--xxl) / 2);

	--bs-primary: var(--primary-color);
	--bs-primary-rgb: 83, 202, 135;

	--bs-light: hsl(0 0% 100% / .15);
	--bs-light-rgb: 38, 38, 38;

	--bs-dark: hsl(223 100% 6%);
	--bs-dark-rgb: 0, 9, 31;

	--bs-body-color: hsl(223 100% 6%);

	--h1: clamp(3.15625rem, 6vw, 6.375rem);
	--h2: clamp(2.36875rem, 4.5vw, 4.5rem);
	--h3: clamp(1.775rem, 3vw, 3.15625rem);
	--h4: clamp(1.35rem, 2.5vw, 2.36875rem);
	--h5: clamp(1.25rem, 1.75vw, 1.775rem);
	--h6: clamp(1.15rem, 1.5vw, 1.33125rem);
	--lead: var(--h6);
}

.navbar-dark,
.navbar[data-bs-theme="dark"] {
	--bs-navbar-toggler-border-color: hsl(0 0% 100%) !important;
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.cookies .h4 {
	font-size: var(--h5) !important;
}

.cookies-popup--content {
	background-color: #121212 !important;
}

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

:focus-visible {
	outline: 2px dashed var(--primary-color);
	outline-offset: 2px;
}

body {
	background-color: hsl(223 100% 6%);
	color: white;
	font-family: var(--font);
	font-size: 1.125rem;
	line-height: 1.7;
}

.icon {
	width: var(--icon-size, 72px);
}

.icon-72px,
[src*="_72px"] {
	width: 72px;
}

.icon-48px,
[src*="_48px"] {
	width: 48px;
}

.icon-32px,
[src*="_32px"] {
	width: 32px;
}

.icon-16px,
[src*="_16px"] {
	width: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font-title);
	margin-bottom: 1rem;
	font-weight: normal;

	& strong {
		font-weight: normal;
	}
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.h1 em,
.h2 em,
.h3 em,
.h4 em,
.h5 em,
.h6 em {
	font-style: normal;

	background: linear-gradient(to bottom, var(--gradient-1) 20%, var(--gradient-2) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

h1,
.h1 {
	font-size: var(--h1) !important;
}

h2,
.h2 {
	font-size: var(--h2) !important;
}

h3,
.h3 {
	font-size: var(--h3) !important;
}

h4,
.h4 {
	font-size: var(--h4) !important;
}

h5,
.h5 {
	font-size: var(--h5) !important;
}

h6,
.h6 {
	font-size: var(--h6) !important;
}

.lead {
	font-size: var(--lead);
}

.container-fluid {
	padding-inline: 3vw;
}

.container {
	max-width: 1680px;
}

@media (max-width: 1680px) {
	.container {
		max-width: 100%;
		padding-inline: clamp(1rem, 7.5vw, 7.5rem);
	}
}


.inset-0 {
	inset: 0;
}

.p-xxl {
	padding: var(--xxl);
}

.p-xl {
	padding: var(--xl);
}

.px-xxl {
	padding-inline: var(--xxl)
}

.px-xl {
	padding-inline: var(--xl)
}

.pt-xxl {
	padding-top: var(--xxl);
}

.pb-xxl {
	padding-bottom: var(--xxl);
}

.py-xxl {
	padding-top: var(--xxl);
	padding-bottom: var(--xxl);
}

.mt-xxl {
	margin-top: var(--xxl);
}

.mb-xxl {
	margin-bottom: var(--xxl);
}

.my-xxl {
	margin-top: var(--xxl);
	margin-bottom: var(--xxl);
}

.pt-xl {
	padding-top: var(--xl);
}

.pb-xl {
	padding-bottom: var(--xl);
}

.py-xl {
	padding-top: var(--xl);
	padding-bottom: var(--xl);
}

.mt-xl {
	margin-top: var(--xl);
}

.mb-xl {
	margin-bottom: var(--xl);
}

.my-xl {
	margin-top: var(--xl);
	margin-bottom: var(--xl);
}

#main ol li ul {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#main ol li+li {
	margin-top: 1rem;
}

a {
	text-decoration: none;

	&:focus,
	&:hover {
		text-decoration: underline;
	}
}

.gradient-text {
	font-weight: bold;
	line-height: 1;
	background: linear-gradient(to bottom, var(--gradient-1) 20%, var(--gradient-2) 80%);
	background-size: 100% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration: none !important;
	transition: background-size 200ms;

	&:hover {
		background-size: 100% 200%;
	}
}


/*  MARK: navbar  */

.navbar {
	--bs-navbar-padding-x: 0;
	--bs-navbar-padding-y: 1.875rem;
	--bs-navbar-active-color: white;
	--bs-navbar-nav-link-padding-x: 1rem;
	transition: padding 200ms, background-color 200ms, backdrop-filter 200ms;
}

.navbar.affix {
	--bs-navbar-padding-y: .5rem;
	background-color: hsl(0 0% 0% / .85);
	backdrop-filter: blur(.5rem);
}

.navbar-brand-image {
	height: 71px;
	transition: height 200ms;
}

.affix .navbar-brand-image {
	height: 50px;
}

.navbar-nav .nav-link {
	font-weight: 400;
	color: white;
	font-size: var(--h6);

	&:hover,
	&:focus,
	&.active,
	&.open,
	&.show {
		text-decoration: none;
		background: linear-gradient(to bottom, var(--gradient-1) 20%, var(--gradient-2) 80%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}



.dropdown-menu {
	padding: .75rem;
	border-radius: .5rem;
	isolation: isolate;

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: -1;
		background-color: black;
		border-radius: .5rem;
	}

	&::after {
		content: '';
		position: absolute;
		inset: -2px;
		z-index: -2;
		border-radius: .5rem;
		background-image: linear-gradient(to bottom, var(--gradient-1) 20%, var(--gradient-2) 80%);
	}
}

.dropdown-item {
	color: white;
	font-size: 1rem;
	border-radius: .25rem;
	padding: 0.25rem .5rem;
	transition: color 200ms, background-size 200ms;
	background-image: linear-gradient(to bottom, var(--gradient-1), var(--gradient-2));
	background-size: 0% 100%;
	background-repeat: no-repeat;
}

.dropdown-item+.dropdown-item {
	margin-top: .25rem;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
	color: black;
	background-color: black;
	background-size: 100% 100%;
	text-decoration: none !important;
}


.dropdown-toggle::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: 0;
	content: "";
	border: 0;
	width: .75rem;
	height: .65rem;
	background-image: url(../img/drop.svg);
	background-size: contain;
	background-repeat: no-repeat;
}




/*  MARK: header  */

header .position-absolute {
	background-image: linear-gradient(to right, hsl(223 100% 6%) 20%, transparent);
}

header h1 {
	margin-top: 100px;
	font-size: var(--h3) !important;
}

@media (max-height: 670px) {
	header h1 {
		font-size: var(--h4) !important;
	}
}

header video {
	height: 100dvh;
	object-fit: cover;
}

header::after {
	position: absolute;
	content: '';
	inset: 0;
	background-image: linear-gradient(to top, hsl(223 100% 6%), transparent 80%);
}




/*  MARK: main content */

button {
	padding: 0;
	background-color: transparent;
	border: 0;
}

.btn {
	--bs-btn-padding-x: 1.875rem;
	--bs-btn-padding-y: 1.25rem;
	--bs-btn-font-size: var(--h6);
	--bs-btn-font-weight: 400;
	--bs-btn-line-height: 1.5;

	font-family: var(--font-title);
	text-transform: uppercase;
	border-radius: 10rem;
	text-decoration: none !important;
}

.btn-primary {
	--bs-btn-bg: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color-light);
	--bs-btn-hover-border-color: var(--primary-color-light);
	--bs-btn-active-bg: var(--primary-color-dark);
	--bs-btn-active-border-color: var(--primary-color-dark);

	background-image: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 40%, var(--secondary-color) 60%, var(--primary-color) 100%);
	background-size: 100% 200%;
	background-position: 0 0;
	transition: background-position 0.5s ease, filter 200ms, box-shadow 200ms;
	border: 0;
	text-shadow: 0 2px 3px hsl(0 0% 0% / .15);

	&:focus,
	&:hover,
	&:active {
		filter: brightness(1.1);
		background-position: 0 100%;
		box-shadow: 0 0 1rem hsl(182 100% 41% / .5);
	}
}

.btn-outline-primary {
	--bs-btn-color: var(--primary-color);
	--bs-btn-border-color: var(--primary-color);
	--bs-btn-hover-bg: var(--primary-color);
	--bs-btn-hover-border-color: var(--primary-color);
	--bs-btn-active-bg: var(--primary-color);
	--bs-btn-active-border-color: var(--primary-color);
}

.btn-outline-light {
	--bs-btn-color: #fff;
	--bs-btn-border-color: hsl(0 0% 100% / .15);
	--bs-btn-hover-color: var(--bs-body-color);
	--bs-btn-hover-bg: #fff;
	--bs-btn-hover-border-color: #fff;
	--bs-btn-active-color: var(--bs-body-color);
	--bs-btn-active-bg: #fff;
	--bs-btn-active-border-color: #fff;
}

.next img {
	transform: rotate(180deg);
}

.prev,
.next {
	transition: transform 200ms;
	position: absolute;
	top: 50%;
	z-index: 50;
	margin-top: -40px;
	background-color: hsl(0 0% 0% / .5);
	backdrop-filter: blur(.25rem);
	border-radius: 50%;
	width: 80px;
	height: 80px;

	&:active {
		transform: scale(0.9);
	}
}

.prev {
	left: 1.5rem;
}

.next {
	right: 1.5rem;
}

#organizacja-eventow a .counter,
#filary a .counter {
	position: absolute;
	left: -1rem;
	bottom: -1.35rem;
	font-family: var(--font-title);
	font-size: 10.25rem;
	color: transparent;
	-webkit-text-stroke: 2px hsl(0 0% 100%);
	text-stroke: 2px hsl(0 0% 100%);
	pointer-events: none;
	user-select: none;
	z-index: 3;
	line-height: 1;
	opacity: 0.15;
}

#organizacja-eventow a,
#filary a {
	text-decoration: none;
	color: white;

	& strong {
		font-family: var(--font-title);
		font-weight: normal;
	}

	& .position-absolute {
		background-image: linear-gradient(to top, hsl(0 0% 0% / .9), transparent 50%);
	}

	& img {
		position: relative;
		z-index: 1;
		width: 100%;
		height: auto;
		aspect-ratio: 412.5/550;
		object-fit: cover;
		transition: transform 200ms;
	}

	&:hover img {
		transform: scale(1.05);
	}
}


#event-w-rekach {
	background-image: url(../img/oferta-bg.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-blend-mode: darken;

	& .box {
		background-color: hsl(220 100% 4% / .5);
		backdrop-filter: blur(.5rem);

		& img {
			width: 48px;
			margin-bottom: 1rem;
		}

		& p {
			margin-bottom: 0;
		}
	}
}

.wynajem-images {
	width: 100%;
	aspect-ratio: 780/647;

	& .overflow-hidden {
		border-radius: 1.5rem;
	}
}

.wynajem-decor-1 {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 25%;
	width: 40%;
	height: auto;
	aspect-ratio: 1;
}

.wynajem-decor-2 {
	position: absolute;
	z-index: 4;
	top: 15%;
	right: 10%;
	width: 8%;
	height: auto;
	aspect-ratio: 72/172;
}



.wynajem-img-1 {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 90%;
	height: auto;
	aspect-ratio: 700/567;
}

.wynajem-img-2 {
	position: absolute;
	z-index: 3;
	bottom: 0;
	right: calc(25% + 30px);
	width: 25%;
	height: auto;
	aspect-ratio: 262/217;
}

.wynajem-img-3 {
	position: absolute;
	z-index: 3;
	bottom: 0;
	right: 0;
	width: 25%;
	height: auto;
	aspect-ratio: 262/217;
}


body {
	background-image: url(../img/bottom-bg.png);
	background-size: contain;
	background-position: bottom;
	background-repeat: no-repeat;
	background-blend-mode: difference;
}



/*  MARK: stopka */

footer {
	background-image: linear-gradient(to top, hsl(0 0% 0% / .7), transparent);
}

footer a {
	text-decoration: none;
	color: hsl(0 0% 100% / .65);
	transition: color 200ms;
}

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

.list-unstyled li+li {
	margin-top: 0.75em;
}

.madeby {
	display: flex;
	align-items: center;
}

.madeby small {
	font-size: 0.625rem;
	margin: 0.2em 0.2em 0 0;
}

/*  MARK: sub content  */

.sub header::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 180px;
	z-index: 100;
	background-image: linear-gradient(to bottom, hsl(223 100% 6% / .7), transparent);
}

.main-wrapper {
	position: relative;
}

.main-wrapper::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 180px;
	z-index: 100;
	background-image: linear-gradient(to bottom, hsl(223 100% 6%), transparent);
}

.sub header .position-absolute::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	z-index: 100;
	background-image: linear-gradient(to top, hsl(223 100% 6%), transparent);
}

.sub .swiper__image {
	transform: scale(1.1);
}

.sub .swiper-slide-active .swiper__image {
	animation: zoomOut 8s forwards;
}

@keyframes zoomOut {
	from {
		transform: scale(1.1);
	}

	to {
		transform: scale(1);
	}
}



.sub .swiper__image {
	height: 600px;
	object-fit: cover;
}

main:has(#sub-pages:last-of-type) {
	padding-bottom: 0;
}

.gallery a {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 1.5rem;
}

.gallery a img {
	width: 100%;
	display: block;
	transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.downloads a {
	text-decoration: none;
	color: white;
	border: 1px solid hsl(0 0% 90%);
	border-radius: .25rem;
	transition: color 200ms, border-color 200ms;
}

.downloads a .h5 {
	font-weight: 400;
	font-size: 1rem !important;
}

.downloads a:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-control {
	padding: .75rem 1rem;
	border-radius: .25rem;
	border-color: white;
	color: white;
	background-color: transparent;
}

.form-control.error {
	border-color: red;
}

.error-msg {
	color: red;
}

/*  MARK: paginator  */

.pagination {
	display: flex;
}

.pagination li {
	display: none;
}

.pagination .active,
.pagination .insertPage,
.pagination li:first-child,
.pagination li:last-child {
	display: block;
}

.pagination a,
.pagination input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0 5px;
	padding: 0;
	text-align: center;
	color: #bbb;
	border: 1px solid #e1e1e1;
	text-decoration: none;
	transition: all .2s;
}

.pagination a:focus,
.pagination a:hover,
.pagination input:focus,
.pagination input:hover {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.pagination input::placeholder {
	color: #bbb;
	font-size: 16px;
	font-weight: 500;
}

.pagination .active a {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	cursor: text;
}

.pagination .insertPage+.insertPage {
	display: none;
}







/*  MARK: RWD  */

@media (max-width: 1630px) {
	.navbar-nav .nav-link {
		font-size: clamp(.875rem, 1vw, 1rem);
	}

	.dropdown-toggle::after {
		width: .5rem;
		height: .45rem;
	}

	.navbar-tel {
		font-size: 1rem !important;
	}
}

@media (max-width: 1330px) {
	.container {
		padding-inline: clamp(.75rem, 4vw, 4rem);
	}

	.navbar-brand-image {
		height: 60px;
	}
}


@media (max-width: 1199px) {
	.offcanvas {
		position: fixed;
		height: 100dvh !important;
	}
	.navbar-nav .nav-link {
		font-size: var(--h5);
	}

	.navbar-nav .dropdown-menu {
		position: relative;
	}

	.footer-dane {
		& .d-flex {
			flex-direction: column;
		}
	}
}


@media (max-width: 575px) {
	:root {
		--xxl: 4rem;

		--h1: clamp(2.25rem, 2.5vw, 2.5rem);
		--h2: clamp(2rem, 2.5vw, 2.5rem);
		--h3: clamp(1.5rem, 2vw, 1.85rem);
		--h4: clamp(1.25rem, 1.5vw, 1.5rem);
		--h5: clamp(1.125rem, 1.25vw, 1.25rem);
		--h6: clamp(1rem, 1.15vw, 1.15rem);
	}

	.btn {
		--bs-btn-padding-x: 1.5rem;
		--bs-btn-padding-y: 1.15rem;
		--bs-btn-font-size: 1rem;
	}

		.sub .swiper__image {
			height: 350px;
		}
}