nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: sticky;
    /* background-color: #f8f8f8; */
}

.languages-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.czech {
    text-decoration: none;
}

.czech img {
    width: 30px;
}

.logo {
    font-size: 1.2em;
    font-weight: bolder;
}

.logo a {
    text-decoration: none;
    color: #FBF5DE;
    text-shadow: 1px 1px 10px #FBF5DE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 80px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 50px;
}

.nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    color: #FBF5DE;
}

.nav-links .active {
    border-radius: 30px;
    padding: 10px 20px;
    border: none;
    box-shadow: 0 0 10px #fcefdc, 0 0 20px #fcefdc;
    transform: translateY(-2px);
}

.burger {
    display: none;
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    .czech {
        display: none;
    }
    .logo {
        margin-left: 50px;
        flex-grow: 1;
        text-align: center;
        font-size: 1.2em;
    }
    .burger {
        display: block;
        cursor: pointer;
        padding: 10px;
    }
    .burger span {
        display: block;
        width: 25px;
        height: 4px;
        background-color: #FBF5DE;
        margin: 4px 0;
    }
}

/* Fullscreen menu */
.fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    color: #FBF5DE;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fullscreen-menu .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin: 0;
}

.fullscreen-menu .czech {
    display: block;
    margin-top: 20px;
}

.fullscreen-menu a {
    text-decoration: none;
    color: #FBF5DE;
    font-size: 1.5em;
}

.fullscreen-menu.active {
    display: flex;
}

@media (max-width: 900px) and (min-width: 600px) {
    nav {
        padding-left: 40px;
        padding-right: 40px;
    }

    .nav-links {
        gap: 20px;
    }
}