/* header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    z-index: 1000;
    padding: 30px;
}
#header.scrolled {
    /* background-color: rgba(0, 0, 0, 0.6); */
    backdrop-filter: blur(10px); /* אפקט זכוכית מט */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
    background-color: black;
    /* border-bottom: 1px solid rgb(0, 160, 184); */
    /* box-shadow: rgba(255, 255, 255, .2) 0 3px 20px inset, rgb(255, 255, 255) 0 3px 30px, rgb(255, 255, 255) 0 5px 13px; */
  }

#logoHeader {
    width: clamp(120px, 8vw, 140px);
    display: block;
}

#menuIcon {
    width: clamp(40px, 3vw, 50px);
    cursor: pointer;
}

/* ------------------------------------------------------------- */
/* menu */
#menu {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    flex-direction: column;
    width: 20vw;
    height: 100%;
    /* background-color: black; */
    /* box-shadow: rgba(255, 255, 255, .2) 0 3px 100px inset, rgba(0, 0, 0, .1) 0 3px 30px, rgba(0, 0, 0, .1) 0 5px 13px; */
    /* background-color: rgb(0, 22, 31); */
    z-index: 1001;
    /* border-left: 1px solid rgb(57, 57, 57); */
    background-color: black;
    box-shadow: 5px 0 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1300px) {
    #menu {
         width: 50vw;
     }
   }

#closeBtn {
    margin-top: 20px;
    font-size: 30px;
    background: none;
    outline: none;
    border: none;
    color: white;
    cursor: pointer;
}
#closeBtn:hover {
    color: rgb(153, 153, 153);
}

.menu-button {
    width: 100%;
    text-align: start;
    background-color: transparent;
    outline: none;
    color: white;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 3vw, 20px);
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.menu-button:hover {
    color: white;
    font-weight: 800;
    background-color: rgb(3, 114, 133);
    transform: scale(1.00);
}