      :root {
        --color-menu-overlay: #a0e806;
        --color-menu-text: #c9a467;
            --imperial-red: #9c0a0a;
            --temple-gold: #c9a467;
            --aged-paper: #e8dfca;
            --dark-wood: #3a2618;
            --incense-smoke: #4a4a4a;
            --sacred-black: #1a0f0a;
                  --chi-energy: #ff6b35;
      }
.menu-cols .col:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

      a {
        text-decoration: none;
        color: var(--color-menu-text);
      }

      i {
        position: relative;
        top: 1px;
      }


      nav {
        position: fixed;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2em;
        color: #fff;
        z-index: 1000;
      }
      nav {
    justify-content: flex-end; /* Change from space-between */
}
.menu-nav {
    justify-content: flex-end; /* Change from space-between */
}
.menu-open-btn {
  font-family: "Cinzel", serif;
  color: #a67c00;
  font-weight: 800;
  cursor: pointer;
  text-shadow: 0 0 18px rgba(166, 124, 0, 1);
}

      .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      .logo-img {
        height: 50px;
        width: auto;

                    filter: drop-shadow(0 0 10px rgba(201, 164, 103, 0.7));

      }

      .menu-overlay {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 2em;
        background: var(--sacred-black);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 3000 !important;
      }

      .menu-close-btn {
        cursor: pointer;            align-self: flex-end;
  font-family: "Cinzel", serif;
       color:#c9a467; font-weight: 600;
      }

      .menu-nav {
        display: flex;
        align-items: center;
        margin-bottom: 1em;
        color: var(--color-menu-text);
      }

      .menu-nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      .menu-logo-img {
        height: 50px;
        width: auto;
            filter: drop-shadow(0 0 10px rgba(201, 164, 103, 0.7));
      }

      .menu-cols {

      }

      .menu-cols > div {
        flex: 1;
        padding: 1em 0;
      }

      .video {
        width: 50%;
      }

      .video-preview {
        width: 100%;
        height: 0px;
        background: url(./assets/showreel-thumbnail.jpg) no-repeat 50% 50%;
        background-size: cover;
        border-radius: 4px;
      }

      .video-details {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0.5em 0;
        color: var(--color-menu-text);
      }

      .menu-link {
        position: relative;
        width: max-content;
      }

      .menu-link a {
        font-size: 40px;
      }

      .menu-link:after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-menu-text);
        transition: 0.3s all;
      }

      .menu-link:hover.menu-link:after {
        width: 100%;
      }

      .btn {
        position: relative;
        margin: 2em 0;
        border: 1px solid var(--color-menu-text);
        width: max-content;
        padding: 1.25em 2.5em;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
      }

      .btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: var(--color-menu-text);
        transition: 0.3s all;
        z-index: -1;
      }

      .btn:hover a {
        color: var(--sacred-black);
      }

      .btn:hover.btn:before {
        width: 100%;
      }

      .menu-footer {
        display: flex;
        flex-direction: column;
        color: var(--color-menu-text);
      }

      .menu-divider {
        width: 0%;
        height: 1px;
        background: var(--temple-gold);
        margin: 1em 0;
      }

      .menu-footer-copy {
        display: flex;
        justify-content: space-between;
      }

      .socials {
        display: flex;
        gap: 1em;
      }

      @media(max-width: 900px) {
        .menu-overlay {
          height: 100vh;
        }

        .menu-cols {
          display: block;
        }

        .video-preview {
          height: 125px;
        }

        .menu-link a {
          font-size: 30px;
        }

        h1.header {
          font-size: 40px;
        }
      }