nav {
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    font-family: helvetica;
    font-size: 14px;
    position: fixed;
    right: 0px;
    left: 0px;
    top: 0px;
    z-index: 100;

    
    background: rgba(255, 255, 255, 0.2);  
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  

    border-bottom: 1px solid rgba(255,255,255,0.1);
  
  
    background-image: linear-gradient(
      to bottom,
      rgba(255,255,255,0.1),
      rgba(255,255,255,0.05)
    );
  
    transition: all 0.3s ease;
}

#navOptionsContainer {
    display: flex;
    width: 450px;
    justify-content: space-between;
}

#hamburgerBtn {
    display: none;
  }


  #mobileMenu a {
    font-family: 'helRegN';  
    font-size: 44px;
    margin: 20px 0;
    text-decoration: none;
    color: rgb(255, 255, 255);
  }


  #navName a:hover {
    background-color: #1C24FF;
    color: white;
}

#navGallery a:hover {
    background-color: #1C24FF;
    color: white;
}

#navAbout a:hover {
    background-color: #1C24FF;
    color: white;
}

#navContact a:hover {
    background-color: #1C24FF;
    color: white;
}

#navAtelier a:hover {
    background-color: #1C24FF;
    color: white;
}


nav a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(0,0,0,0.3); 
    border-radius: 50px;
    text-decoration: none;
    color: black;
    font-weight: 500; 
    transition: all 0.3s ease;
}


nav a:hover {
    background: rgba(255, 255, 255, 0.25); 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


#navName a {
    padding: 0.4rem 0.8rem;
    font-weight: 500;
}

@media (min-width: 670px) {
    #hamburgerBtn {
      display: none !important;
    }
  
    #mobileMenu {
      display: none !important; 
    }
  
    #navOptionsContainer {
      display: flex !important; 
      justify-content: flex-end; 
      gap: 30px;
    }
  }

  @media (max-width: 670px) {

    body {
        min-width: 380px;
    }

    nav {
        flex-direction: row;
        height: 67px;
    }

    #navOptionsContainer {
        width: 350px;
        font-weight: medium;
        font-size: 12px;
    }

    #navOptionsContainer p {
        margin: 0px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    #navName p {
        margin: 0px;
        margin-top: 10px;
    }

    #mobileMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #1C24FF;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding-left: 30px;
        justify-content: center;
        transition: height 0.4s ease;
        z-index: 9999;
      }

      #hamburgerBtn {
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(0,0,0,0.3);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        padding: 8px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10000;
      }
    

      #hamburgerBtn span {
        display: block;
        width: 18px;
        height: 1.5px;
        transition: all 0.3s ease;
      }
    
      #hamburgerBtn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
       
      }
      #hamburgerBtn.active span:nth-child(2) {
        opacity: 0;
      }
      #hamburgerBtn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      
      }
    
      #navOptionsContainer {
        display: none;
      }
    
      #mobileMenu.open {
        height: 100vh;
      }

      #closeMobileMenu {
        position: absolute;
        top: 20px;
        right: 20px; 
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
        z-index: 10000;
      }
      
  }