@charset "UTF-8";
/* CSS Document */

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

.navbar-toggler {
    border: 0;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

li {
    list-style: none;
    font-size: 1.4em;
    color: #000;
    text-transform: uppercase;
    font-weight: 200;
}

li.dropdown-item {
    font-size: 0.2em;
}

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

.navbar {
    min-height: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px;
}

.nav-menu {
    display: flex; /* Přidáno pro flexbox */
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    transition: 0.7s ease;
}

.nav-link:hover {
    color: #f0f0f0; /* Přidáno pro hover efekt */
}

.bar {
    display: block;
    width: 45px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: black;
}
