/* =========================================
   CHISTOFAYNIK STYLE.CSS
   PART 1/3
   GENERAL + HEADER + HERO + COMPONENTS
========================================= */


/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Poppins',sans-serif;
    background:#f6faf8;
    color:#1f2937;
    line-height:1.6;

}


img{

    max-width:100%;
    display:block;

}


a{

    text-decoration:none;
    color:inherit;

}


ul{

    list-style:none;

}


button,
input,
textarea,
select{

    font-family:inherit;

}



/* ---------- COLORS ---------- */


/*

Green:
#14b86d

Dark:
#17324d

Gray:
#667085

*/





/* ---------- CONTAINER ---------- */


.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}




/* =========================================
   HEADER
========================================= */


.header{

    background:white;
    position:sticky;
    top:0;
    z-index:1000;

    box-shadow:
    0 5px 25px rgba(0,0,0,.07);

}



.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 0;

}




/* LOGO */


.logo{

    font-size:32px;
    font-weight:800;
    color:#14b86d;

}


.logo span{

    color:#17324d;

}





/* NAVIGATION */


nav{

    display:flex;
    align-items:center;
    gap:35px;

}



nav a{

    color:#17324d;

    font-size:16px;
    font-weight:600;

    transition:.3s;

}



nav a:hover{

    color:#14b86d;

}



nav a.active{

    color:#14b86d;

}





/* =========================================
   BUTTONS
========================================= */


.btn,
.hero-btn,
.book-btn,
.main-btn{


    display:inline-flex;

    align-items:center;
    justify-content:center;
    gap:10px;


    padding:15px 35px;


    background:#14b86d;

    color:white;


    border-radius:50px;


    font-weight:700;


    transition:.3s;

}




.btn:hover,
.hero-btn:hover,
.book-btn:hover,
.main-btn:hover{


    background:#10985a;


    transform:translateY(-3px);


    box-shadow:

    0 15px 30px rgba(20,184,109,.25);

}





/* =========================================
   HERO
========================================= */


.hero{


    display:flex;

    align-items:center;

    justify-content:space-between;


    gap:60px;


    padding:100px 0;


}



.hero-text{

    flex:1;

}



.hero-text h1{


    font-size:64px;

    line-height:1.15;

    color:#17324d;


    margin-bottom:25px;


}




.hero-text p{


    color:#667085;

    font-size:20px;

    margin-bottom:35px;


}




.hero-image{


    flex:1;

    display:flex;

    justify-content:center;


}




.hero-image img{


    max-width:550px;


}





/* =========================================
   PAGE HEADER
========================================= */


.page-header{


    background:#effaf4;

    text-align:center;

    padding:80px 0;


}



.page-header h1{


    color:#17324d;

    font-size:52px;


}



.page-header p{


    margin-top:15px;

    color:#667085;

    font-size:18px;


}







/* =========================================
   SECTIONS
========================================= */


section{


    padding:90px 0;


}



.section-title{


    text-align:center;


    font-size:42px;


    color:#17324d;


    margin-bottom:15px;


}



.section-text{


    text-align:center;


    color:#667085;


    font-size:18px;


    max-width:700px;

    margin:

    0 auto 60px;


}





/* =========================================
   CARDS
========================================= */


.cards{


    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(260px,1fr));


    gap:30px;


}



.card{


    background:white;


    padding:35px;


    border-radius:25px;


    box-shadow:

    0 15px 35px rgba(0,0,0,.08);


    transition:.35s;


}



.card:hover{


    transform:translateY(-10px);


    box-shadow:

    0 25px 50px rgba(0,0,0,.12);


}



.card h3{


    color:#14b86d;

    font-size:26px;

    margin-bottom:15px;


}



.card p{


    color:#667085;


}







/* =========================================
   SERVICES
========================================= */


.services{


    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(280px,1fr));


    gap:30px;


}




.service{


    background:white;

    padding:35px;

    border-radius:25px;


    box-shadow:

    0 15px 35px rgba(0,0,0,.08);


    transition:.35s;


}




.service:hover{


    transform:translateY(-10px);


}



.service h2{


    color:#14b86d;

    margin-bottom:15px;


}



