/* The top bar */

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
}
  
.logo img {
    height: 7rem;
    width: auto;
    margin: 0 0 0 7rem;
}

.logo h1 a {
    text-decoration: none;  
    color: inherit;         
}

/* Nav bar */
.nav-toggle {
    display: none;      /* Hide hamburger menu on desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #353839;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    height: 7rem; 
}
  
.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0 7rem 0 0;            /* Shift the nav ul more or less right */
    height: 100%;
}
  
.main-nav li {
    display: flex;
    align-items: center;
    height: 100%;
}
  
.main-nav a {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
  
.main-nav a:hover {
    color: #BB0000;
}
  