*{
    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{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:14px 32px;

    color:#fff;
    text-decoration:none;

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

    background:transparent;

    font-size:18px;
    font-weight:700;

    transition:.3s;
}

.home-btn:hover{
    background:#1d9cff;
    box-shadow:0 0 20px rgba(29,156,255,.35);
}

.home-btn i{
    font-size:20px;
}
.home-btn:visited{
    color:#fff;
}



.home-btn:visited{
    color:#fff;
}
/* =========================================
   HERO
========================================= */

.hero-dmuch{

    height:100vh;

    background:
    linear-gradient(rgba(0,25,70,.55),rgba(0,25,70,.75)),
    url("images/dmuchance.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:32px;

}


/* =========================================
   O DMUCHAŃCACH
========================================= */

.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;

}

.about-right h2{

    font-size:55px;

    margin:20px 0;

}

.about-right p{

    color:#ddd;

    font-size:20px;

    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{

    margin-bottom:10px;

    color:white;

}

.about-card p{

    color:#ddd;

    font-size:17px;

}


/* =========================================
   JAK WYNAJĄĆ DMUCHAŃCA
========================================= */

.steps{

    padding:120px 30px;

}

.steps h2{

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

}

.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:.35s;

}

.step:hover{

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

}

.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:700;

}

.step h3{

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

}

.step p{

    color:#ddd;
    line-height:1.6;

}


/* =========================================
   DLACZEGO WARTO NAS WYBRAĆ
========================================= */

.why{

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

}

.why h2{

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

}

.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:50px;
    color:#1da1ff;
    margin-bottom:25px;

}

.why-box h3{

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

}

.why-box p{

    color:#ddd;
    line-height:1.7;

}

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

.contact-dmuchance{

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

    background:#15458c;
    border-radius:25px;

    text-align:center;

}

.contact-dmuchance h2{

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

}

.contact-dmuchance p{

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

}

.contact-buttons{

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

}

.contact-buttons a{

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

    min-width:220px;
    height:60px;

    background:#1d9cff;
    color:#fff;

    border-radius:12px;

    font-size:20px;
    font-weight:600;

    transition:.3s;

}

.contact-buttons a:hover{

    background:#38adff;
    transform:translateY(-5px);

}

/* =========================================
   ANIMACJA
========================================= */

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.hero-content{

    animation:fadeUp 1s;

}


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