.service p{


    color:#667085;

    margin-bottom:20px;


}



.service a{


    color:#14b86d;

    font-weight:700;


}






/* =========================================
   ABOUT
========================================= */


.about{


    display:grid;


    grid-template-columns:

    1fr 1fr;


    gap:60px;


    align-items:center;


}



.about img{


    border-radius:30px;


}



.about h2{


    color:#17324d;

    font-size:42px;

    margin-bottom:25px;


}



.about p{


    color:#667085;

    margin-bottom:20px;


}






/* =========================================
   STATISTICS
========================================= */


.stats{


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}



.stat{


    background:white;


    text-align:center;


    padding:35px;


    border-radius:25px;


    box-shadow:

    0 15px 35px rgba(0,0,0,.08);


}



.stat h2{


    color:#14b86d;

    font-size:42px;


}



.stat p{


    color:#667085;

}






/* =========================================
   HELPERS
========================================= */


.text-center{

    text-align:center;

}


.mt-40{

    margin-top:40px;

}


.mt-60{

    margin-top:60px;

}


.mb-40{

    margin-bottom:40px;

}


.bg-light{

    background:#f6faf8;

}


.bg-white{

    background:white;

}
/* =========================================
   CHISTOFAYNIK STYLE.CSS
   PART 2/3
   CONTACTS + MAP + FORM + FOOTER
========================================= */



/* =========================================
   CONTACT HERO
========================================= */


.contact-hero{


    background:

    linear-gradient(
        135deg,
        #14b86d,
        #0c8f55
    );


    padding:90px 20px;


    text-align:center;


    color:white;


}



.contact-hero h1{


    font-size:52px;

    margin-bottom:20px;


}



.contact-hero p{


    font-size:20px;

    max-width:700px;

    margin:

    0 auto 35px;


}






/* =========================================
   CONTACT CARDS
========================================= */


.contacts{


    display:grid;


    grid-template-columns:

    repeat(auto-fit,minmax(260px,1fr));


    gap:30px;


    margin-top:60px;


}




.contact-card{


    background:white;


    padding:40px 30px;


    text-align:center;


    border-radius:25px;


    box-shadow:

    0 15px 35px rgba(0,0,0,.08);


    transition:.35s;


}



.contact-card:hover{


    transform:translateY(-10px);


    box-shadow:

    0 25px 50px rgba(0,0,0,.12);


}



.contact-card h3{


    font-size:23px;


    color:#17324d;


    margin-bottom:15px;


}



.contact-card p{


    color:#667085;


    margin-bottom:20px;


}




/* ICONS */


.icon{


    width:75px;

    height:75px;


    display:flex;


    align-items:center;

    justify-content:center;


    margin:

    0 auto 25px;



    background:#e9fff3;


    color:#14b86d;


    border-radius:50%;


    font-size:32px;


}








/* =========================================
   SERVICE AREA BLOCK
========================================= */



.area-box{


    display:grid;


    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));


    gap:30px;


}



.area-item{


    background:white;


    padding:35px;


    border-radius:25px;


    box-shadow:

    0 15px 35px rgba(0,0,0,.08);


}



.area-item h3{


    color:#14b86d;


    font-size:26px;


    margin-bottom:15px;


}



.area-item p{


    color:#667085;


}








/* =========================================
   GOOGLE MAP
========================================= */


.map-section{


    margin-top:40px;


}



.map-section h2{


    text-align:center;


    font-size:38px;


    color:#17324d;


    margin-bottom:40px;


}



.map-box{


    background:white;


    padding:20px;


    border-radius:30px;


    box-shadow:

    0 20px 45px rgba(0,0,0,.10);


}



iframe{


    width:100%;


    height:450px;


    border:none;


    border-radius:25px;


}









/* =========================================
   CONTACT FORM
========================================= */


.form-box{


    background:white;


    padding:50px;


    border-radius:30px;


    box-shadow:

    0 20px 45px rgba(0,0,0,.08);


}



.form-box h2{


    text-align:center;


    color:#17324d;


    font-size:35px;


    margin-bottom:40px;


}




