/* ==================================================
   HEADER
================================================== */

.site-header {
    max-width: var(--lpr-max-width);
    margin: 0 auto;
    padding: 25px 20px;
}

/* ==================================================
   BRANDING
================================================== */

.site-branding a {
    color: var(--lpr-blue);
    text-decoration: none;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

/* ==================================================
   LOGO
================================================== */

.custom-logo {
    width: auto;
    max-height: 120px;
}

@media (max-width: 768px) {

    .custom-logo {
        max-height: 70px;
    }

}

/* ==================================================
   TOP BAR
================================================== */

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ==================================================
   ACTION BUTTONS
================================================== */

.search-icon,
.login-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

    color: var(--lpr-dark);
    font-size: 2rem;

    transition: color 0.2s ease;
}

.search-icon:hover,
.login-icon:hover,
.search-icon:focus-visible,
.login-icon:focus-visible {
    color: var(--lpr-blue);
}

@media (max-width: 768px) {

    .search-icon,
    .login-icon {
        font-size: 1.5rem;
    }

}

/* ==================================================
   MAIN NAVIGATION
================================================== */

.main-navigation {
    margin-top: 20px;

    overflow-x: auto;

    white-space: nowrap;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.main-navigation::-webkit-scrollbar {
    display: none;
}

.main-navigation ul {
    display: flex;
    flex-wrap: nowrap;

    gap: 30px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-navigation a {
    color: var(--lpr-dark);
    text-decoration: none;
    font-weight: 600;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
    color: var(--lpr-blue);
}