/* Header */
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 12vh;
    width: 100%;
}
.header a {
    text-decoration: none;
}


.header i {
    font-size: 1.80rem;;
    color : var(--text-color-white)
}

.header-title {
    font-size: 8vw;
    font-weight: bold;
    color: var(--text-color-white);
    margin-bottom: 0;
}
#expedition, #home, #settings, #maps, .header-text{
    display: none;
}


/* ------------------------- Media Queries ------------------------- */


/* Tablet */
@media (min-width: 480px) and (max-width: 768px) {
    .header {
        height: 13vh;
    }
    .header i {
        font-size: 2.5rem;
    }
    .header-title {
        font-size: 6vw;
    }
}

/* Pc */
@media (min-width: 769px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 15px;
        padding-right: 15px;
        width: 20vw;
        height: 100vh;
    }

    .header i{
        width: 2vw;
        height: auto;
        align-content:  center;
        font-size: 40px;
        margin-right: 10px;
    }

    .header-title {
        font-size: 2.25vw;
        order: -1;
        margin-bottom: auto;
        margin-top: 20px;
        white-space: nowrap;
        overflow: hidden;
    }

    #expedition, #home, #settings, #profile, #maps, #notifications {
        display: flex;
        order: 0;
        margin-bottom: 40px;
        align-content: space-around;

    }

    .header-item:hover {
        transform: scale(1.1);
        transition: box-shadow 0.3s ease;
    }
    .header-text{
        display: inline-block;
        color: var(--text-color-white);
        font-size: 1.70vw;
        margin-left: 30px;

    }

    #settings{
        display:flex;
        order: 1;
        margin-top: auto;
        align-items: center;
        margin-bottom: 20px;
    }

}