.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


header {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.nav-linklist-container button.active {
    background-color: var(--button-hover-bg-color);
    transform: translateY(-2px);
}

.nav-linklist-container button.active::after {
    transform: scaleX(1);
}


/* Header LEFT */
@media (min-width: 800px) and (orientation: landscape) {
    body {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    header {
        min-width: 200px;
        width: 20vw;
        min-height: 100vh;
        position: sticky;
        top: 0;
        float: left;
        padding-left: 20px;
        background-color: var(--header-bg-color);
        display: flex;
        align-items: center;
    }

    main {
        width: 80vw;
    }

    .nav-banner-container {
        height: 30%;
        width: 33%;
        margin-right: 7%;
        align-content: center;
        display: flex;
        align-items: center;
    }

    .nav-banner-vertical {
        display: block;
    }

    .nav-banner-horizontal {
        display: none;
    }

    .header-container{
        flex-direction: row;
        align-items: center;
        height: 100vh;
        position: relative;
    }

    .nav-banner {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-linklist-container {
        margin: 0;
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-linklist-container button {
        width: 100%;
        background-color: var(--button-bg-color);
        margin: 3vh;
        padding: 12px;
        color: white;
        border: 1px solid var(--button-border-color);
        border-radius: 6px;
        font-size: 1em;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        outline: none;
    }

    .nav-linklist-container button:focus {
        outline: none;
    }

    .nav-linklist-container button::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .nav-linklist-container button:hover {
        background-color: var(--button-hover-bg-color);
        cursor: pointer;
        transform: translateY(-2px);
    }

    .nav-linklist-container button:hover::after {
        transform: scaleX(1);
    }
}


/* Header TOP */
@media (max-width: 799px) or (orientation: portrait) {
    body{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    header {
        position: sticky;
        top: 0;
        width: 100vw;
        height: 15vh;
        background-color: var(--header-bg-color)
    }

    main {
        top: 15vh;
        width: 100vw;
        margin: 0;
    }

    .nav-banner-container {
        height: 50%
    }

    .nav-banner-vertical {
        display: none;
    }

    .nav-banner-horizontal {
        display: block;
    }

    .header-container {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: space-around;
        flex-wrap: wrap;
    }


    .nav-banner {
        height: 100%;
    }

    .nav-linklist-container {
        height: 50%;
        display: flex;
        gap: 8px;  
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0 10px;
    }

    .nav-linklist-container button {
        background-color: var(--button-bg-color);
        width: 18vw;
        padding: 8px;
        color: white;
        border: 1px solid var(--button-border-color);
        border-radius: 6px;
        font-size: 0.9em;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-linklist-container button::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .nav-linklist-container button:hover {
        background-color: var(--button-hover-bg-color);
        cursor: pointer;
        transform: translateY(-2px);
    }

    .nav-linklist-container button:hover::after {
        transform: scaleX(1);
    }

}

