@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Oleo+Script:wght@400;700&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

/*Barvy*/
.bg-plum-grad
{   background-image: linear-gradient(purple, #a72c8a85);    }

.bg-plum-grad-left-mid-right
{   background-image: linear-gradient(to right, #e01ab285 90%, purple, #e01ab285 10%, purple, #e01ab285 90%); }

.bg-plum-grad-down
{   background-image: linear-gradient(#e01ab285, rgba(128, 0, 128, 0.600));   }

.bg-plum-grad-right
{   background-image: linear-gradient(to right, #e01ab285, purple 90%);   }

.bg-plum-grad-left
{   background-image: linear-gradient(to left, #e01ab285, purple 90%);   }

.bg-purple{
    background-color: purple;
}



body{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

nav{
    display: none;
}

/*Navigace*/
.navigace{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    height: 150px;
}
.navigace h1{
    font-family: "Great Vibes", cursive;
    font-size: 48px;
    color: white;
}


.navigace nav{
    display: flex;
    width: 600px;
    color: white;
    justify-content: space-evenly;
    align-items: center;
}

.navigace nav a{
    color: white;
    text-decoration: none;
    font-family: "Courgette", cursive;
    font-size: 22px;
    transition: 0.75s;
}
.navigace nav a:hover{    /*Při hoveru změna barvy*/
    color: purple;
}

/*Úvod*/
.uvod{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 200px;
    padding-top: 250px;
}

.nadpis_text{
    width: 500px;
}
.nadpis_text h2{
    font-size: 28px;
    color: white;
    padding: 10px;
}
.nadpis_text p{
    font-size: 18px;
    font-family: "Playfair Display", serif;
    color: purple;
    margin-top: 50px;
}
.uvod img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px solid plum;
}

/*Služby*/
.sluzby
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 150px;
}
.sluzby h2{
    font-size: 28px;
    color: purple;
    padding: 10px;
    width: 250px;
    text-align: center;
}

.sloupce{
    display: flex;
    gap: 100px;
    justify-content: center;
    margin-top: 100px;
}
.sloup{
    display: flex;
    flex-direction: column;
    gap: 200px;
}
.metoda{
    width: 500px;
    padding: 10px;
    border-radius: 10px;
}
.metoda h3{
    color: purple;
    font-size: 22px;
}
.metoda p{
    color: rgba(0, 0, 0, 0.800);
    font-size: 18px;
}

/*Ceník*/
.cenik{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 150px;
}
.cenik h2{
    font-size: 28px;
    color: purple;
    padding: 10px;
    width: 250px;
    text-align: center;
}

.cenik_list{
    display: flex;
    flex-direction: column;
    width: 60%;
}
.cenik_list p{
    font-weight: 600;
    font-size: 22px;
    color: purple;
    padding: 5px;
    margin-top: 50px;
}

.typ_masaze{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
/*Přepisujeme cenik_list p*/
.typ_masaze p{
    color: black !important;
    font-weight: 400 !important;
    margin-top: 20px !important;
    padding: 0 !important;
}
.typ_masaze_big{
    font-size: 20px !important;
}
.typ_masaze_small{
    font-size: 18px !important;
}

/*Kontakty*/
.kontakty{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 150px;
    margin-bottom: 100px;
}
.kontakty h2{
    font-size: 28px;
    color: purple;
    padding: 10px;
    width: 250px;
    text-align: center;
}

.kontakty_vse{
    width: 80%;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.kontakty_vse iframe{
    width: 50%;
    height: 400px;
    padding: 10px;
}

.kontakty_list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}
.kontakty_list p{
    font-size: 22px;
    padding: 10px;
    white-space: pre;
}
.kontakty_list a{
    color: black;
    text-decoration: none;
    font-size: 22px;
    padding: 10px;
    white-space: pre;
}


@media (max-width:1440px) {
    
    /*Navigace*/
    .navigace h1{
        font-size: 36px;
    }

    .navigace nav{
        width: 500px;
    }
    .navigace nav a{
        font-size: 18px;
    }

    /*Úvod*/
    .uvod{
        gap: unset;
        justify-content:space-evenly;
    }

    .nadpis_text
    {
        width: 350px;
    }
    .nadpis_text h2{
        font-size: 22px;
    }
    .nadpis_text p{
        font-size: 16px;
    }

    .uvod img{
        width: 220px;
        height: 220px;
    }

    /*Služby*/
    .sluzby h2{
        font-size: 24px;
        width: 220px;
    }

    .sloup{
        gap: 150px;
    }
    .metoda{
        width: 400px;
    }
    .metoda h3{
        font-size: 20px;
    }
    .metoda p{
        font-size: 16px;
    }

    /*Ceník*/
    .cenik h2{
        font-size: 24px;
        width: 220px;
    }

    .cenik_list p{
        font-size: 20px;
    }
    .typ_masaze_big{
    font-size: 18px !important;
    }
    .typ_masaze_small{
        font-size: 16px !important;
    }

    /*Kontakty*/
    .kontakty h2{
    font-size: 24px;
    }

    .kontakty_vse iframe{
        width: 45%;
        height: 350px;
        padding: 10px;
    }

    .kontakty_list p{
        font-size: 20px;
    }
    .kontakty_list a{
        font-size: 20px;
    }
}

@media (max-width:1232px) {
        /*Navigace*/
    .navigace h1{
        font-size: 36px;
    }

    .navigace nav{
        width: 400px;
    }
    .navigace nav a{
        font-size: 18px;
    }

    /*Úvod*/
    .uvod{
        gap: unset;
        justify-content:space-evenly;
    }

    .nadpis_text h2{
        font-size: 22px;
    }
    .nadpis_text p{
        font-size: 16px;
    }

    .uvod img{
        width: 220px;
        height: 220px;
    }

    /*Služby*/
    .sluzby h2{
        font-size: 24px;
        width: 220px;
    }

    .sloupce{
        gap: 80px;
    }

    .sloup{
        gap: 150px;
    }
    .metoda{
        width: 350px;
    }
    .metoda h3{
        font-size: 20px;
    }
    .metoda p{
        font-size: 16px;
    }

    /*Ceník*/
    .cenik h2{
        font-size: 24px;
        width: 220px;
    }

    .cenik_list p{
        font-size: 20px;
    }
    .typ_masaze_big{
    font-size: 18px !important;
    }
    .typ_masaze_small{
        font-size: 16px !important;
    }

    /*Kontakty*/
    .kontakty h2{
    font-size: 24px;
    }

    .kontakty_vse iframe{
        width: 45%;
        height: 350px;
        padding: 10px;
    }

    .kontakty_list p{
        font-size: 20px;
    }
    .kontakty_list a{
        font-size: 20px;
    }
}

@media (max-width:1024px) {
    
/*----------------------------------------------------*/
    nav{
        width: 100%;
        max-height: 140px;
        background-color: transparent;
        top: 0;
        display: block;
    }

    .nav-toggle-label{
        position: fixed;
        right: 4em;
        top: 3.6em;
        z-index: 1000;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after{
        display: block;
        background: #f3f3f3;
        height: 2px;
        width: 1.5em;
        border-radius: 2px;
        position: relative;
        transition: all .1s ease-in-out;
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
        transition: all .2s ease-in-out;
    }

    .nav-toggle-label span::before{
        bottom: 7px;
    }
    .nav-toggle-label span::after{
        top: 7px;
    }

    .margin-top-nav{
        margin-top: 5em;
    }
    ul{
        position: fixed;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        text-align: left;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        height: 50px;
        z-index: 500;
        margin: 149px 0 0 0; /*149px aby nebyla mezera mezi navigací a názvem*/
        list-style: none;
        padding: 0;
    }

    ul li, ul a{
        text-decoration: none;
        color: plum;
        font-family: "Courgette", cursive;
        font-size: 18px;
        transition: 1s;
    }

    ul a:hover{
        color: purple;
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0px 0px 200px 1px white;

        transition: 2s;
    }
/*-------------------------------------------------*/

.navigace nav{
    display: none;
}

/*Úvod*/
.uvod{
    flex-direction: column;
    gap: 60px;
}

/*Služby*/
.sluzby{
    padding-top: 100px;
}

.sloupce{
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}
.sloup{
    margin-top: 0px !important;
    gap: 0;
}
.metoda{
    margin-top: 50px;
}

/*Ceník*/
.cenik{
    padding-top: 100px;
}

.typ_masaze p{
    font-size: 16px !important;
}

/*Kontakty*/
.kontakty_vse{
    flex-direction: column-reverse;
}
.kontakty iframe{
    width: 60%;
}
.kontakty_list p{
    font-size: 18px;
    background-image: linear-gradient(#E01AB3, #F8ABC6 90%) !important;
}
.kontakty_list a{
    font-size: 18px;
    background-image: linear-gradient(#E01AB3, #F8ABC6 90%) !important;
}
}

@media (max-width:768px) {
    .nav-toggle-label{
        top: 2.5em;
        right: 1.5em;
    }

    ul a{
        font-size: 16px;
    }

    .nadpis_text
    {
        width: 300px;
    }

    /*Služby*/
    .sluzby h2{
        font-size: 22px;
        width: 180px;
    }

    .metoda{
        width: 300px;
    }

    /*Ceník*/
    .cenik h2{
        font-size: 22px;
        width: 180px;
    }

    .cenik_list{
        width: 70%;
    }
    .cenik_list p{
        font-size: 18px;
    }

    /*Kontakty*/
    .kontakty h2{
        font-size: 22px;
        width: 180px;
    }

    .kontakty iframe{
    width: 90%;
    }
    .kontakty_list{
        width: 90%;
    }
}