
	
    /* Import custom font */
    @font-face {
font-display:swap;
      font-family: 'WaldorfAstoria';
      src: url('https://www.sachsavenue.com/WaldorfAstoria.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    /* Toggle Button */
    .menu-toggle {
      font-size: 36px;
      color: #fff;
      background: transparent;
      border: none;
      padding: 8px 15px;
      cursor: pointer;
      position: fixed;
      top: 60px;
      right: 30px;
      z-index: 1001;
      font-family: 'WaldorfAstoria', serif;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle i {
    margin-right: -39px;
    font-size: 40px;
    color: #f4c542;
    margin-top: -7px;
    }

    /* Overlay Menu */
    .overlay-menu {
      height: 100%;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
		 /*	background-image: url('https://www.sachsavenue.com/wp-content/uploads/2025/09/bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;*/
      background: rgba(10, 20, 40, 0.85); /* Transparent overlay */
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .overlay-menu.active {
      display: flex;
    }

    /* Logo */
    .overlay-menu img {
      width: 120px;
      margin-bottom: 40px;
    }

    /* Menu Items */
    .overlay-menu a {
      color: #f4c542; /* Golden */
      font-size: 24px;
      text-decoration: none;
      margin: 15px 0;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-family: 'WaldorfAstoria', serif;
      transition: color 0.3s;
    }

    .overlay-menu a:hover {
      color: #ffffff;
    }
  