.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #5A3825;
}

.logo img {
    height: 70px;
}

.nav-bar {
    display: flex;
    gap: 35px;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nav-bar a:hover {
    color: #C47A2C;
}