header{
    font-family: "Bebas Neue", sans-serif;
}
.site-header{
    border-bottom: 1px solid #e5e7eb;
}

.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.site-logo img{
    height: 60px;
}
.main-nav{
    display: flex;
    gap: 2rem;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}
.main-nav a {
    font-size: 22px;
    font-weight: 500;
    color: var(--accent-text);

    letter-spacing: 1px;   /* key part */
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;

    &:hover {
        color: var(--primary);
    }
}

.header-cta{
    background-color: var(--accent);
    color: var(--accent-text);
    font-size: 19px;
    /* font-weight: bold; */
    letter-spacing: 0.8px;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    &:hover {
        background-color: var(--primary);
        color: var(--text-light);
    }
}

