#header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s, padding 0.3s;
    border-bottom: 2px solid var(--primary-accent-color); /* Add bottom border using the blue color */
}


#header .logo {
    display: flex;
    align-items: center;
    margin-left:20px;
}

#header .logo img {
    height: 50px;
    margin-right: 15px;
    transition: height 0.3s;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-text-color);
    transition: all 0.3s;
}

#header .hamburger {
    margin-left: auto;
}

.scrolled {
    background-color: var(--primary-accent-color);
    padding: 10px 20px;
}

.scrolled .logo img {
    height: 40px;
}

@media (max-width: 1100px) {
    #header {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 20px;
    }
}