/* ======= HEADER BEGIN ======= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    width: 128px;
    height: 128px;
}

.logo-name {
    color: #c28939;
    font-size: 2.5rem;
    font-weight: 500;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 2rem;  /* nav btns <--> lang btn */
    padding-right: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    position: relative;
    padding: 0.5rem 1rem;
    background: none;
    color: #c28939;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #c28939;
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-btn:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
}

.lang-btn {
    padding: 0.5rem;
    background: none;

    border: 3px solid #c28939;
    border-radius: 10px;
    min-width: 40px;

    color: #c28939;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
}

.lang-btn:hover {
    background-color: #91662a55;
}

.lang-btn:active {
    background-color: #91662aaa;
}
/* ======= HEADER END ======= */
