.header{
    grid-area: header;
    width: 100%;
    height: 100%;
    max-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
}
.header svg{
    fill: var(--gray);
    height: 60%;
    transition: all 150ms ease-out;
}
.header h1{
    color: var(--gray);
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    font-weight: 750;
    letter-spacing: 0.5px;
    transition: all 150ms ease-out;
}
.header #book-now-btn{
    margin-left: auto;
    margin-right: 2vw;
    font-size: clamp(0.5rem, 0.8vw, 0.8rem);
    font-weight: 750;
    color: var(--gray);
    font-family: var(--font-primary);
    transition: all 150ms ease-out;
}
.header #menu{
    margin-right: auto;
    margin-left: 2vw;
}

.header svg:hover{
    fill: gray;
}
.header h1:hover{
    color: gray;
}
.header #book-now-btn:hover{
    color: gray;
}
.nav{
    position: fixed;
    height: 100%;
    width: 25%;
    background-color: var(
    --black-bg);
    z-index: 10;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    top: 0;
    left: -100%;
    gap: 0.5vw;
    padding-top: 10px;
}
.nav svg{
    fill: var(--gray);
    height: 35px;
    margin-left: 1vw;
    transition: all 150ms ease-out;

}
.nav p{
    color: var(--gray);
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1em;
    transition: all 150ms ease-out;
}
.nav p:hover{
    color: var(--off-white);
}
.nav svg:hover{
    fill: var(--off-white);
}