*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:#061d43;
    color:#fff;
}

.subpage-navbar{
    width:100%;
    height:110px;

    background:#0f2c66;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 70px;

    position:static;
    top:0;
    left:0;

    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:38px;
    font-weight:800;
    font-style:italic;

    transition:.3s;
      text-shadow: 0 3px 12px rgba(0,0,0,.25);
}

.logo:hover{
    text-shadow:0 0 18px #0095ff;
}

.logo span{
    color:#fff;
}

.logo strong{
    color:#1d9cff;
    
}

.logo-text{
    position:relative;
    padding-bottom:10px;
}

.logo-wave{
    width:100%;
    height:4px;
    margin-top:10px;
    border-radius:20px;

    background:linear-gradient(
        90deg,
        transparent,
        #29a3ff,
        #6bd5ff,
        #29a3ff,
        transparent
    );
}


/* =========================================
   FALKI
========================================= */

.logo-mark{
    position:relative;
    width:58px;
    height:45px;
     transform:scale(1.20);
}

.logo-mark span{
    position:absolute;

    display:block;

    height:5px;

    background:#1d9cff;

    border-radius:20px;

    transform:rotate(-25deg);
}

.logo-mark span:nth-child(1){
    width:42px;
    top:8px;
    left:4px;
}

.logo-mark span:nth-child(2){
    width:34px;
    top:20px;
    left:14px;
}

.logo-mark span:nth-child(3){
    width:24px;
    top:31px;
    left:23px;
}

.home-btn{
    color:#fff;
    text-decoration:none;

    border:2px solid #1d9cff;
    border-radius:40px;

    padding:14px 30px;

    font-weight:bold;

    transition:.3s;
}

.home-btn:hover{
    background:#1d9cff;
}

.hero-kajaki{
    height:100vh;

    background:
    linear-gradient(rgba(0,25,70,.55),rgba(0,25,70,.75)),
    url("images/kajaki-banner.jpg") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    
}


.hero-content h1{
    font-size:clamp(55px,7vw,90px);
    font-weight:900;
}

.hero-content p{
    margin-top:25px;
    font-size:34px;
}


.features{
    max-width:1200px;

    margin:90px auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;

    padding:0 20px;
}



.feature-card{
    background:#20539d;

    border-radius:22px;

    text-align:center;

    padding:45px 30px;

    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    font-size:55px;
    color:#23a3ff;
}

.feature-card h2{
    margin:25px 0 15px;
    font-size:35px;
}

.feature-card p{
    font-size:23px;
    line-height:1.6;
}

/* =========================================
   O SPŁYWACH
========================================= */

.about{

    max-width:1300px;
    margin:120px auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-left img{

    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.section-small{

    color:#1d9cff;
    font-weight:700;
    letter-spacing:2px;
    font-size:15px;

}

.about-right h2{

    font-size:55px;
    margin:20px 0;
    color:white;

}

.about-right p{

    font-size:20px;
    color:#ddd;
    line-height:1.8;

}


/* =========================================
   KAFELKI
========================================= */

.about-cards{

    margin-top:50px;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.about-card{

    background:#15458c;

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-8px);

    background:#1b5cb9;

}

.about-card i{

    font-size:48px;
    color:#1da1ff;
    margin-bottom:18px;

}

.about-card h3{

    color:white;
    margin-bottom:10px;
    font-size:24px;

}

.about-card p{

    color:#ddd;
    font-size:17px;

}


/* =========================================
   JAK WYGLĄDA SPŁYW
========================================= */

.steps{

    padding:120px 30px;

}

.steps h2{

    text-align:center;
    font-size:55px;
    margin-bottom:70px;

}

.steps-container{

    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.step{

    background:#15458c;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.step:hover{

    transform:translateY(-8px);

}

.step .number{

    width:70px;
    height:70px;

    margin:auto auto 20px;

    border-radius:50%;

    background:#1da1ff;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    font-size:30px;
    font-weight:bold;

}

.step h3{

    margin-bottom:15px;
    color:white;

}

.step p{

    color:#ddd;
    line-height:1.6;

}

/* =========================================
   DLACZEGO MY
========================================= */

.why{

    max-width:1300px;
    margin:100px auto;
    padding:0 30px;

}

.why h2{

    text-align:center;
    font-size:55px;
    margin-bottom:60px;
    color:#fff;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.why-box{

    background:#15458c;
    border-radius:20px;
    padding:45px 30px;
    text-align:center;

    transition:.35s;

}

.why-box:hover{

    transform:translateY(-10px);
    background:#1b5cb9;

}

.why-box i{

    font-size:55px;
    color:#1da1ff;
    margin-bottom:25px;

}

.why-box h3{

    font-size:24px;
    color:#fff;
    margin-bottom:15px;

}

.why-box p{

    color:#ddd;
    line-height:1.7;

}


/* =========================================
   KONTAKT
========================================= */

.contact-kajaki{

    max-width:900px;
    margin:120px auto;
    padding:70px 40px;

    background:#15458c;

    border-radius:25px;

    text-align:center;

}

.contact-kajaki h2{

    font-size:50px;
    margin-bottom:15px;

}

.contact-kajaki p{

    color:#ddd;
    font-size:20px;
    margin-bottom:40px;

}

.contact-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.contact-buttons a{

    padding:18px 35px;

    background:#1d9cff;
    color:white;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.contact-buttons a:hover{

    background:#36b2ff;
    transform:translateY(-5px);

}


/* =========================================
   RESPONSYWNOŚĆ
========================================= */

@media (max-width:768px){

    .about{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .steps-container{
        grid-template-columns:1fr 1fr;
    }

    .why-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:768px){

    .subpage-navbar{
        height:auto;
        padding:20px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:20px;
    }

    .logo{
        font-size:28px;
    }

    .home-btn{
        font-size:16px;
        padding:12px 24px;
    }

    .hero-dmuch{
        height:55vh;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:22px;
    }

    .about{
        padding:20px;
    }

    .about-right h2{
        font-size:32px;
    }

    .about-right p{
        font-size:17px;
    }

    .about-left img{
    height:450px;
    object-fit:cover;
}

    .steps h2,
    .why h2,
    .contact-dmuchance h2{
        font-size:38px;
    }

    .steps-container{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .contact-dmuchance{
        margin:70px 20px;
        padding:45px 25px;
    }

    .contact-buttons{
        flex-direction:column;
    }

    .contact-buttons a{
        width:100%;
    }

}

@media (max-width:480px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:18px;
    }

    .about-card{
        padding:25px;
    }

    .step{
        padding:25px;
    }

    .why-box{
        padding:30px;
    }

}

nav a{
    color:#fff !important;
    text-decoration:none !important;
}