.main-header {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #101010;
    position: sticky;
    top: 0;
    z-index: 100000;
    width: 100%;
    overflow: hidden;
    height: 60px;
}

.navigation-menu__burger-button {
    display: none;
}

.navigation {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 20px;
}

.navigation-button-container,
.navigation-logo-container {
    width: 336px;
}

.navigation-logo-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.navigation-button-container {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.navigation-logo {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.navigation-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-self: center;
}

.navigation-menu__item-link {
    font-size: 18px;
    font-weight: 400;
    color: #f5f5f5;
}

.navigation-button {
    padding: 16px 32px 16px 32px;
    gap: 8px;
    border-radius: 24px;
    background-color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    color: #101010;
    
    font-weight: 700;
}

.navigation-button:hover {
    cursor: pointer;
    background-color: #ff6a00;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -240px;
    width: 240px;
    height: 100%;
    background-color: rgba(16, 16, 16, 1);
    color: white;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    padding-top: 50px;
}

.sidebar ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    font-size: 18px;
    font-weight: 400;
    color: #f5f5f5;
    transition: color 0.3s;
}

.sidebar ul li a:hover {
    color: #ff6a00;
}

.sidebar.open {
    right: 0;
}

.navigation-menu__burger-button,
.sidebar-close-button {
    background: none;
    cursor: pointer;
}

.sidebar-close-button {
    position: absolute;
    right: 16px;
}

@media (max-width: 600px) {
    .navigation-button-container {
        display: none;
    }

    .navigation-logo-container {
        width: 168px;
    }

    .navigation-menu {
        display: none;
    }

    .navigation-menu__burger-button {
        display: block;
    }
}

@media (min-width: 600px) {
    .navigation-button-container {
        display: none;
    }

    .navigation-button-container,
    .navigation-logo-container {
        width: 200px;
    }

    .navigation-menu {
        gap: 16px;
    }
}

@media (min-width: 1000px) {
    .navigation-button-container {
        display: flex;
    }

    .navigation-button-container,
    .navigation-logo-container {
        width: 250px;
    }

    .navigation-menu {
        gap: 32px;
    }
}

@media (min-width: 1300px) {
    .navigation-button-container,
    .navigation-logo-container {
        width: 336px;
    }
}
