/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* edit the hamburger and close icon colors here */

.kickass-button {
	--hamburger-color: #fff;
	--close-x-color: #fff;
	display: block;
	height: 18px;
	cursor: pointer;
	position: relative;
	z-index: 101;
}


/* must add in elementor template ID number to make the menu full width */
.elementor-913 {
	width: 100%;
}




/* end editing */

.kickass-navigation {
	position: fixed;
	top: 0;
	left: 0;
	transform: translateX(100%);
	overflow: hidden;
	transition: transform 0.2s;
	width: 100%;
	height: 100vh;
	z-index: 100;
}

.kickass-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
}




/* toggle hamburger*/

.kickass-button .hamburguer {
	position: relative;
}

.kickass-button .hamburguer span{
	display: block;
	height: 2px;
	width: 24px;
	background: var(--hamburger-color);
	transform-origin: 50% 50%;
	transition: all 0.1s 0.2s ease, transform 0.2s ease;
}

.kickass-button .hamburguer span:nth-child(2) {
	transform: translate(0, 6px);
}

.kickass-button .hamburguer span:nth-child(3) {
	transform: translate(0, 12px);
		
}

.kickass-nav_control {
	position: absolute;
	left: -9999px;
	width: 100%;
	clip: rect(0, 0, 0, 0);
}

.kickass-nav_control:checked~.kickass-navigation {
	transform: translateX(0);
	opacity: 1;
	transition: transform 0.3s, opacity 0.3s;
}

.kickass-nav_control:checked~.kickass-button .hamburguer {
	transition: all 0.1s 0s ease;
}

/* closed X */

.kickass-nav_control:checked~.kickass-button .hamburguer span {
	background: var(--close-x-color);
	transition: all 0.1s ease, transform 0.1s 0.2s ease;
}

.kickass-nav_control:checked~.kickass-button .hamburguer span:first-child {
	opacity: 0;
}

.kickass-nav_control:checked~.kickass-button  .hamburguer span:nth-child(2) {
	transform: translate(0, 6px) rotate(45deg);
}

.kickass-nav_control:checked~.kickass-button .hamburguer span:nth-child(3) {
	transform: translate(0, 4px) rotate(-45deg);

}
.category-popup .text-glow,
.dropdown .text-glow,
.category-link:hover,
.text-glow h1,
.text-glow h2,
.text-glow h3,
.text-glow h4,
.text-glow h5,
.text-glow h6,
.text-glow div,
.text-glow span,
.text-glow span:hover,
.text-glow p,
.text-glow a:hover {
    text-shadow: 0px 0px 4px #FFF !important;
}

.logo-glow img {
	filter: drop-shadow(0px 0px 4px #FFF) !important;
}

.logo-header-glow a img {
    transition: filter 0.3s ease-in-out;
}

.logo-header-glow a:hover img {
    filter: drop-shadow(0px 0px 4px #FFF) !important;
}


.kontakt-glow-image img {
	box-shadow: -8px -8px 19.8px 0px #FFF;
}

/* zakładka DANCE zoom */
.dance-image-animation .elementor-widget-container {
  overflow: hidden;
}

.dance-image-animation .elementor-widget-container a img {
  display: block;
  transition: transform 300ms ease-out;
}

.dance-image-animation .elementor-widget-container a img:hover {
  transform: scale(1.1);
}

/* menu-mobilne border */
#mobile-menu .elementor-nav-menu .menu-item {
    border-bottom: 1px solid #868686;
}

/* menu-mobilne wysokość */
#mobile-menu {
  margin-top: 89px;
  height: calc(100vh - 89px);
  max-height: calc(100vh - 89px);
  overflow: hidden;
}
/* zmiana koloru tła po rozwinięciu menu */
.header-background.active {
	background-color: #101111!important;
}

/* Styl dla kontenera home */
.home-overlay-container {
  position: relative;
  overflow: hidden;
}

/* Nakładka */
.home-overlay-container::before {
  content: '';
  position: absolute;
  top: 20px; /* Odstęp od góry */
  left: 20px; /* Odstęp od lewej */
  right: 0px; /* Odstęp od prawej */
  bottom: 0px; /* Odstęp od dołu */
  width: calc(100% - 40px); /* Szerokość obramowania z uwzględnieniem paddingu */
  height: calc(100% - 40px); /* Wysokość obramowania z uwzględnieniem paddingu */
  border: 2px solid rgba(245, 245, 245, 0.7);
  z-index: 1;
}

/* Styl dla nagłówka */
.home-overlay-container h2 {
  position: relative;
  z-index: 2;
  transition: text-shadow 0.3s ease;
}
.home-overlay-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Tło na cały kafelek */
    pointer-events: none; /* Unika interakcji z tłem */
    z-index: 0;
    transition: background-color 0.3s ease;
}
/* Efekt po najechaniu */
.home-overlay-container:hover::after {
  background-color: transparent;
}

.home-overlay-container:hover h2 {
  text-shadow: 0px 0px 4px #FFF !important;
}