@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

header {
    z-index: 6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    transition: 0.5s ease;

}




/* svg napis style*/

.svgbrand {
    fill: none;
    stroke: white;
    stroke-miterlimit: 1px;
    stroke-width: 2.4px;
    z-index: 1;


    width: 80vw;

    filter: drop-shadow(2px 2px 4px rgba(3, 251, 114, 0.5));
}


#svgnapis {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(10%, 0%);
    animation: fill 4s ease forwards 7s;
   
  
}

#svgnapis path:nth-child(1) {
    stroke-dasharray: 315.05px;
    stroke-dashoffset: 315.05px;
    animation: line-anim 4s ease forwards;
 

}

#svgnapis path:nth-child(2) {
    stroke-dasharray: 62.75px;
    stroke-dashoffset: 62.75px;
    animation: line-anim 2s ease forwards 0.6s;
}

#svgnapis path:nth-child(3) {
    stroke-dasharray: 84.84px;
    stroke-dashoffset: 84.84px;
    animation: line-anim 2s ease forwards 1.0s;
}

#svgnapis path:nth-child(4) {
    stroke-dasharray: 84.79px;
    stroke-dashoffset: 84.79px;
    animation: line-anim 2s ease forwards 1.5s;
}

#svgnapis path:nth-child(5) {
    stroke-dasharray: 141.08px;
    stroke-dashoffset: 141.08px;
    animation: line-anim 2s ease forwards 2.0s;
}

#svgnapis path:nth-child(6) {
    stroke-dasharray: 279.75px;
    stroke-dashoffset: 279.75px;
    animation: line-anim 2s ease forwards 2.5s;
}

#svgnapis path:nth-child(7) {
    stroke-dasharray: 141.08px;
    stroke-dashoffset: 141.08px;
    animation: line-anim 2s ease forwards 3.0s;
}

#svgnapis path:nth-child(8) {
    stroke-dasharray: 57.42px;
    stroke-dashoffset: 57.42px;
    animation: line-anim 2s ease forwards 3.5s;
}

#svgnapis path:nth-child(9) {
    stroke-dasharray: 141.08px;
    stroke-dashoffset: 141.08px;
    animation: line-anim 2s ease forwards 4.0s;
}

@keyframes line-anim {
    from {
        scale:1.0;
        filter:blur(2px);
        transform: skew(20deg, -3deg);
        
    }

    to {
        scale:0.9;
        stroke-dashoffset: 0px;
        stroke-width: 0.8px;
        
    }
}

@keyframes fill {
    0%{
        fill: transparent;
    }
    25%{
        fill: rgba(250, 62, 240, 0.638);
    }
    50%{
        fill: rgba(8, 253, 29, 0.552);
    }
    75%{
        fill: rgb(6, 201, 250);
    }
    100%{
        fill: rgb(76, 47, 219);
        mix-blend-mode:color-dodge;
    }

}

/* svg napis style end */

header .navigation {
    position: relative;

    width: 90%;
    max-width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 5;
    text-shadow: 0 8px 10px rgba(0, 0, 0, 0.532);
}

header .navigation .navigation-items a {

    position: relative;
    color: #fafcdf;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;


}

#onas {
    bottom: 0px;
    text-shadow: 0 8px 10px rgba(0, 0, 0, 0.532);
    animation: col 0.5s ease forwards 0s;
  }
  
  @keyframes col {
    from {
      color: #fafcdf;
    }
  
    to {
      color: #b9f971;
      bottom: 5px;
      text-shadow: 0 14px 10px rgba(0, 0, 0, 0.384);
    }
  }
  

header .navigation .navigation-items a:before {
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {

    width: 100%;
}

section {
    padding: 100px 20px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgba(245, 201, 143, 0.247);
}

.home:before {

    content: '';
    position: absolute;

    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.home .content {
    z-index: 2;
    color: #fff;
    width: 95%;
    margin-top: 50px;
    display: none;
    transform: skew(2deg, -3deg);
    text-shadow: 0 8px 10px rgba(0, 0, 0, 0.76);

}

.home .content.active {
    display: block;

}

.home .content h1 {
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;
   
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    background: -webkit-linear-gradient(rgb(12, 241, 65), rgb(20, 225, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
   
}

.home .content h1 span {
    font-size: 1.2em;
    font-weight: 600;
    color: #2df505;
    
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(85, 4, 247);
    

}

.home .content h1 span2 {
    font-size: 0.7em;
    font-weight: 600;
    -webkit-text-fill-color: rgb(156, 126, 97);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(46, 38, 60);
}



.home .content h2 {
    font-size: 4em;
    font-weight: 600;

    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    background: -webkit-linear-gradient(rgb(3, 248, 3), rgb(2, 225, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.home .content h2 span {
    font-size: 0.8em;
    font-weight: 600;
    /* color: #f5ad05;
    -webkit-text-stroke-color: rgb(0, 0, 0); */

    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    background: -webkit-linear-gradient(rgb(12, 191, 241), rgb(247, 150, 242));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.home .content p {
    margin-bottom: 65px;
    /* transform: skew(-2deg, 3deg); */
    transform: skew(2deg, 3deg);
}

/* .home .content a {
    background: #fff;
    padding: 15px 35px;
    color: #e5fe03;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;

} */

.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;

}

.home .media-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;

}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}

.home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
    background: #2696E9;

}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.2);
}

.video-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 50% 95%);
}

.video-slide.active {
    clip-path: circle(200% at 50% 95%);
    transition: 3s ease;
    transition-property: clip-path;

}

.lottie-container {
    display: none;
}

/* slonce klik */

