﻿.navigation-component {
    display: flex;
    height: 64px;
    gap: 32px;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-light-background);
    box-shadow: var(--shadow-small);
    padding: 0 32px 0 32px;
}

.navigation-component-links-container {
    display: none;
}

.navigation-component-primary-link {
    display: flex;
}

.navigation-component-menu-button {
    display: flex;
}

.navigation-component-menu {
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-background);
}

.navigation-component-menu-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
}

.navigation-component-menu-close-button {
    position: absolute;
    top: 12px;
    right: 32px;
}

@media (min-width: 710px) {
    .navigation-component-links-container {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .navigation-component-primary-link {
        display: none;
    }

    .navigation-component-menu-button {
        display: none;
    }

    .navigation-component-menu {
        display: none;
    }
}

@media (min-width: 1200px) {
    .navigation-component {
        flex-direction: column;
        width: 64px;
        height: unset;
        padding: 32px 0 32px 0;
        gap: 32px;
    }

    .navigation-component-links-container {
        flex-direction: column;
    }
}
