.header {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1vh 2vh;
    color: var(--text_primary);
    font-family: var(--text_font);
    text-transform: uppercase;
}

.header_left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header_logo_img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.header_nav {
    display: flex;
    gap: 1vh;
    font-weight: bold;
    font-family: var(--text_font);
}

.nav_item {
    cursor: pointer;
    padding: 0.5vh 1vh;
    border-radius: 0.5vh;
    transition: color 0.2s ease;
    font-size: 0.8rem;
}

.nav_item:hover {
    color: var(--accent);
}

.header_right {
    display: flex;
    align-items: center;
    gap: 0.5vh;
}

.header_button {
    background: none;
    border: none;
    color: var(--text_primary);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.5vh 1vh;
    transition: color 0.2s;
}

.header_button:hover {
    color: var(--accent);
}

/* Responsive Brackets */
@media (min-width: 768px) {
    .header {
        flex-direction: row;
    }

    .header_left {
        flex-direction: row;
    }

    .nav_item {
        font-size: 1rem;
    }

    .header_button {
        font-size: 0.6rem;
    }
}

@media (min-width: 1024px) {
    .nav_item {
        font-size: 1.5rem;
    }

    .header_button {
        font-size: 1.2rem;
    }

    .header_logo_img {
        width: 80px;
        height: 80px;
    }
}