.ramka {
    /* height: 0px; */
    width: 90%;
    transition: 0.9s ease;
    border-style: double;
    background-color: white;
}

.ramka p {
    color: #2f3f2f;
}

.iframe1class {
    display: none;

}

.iframe1class.active {
    display: flex;
    width: 100%;
    height: 600px;
}


.lottie-container2 {
    z-index: 2;
    position: relative;
    top: 0px;
    left: 0%;
    transition: 0.3s ease;
    display: inline-flex;
    padding-inline: 1rem;
}

.lottie-container2 lottie-player {
    width: 60px;
    height: 60px;
}

.sunclick:hover {
    scale: 1.2;
    transition: 0.3s ease;
}

.sunclick:active {
    scale: 0.8;
}



.tekst.active {
    display: none;
}

/* slonce klik end */

/* rower klik */
.rowerclick:hover {
    scale: 1.2;
    transition: 0.3s ease;
}

.rowerclick:active {
    scale: 0.8;
}

.tekst.active {
    display: none;
}

/* rower klik end */

/* kajak klik */
.canoeclick:hover {
    scale: 1.2;
    transition: 0.3s ease;
}

.canoeclick:active {
    scale: 0.8;
}

.tekst.active {
    display: none;
}

/* rower klik end */

@media (max-width: 1040px) {
    header {
        padding: 12px 20px;
    }

    section {
        padding: 100px 20px;
    }

    .home .media-icons {
        right: 15px;
    }

    #svgnapis {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        animation: fill 0.8s ease forwards 3s;
    }

    header .navigation {
        display: none;

    }

    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        z-index: 5;
    }







    header .navigation .navigation-items a {
        color: #222;
        font-size: 18px;
        margin: 20px;

    }

    header .navigation.active .navigation-items a:before {
        background: #222;
        height: 5px;
    }

    header .navigation .navigation-items {
        background: #fff;
        animation: tlokolor 2s ease forwards 0.5s;
        width: 300px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 35px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 70%);
    }
    
    @keyframes tlokolor {
        to {
            background: #c0bfbf;
        }
    }


    .lottie-container {

        margin: auto;
        justify-content: center;
        align-items: center;
        display: flex;
        background-color: transparent;
        z-index: 6;
        position: fixed;
        top: 20px;
        right: 20px;
        transition: 0.3s ease;
    }

    .lottie-container:hover {
        scale: 1.3;
    }

    lottie-player {
        width: 50px;
        height: 50px;

        margin: auto;
        justify-content: center;
        align-items: flex-start;
        display: flex;
        background-color: transparent;
        z-index: 0;
    }




    .content,
    .content.active {

        h1,h2 {
            font-size: 48px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 75px;
            text-align: center;
            margin-bottom: 40px;
        }


        #animated-paragraph {
            white-space: pre-wrap; /* Zachowaj białe znaki, jak spacje i nowe linie */
            font-size: 12px;
            line-height: 1.6;
            margin-top: 20px;
            text-align: center;
           
          }
    }


}


  #animated-paragraph {
    white-space: pre-wrap; /* Zachowaj białe znaki, jak spacje i nowe linie */
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
   
  }

  #animated-paragraph span {
    display: inline-block;
    opacity: 0;
    color: #05e1f5;
    
    transform: translateX(-400px); /* Początkowa pozycja nad ekranem */
    animation: fade-in-up 4.0s forwards; 
    
  }




  /* .tekscik {
    display: inline-block;
    opacity: 1;
    color: #f505d5;
    
    transform: translateX(10px); /* Początkowa pozycja nad ekranem */
    
    
 

  h1{
    opacity: 0;
    transform: translateX(-400px); /* Początkowa pozycja nad ekranem */
    animation: fade-in-up 2s forwards 1s; 
  
  }

  .tekscik{
    animation: znikam 2s ease forwards 30s;
  } 


  /* p{
    filter: blur(4px);
    animation: fade-in-up 4.0s forwards;
  } */

  /* Animacja przesuwania w górę */
  @keyframes fade-in-up {
    0%{
        opacity: 0;
        scale: 3;
        filter: blur(20px);
    }
    25% {
       
        color: #ec4306;
        filter: blur(20px);
      }

    50% {
        color: #06ec5a;
      }

    100% {
    
      opacity: 0.8;
      color: #ffffff;
      
      transform: translateX(0); /* Końcowa pozycja */
      /* filter: drop-shadow(2px 2px 4px rgb(255, 1, 1)); */
      filter: blur(0px);
      
    }
  }

  @keyframes fadeoutek {
    0%{

        opacity: 0.8;
        color: #ffffff;
        
        transform: translateX(0); /* Końcowa pozycja */
        /* filter: drop-shadow(2px 2px 4px rgb(255, 1, 1)); */
        filter: blur(0px);


    }
    18% {
       
        color: #ec4306;
      }

    20% {
        color: #06ec5a;
      }

    100% {
    
        opacity: 0;
        scale: 3;
        filter: blur(20px);
        transform: translateX(-400px);
      
    }
  }



  @keyframes znikam {
    0%{
        opacity: 1;
    }


    100% {
    
      opacity: 0;
      
    }
  }

/*----------------*/
.tekst {
        position: relative;
      
        text-align: center;
        color: white;
        padding: 50px;
   
    }

    .tekst h2, .tekst p {
        position: relative;
        z-index: 2;
    }

    .tekst::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #ff00ff92, #00ffff81, #00ff0081, #ff000074);
        filter: blur(50px);
        opacity: 0.5;
        z-index: 1;
        pointer-events: none;
    }

    .tekst span {
        color: #ffd700;
    }
  