form{


    display:flex;


    flex-direction:column;


    gap:20px;


}



.input-group{


    display:grid;


    grid-template-columns:

    1fr 1fr;


    gap:20px;


}



input,
textarea,
select{


    width:100%;


    padding:17px;


    border:

    1px solid #d8e3dc;


    border-radius:15px;


    font-size:16px;


    background:white;


    outline:none;


    transition:.3s;


}



input:focus,
textarea:focus,
select:focus{


    border-color:#14b86d;


    box-shadow:

    0 0 0 4px rgba(20,184,109,.12);


}



textarea{


    min-height:160px;


    resize:none;


}





form button{


    background:#14b86d;


    color:white;


    padding:18px;


    border:none;


    border-radius:50px;


    font-size:18px;


    font-weight:700;


    cursor:pointer;


    transition:.3s;


}




form button:hover{


    background:#0e9255;


    transform:translateY(-3px);


}







/* =========================================
   SOCIAL NETWORKS
========================================= */


.social{


    display:flex;


    justify-content:center;


    gap:25px;


    margin-top:30px;


}



.social a{


    width:60px;


    height:60px;


    display:flex;


    align-items:center;


    justify-content:center;


    background:white;


    color:#14b86d;


    border-radius:50%;


    font-size:28px;


    box-shadow:

    0 10px 25px rgba(0,0,0,.08);


    transition:.3s;


}




.social a:hover{


    background:#14b86d;


    color:white;


    transform:

    translateY(-5px);


}








/* =========================================
   FLOAT WHATSAPP
========================================= */


.float-whatsapp{


    position:fixed;


    right:30px;


    bottom:30px;


    width:70px;


    height:70px;


    background:#25d366;


    color:white;


    border-radius:50%;


    display:flex;


    align-items:center;


    justify-content:center;


    font-size:38px;


    box-shadow:

    0 15px 35px rgba(0,0,0,.25);


    z-index:999;


    transition:.3s;


}



.float-whatsapp:hover{


    transform:scale(1.1);


}







/* =========================================
   FOOTER
========================================= */


footer{


    background:#17324d;


    color:white;


    padding:70px 0 30px;


    margin-top:100px;


}



.footer-grid{


    display:grid;


    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));


    gap:40px;


}



.footer-grid h3{


    color:#14b86d;


    margin-bottom:20px;


    font-size:22px;


}



.footer-grid p{


    opacity:.85;


    margin-bottom:10px;


}



.footer-grid a{


    display:block;


    margin-bottom:12px;


    opacity:.85;


    transition:.3s;


}



.footer-grid a:hover{


    color:#14b86d;


}



.copyright{


    text-align:center;


    margin-top:50px;


    padding-top:25px;


    border-top:

    1px solid rgba(255,255,255,.15);


    opacity:.7;


}






/* =========================================
   ALERTS
========================================= */


.success{


    background:#e8fff2;


    color:#0b8b4d;


    padding:18px;


    border-radius:15px;


}



.error{


    background:#ffecec;


    color:#cc2222;


    padding:18px;


    border-radius:15px;


}






/* =========================================
   PRICE / BADGE
========================================= */


.price{


    color:#14b86d;


    font-size:32px;


    font-weight:800;


}



.badge{


    display:inline-block;


    background:#14b86d;


    color:white;


    padding:7px 18px;


    border-radius:30px;


    font-size:14px;


}
/* =========================================
   CHISTOFAYNIK STYLE.CSS
   PART 3/3
   RESPONSIVE + ANIMATIONS + UTILITIES
========================================= */



/* =========================================
   ANIMATIONS
========================================= */


.fade{


    animation:

    fadeIn 1s ease;


}



@keyframes fadeIn{


    from{


        opacity:0;


        transform:

        translateY(30px);


    }



    to{


        opacity:1;


        transform:

        translateY(0);


    }


}





.slide-left{


    animation:

    slideLeft 1s ease;


}



@keyframes slideLeft{


    from{


        opacity:0;


        transform:

        translateX(-40px);


    }


    to{


        opacity:1;


        transform:

        translateX(0);


    }


}






.slide-right{


    animation:

    slideRight 1s ease;


}



