

        .invisible {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        /* Navigation Container */
        .nav--horizontal {
            background:none;
            position: relative;
            padding: 0 20px;
        }

nav.block {overflow: visible;}

        /* Logo Container */
        .logo {position: relative;
          left:-20px!important;
            display: ;
        }

        /* Mobile Menu Toggle */
      .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 15px 0;
            color: black;
            position: relative;
            width: 30px;
            height: 30px;
            margin: 15px 0;
        }

      .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: black;
            margin: 5px 0;
            transition: 0.3s;
            transform-origin: center;
        }

     .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

      .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

       .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Level 1 Navigation */
        .level_1 {
            list-style: none;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .level_1 > li {
            position: relative;
            margin-left: 30px;
        }

      .nav--horizontal .level_1 > li:first-child {
            margin-left: 0;
        }

        .level_1 a, 
        .level_1 strong {
            display: block;
            padding: 10px 0;
            text-decoration: none;
            color: black;
            font-weight: normal;
            position: relative;
            transition: all 0.3s ease;
        }

       .level_1 strong.active {
            color:rgb(176,159,117)!important;
           padding: 10px 0;
            font-weight: normal;
        }
       .level_1 .trail {
            color:rgb(176,159,117)!important;
            font-weight: normal;
        }
       .level_2 strong.active {
            color:rgb(176,159,117)!important;
           padding: 15px 0 15px 20px;
            font-weight: normal;
        }


       .level_1 a:hover {
            color: black;
        }

       .level_1 a:hover::after,
       .level_1 a:focus::after {
            width: 100%;
        }

       .level_1 a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: black;
            transition: width 0.3s ease;
        }

       .level_1 strong.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgb(176,159,117)!important;
        }
       .level_1 a.trail::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgb(176,159,117)!important;
        }

       .level_2 strong.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgb(176,159,117)!important;
        }

        /* Dropdown Menu */
       .level_2 {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            list-style: none;
            min-width: 250px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000; 
          text-align: left;
        }

       .submenu:hover .level_2,
       .submenu:focus-within .level_2 {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

       .level_2 li {
            border-bottom: 1px solid #f0f0f0;
        }

       .level_2 li:last-child {
            border-bottom: none;
        }

       .level_2 a {
            padding: 15px 20px;
            color: black;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s ease;
        }

      .level_2 a:hover,
      .level_2 a:focus {
            background-color: #f8f8f8;
        }

/*---------------------- Mobile Styles ---------------------*/
        @media (max-width: 768px) {
           .nav--horizontal {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                z-index:1500;
                display: block;
                font-size: 20px;
                font-weight: bold;
                color: black;
            }

           .menu-toggle {
                display: block;
                margin: -20px 0 0 0;
                z-index: 1001;

            }

           .level_1 {
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                box-shadow: none;
                max-height: none;
                overflow-y: auto;
                transition: right 0.3s ease;
                justify-content: flex-start;
                padding-top: 100px;
                z-index: 1000;
            }

           .nav-open .level_1 {
                right: 0;
            }

         .level_1 > li {
                margin-left: 0;
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

         .nav--horizontal .level_1 > li:last-child {
                border-bottom: none;
            }

           .level_1 a,
           .level_1 strong {
                padding: 15px 20px!important;
                text-align: right;
            }

           .level_1 a::after,
           .level_1 strong.active::after {
                display: none;
            }

            /* Mobile Dropdown */
           .level_2 {
                position: static;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: #f8f8f8;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

         .submenu.mobile-open .level_2 {
                max-height: 300px;
            }

           .level_2 a {
                padding-right: 40px;
                background: #f8f8f8;
                text-align: right;
            }
            
           .level_2 strong {
               color:rgb(176,159,117)!important;
                padding-right: 40px!important;
                background: #f8f8f8;
                text-align: right;
            }


           .submenu > a::after {
                content: ' ▼';
                font-size: 12px;
                float: left;
                transition: transform 0.3s ease;
                margin-right: 10px;
            }

           .submenu.mobile-open > a::after {
                transform: rotate(180deg);
            }
        }
    