@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');

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

body{
    font-family: "Zalando Sans Expanded", sans-serif;
    background-image: url("obrázek.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header{
    padding: 20px;
}

.logo_a_nazevfirmy{
    display: flex;
    align-items: center;
}

.logo img{
    width: 100px;
}

.nazev h1{
    font-size: 24px;
    margin-left: 10px;
}

.menu_a_bar{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart_icon img{
    width: 40px;
}

.searchbox input{
    padding: 8px 12px;
    border: 1px solid #ccc;
}

.menu button{
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
    transition: color 0.3s;
}

#sideMenu{
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: rgb(0, 0, 0);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 999;
}

#sideMenu a{
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
}

#sideMenu a:hover{
    background: #333;
}

#sideMenu.active{
    right: 0;
}

#itemsList {
    position: fixed;
    background: #111;
    width: 160px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 9999;
}

#itemsList li a {
    display: block;
    padding: 8px;
    color: white;
    text-decoration: none;
}

#itemsList li a:hover {
    background: #222;
}

.kategorie{
    display: flex;
}

.muzy{
    width: 50%;
    margin-top: 15%;
    margin-left: 2%;
    font-size: 150%;
    color: black;
}

.muzy a{
    text-decoration: none;
    color: black;
}

.zeni{
    width: 50%;
    margin-top: 15%;
    margin-left: 70%;
    font-size: 150%;
    color: black;
}

.zeni a{
    text-decoration: none;
    color: black;
}

.footer p{
    bottom: 0;
    position: fixed;
    width: 100%;
    text-align: center;
    background-color: whitesmoke;
    padding: 5px 0;
}

@media (max-width: 768px) {

    body {
    font-family: "Zalando Sans Expanded", sans-serif;
    background-image: url("download.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    }

    .logo_a_nazevfirmy {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo img {
        width: 80px;
    }

    .nazev h1 {
        font-size: 22px;
        margin: 10px 0;
    }

    .menu_a_bar {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .searchbox input {
        width: 180px;
    }

    .cart_icon img {
        width: 35px;
    }

    .menu button {
        font-size: 28px;
    }

    .kategorie {
        flex-direction: column;
        align-items: center;
        margin-top: 150px;
    }

    .muzy,
    .zeni {
        width: 100%;
        margin: 20px 0;
        text-align: center;
        font-size: 140%;
        color: white;
    }

    .zeni {
        margin-left: 0;
    }

    .footer p {
        font-size: 14px;
        padding: 10px 0;
    }


    #itemsList {
        width: 90%;
        left: 5%;
    }

    .idk{
        display: none;
    }

    .zeni a{
    text-decoration: none;
    color:  white;
    }
    .muzy a{
    text-decoration: none;
    color: white;
    }
}