@keyframes slideRight{


    from{


        opacity:0;


        transform:

        translateX(40px);


    }



    to{


        opacity:1;


        transform:

        translateX(0);


    }


}








/* =========================================
   HOVER EFFECTS
========================================= */



.zoom{


    transition:.35s;


}



.zoom:hover{


    transform:

    scale(1.05);


}





.shadow{


    box-shadow:

    0 15px 35px rgba(0,0,0,.08);


}




.rounded{


    border-radius:25px;


}






/* =========================================
   FLEX HELPERS
========================================= */


.flex{


    display:flex;


}



.flex-center{


    display:flex;


    justify-content:center;


    align-items:center;


}



.space-between{


    display:flex;


    justify-content:space-between;


    align-items:center;


}






/* =========================================
   GRID HELPERS
========================================= */


.grid-2{


    display:grid;


    grid-template-columns:

    repeat(2,1fr);


    gap:40px;


}



.grid-3{


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:30px;


}



.grid-4{


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}






/* =========================================
   SPACING
========================================= */


.mt-20{

    margin-top:20px;

}



.mt-30{

    margin-top:30px;

}



.mt-50{

    margin-top:50px;

}



.mt-80{

    margin-top:80px;

}




.mb-20{

    margin-bottom:20px;

}



.mb-50{

    margin-bottom:50px;

}





.py-80{


    padding:

    80px 0;


}



.py-100{


    padding:

    100px 0;


}






/* =========================================
   SCROLLBAR
========================================= */


::-webkit-scrollbar{


    width:10px;


}



::-webkit-scrollbar-track{


    background:#eef8f2;


}



::-webkit-scrollbar-thumb{


    background:#14b86d;


    border-radius:30px;


}








/* =========================================
   TABLES
========================================= */


table{


    width:100%;


    border-collapse:collapse;


    background:white;


    border-radius:20px;


    overflow:hidden;


}



th{


    background:#14b86d;


    color:white;


    padding:15px;


}



td{


    padding:15px;


    border-bottom:

    1px solid #eee;


}



tr:hover{


    background:#f5faf7;


}








/* =========================================
   MOBILE MENU + TABLET
========================================= */



@media(max-width:1100px){



    .hero{


        flex-direction:column;


        text-align:center;


    }



    .hero-text h1{


        font-size:48px;


    }



    .about{


        grid-template-columns:1fr;


    }




    .stats{


        grid-template-columns:

        repeat(2,1fr);


    }



    .booking{


        flex-direction:column;


    }



}








/* =========================================
   TABLET
========================================= */


@media(max-width:768px){



    .header .container{


        flex-direction:column;


        gap:20px;


    }




    nav{


        flex-direction:column;


        gap:15px;


    }




    nav a{


        font-size:15px;


    }




    .hero{


        padding:60px 0;


    }




    .hero-text h1{


        font-size:38px;


    }




    .hero-text p{


        font-size:17px;


    }




    .section-title{


        font-size:32px;


    }




    .page-header h1{


        font-size:38px;


    }




    .contact-hero h1{


        font-size:36px;


    }




    .contact-hero p{


        font-size:17px;


    }





    .input-group{


        grid-template-columns:1fr;


    }





    .form-box{


        padding:30px 20px;


    }





    .stats{


        grid-template-columns:

        1fr;


    }




    .grid-2,
    .grid-3,
    .grid-4{


        grid-template-columns:

        1fr;


    }





    iframe{


        height:350px;


    }



}








/* =========================================
   SMALL PHONES
========================================= */


@media(max-width:500px){



    .container{


        width:92%;


    }




    .logo{


        font-size:26px;


    }




    .hero-text h1{


        font-size:32px;


    }





    .btn,
    .hero-btn,
    .book-btn,
    .main-btn{


        width:100%;


    }





    .contact-card{


        padding:30px 20px;


    }





    .icon{


        width:65px;


        height:65px;


        font-size:26px;


    }





    .social a{


        width:50px;


        height:50px;


        font-size:22px;


    }





    .float-whatsapp{


        width:60px;


        height:60px;


        font-size:30px;


        right:20px;


        bottom:20px;


    }



}