/* Logo Placeholder */
.logo-placeholder {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hamburger Icon */
.hamburger-menu {
    width: 50px;
    height: 36px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 9998;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu:hover span {
    background: #B38E4C;
}

/* Off-Canvas Menu */
.offcanvas-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    overflow-y: auto;
}

.offcanvas-menu.active {
    right: 0;
}

/* Top Left Logo in Offcanvas */
.offcanvas-top-menu {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 10000;
}

.offcanvas-logo {
    display: inline-block;
    transition: 0.3s;
}

.offcanvas-logo:hover {
    opacity: 0.8;
}

.offcanvas-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 65px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    transition: 0.3s;
    line-height: 1;
    z-index: 10000;
}

.close-menu:hover {
    color: b38e4c;
}

/* Menu Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 50px;
    max-width: 1000px;
    width: 100%;
}
.menu-item {
    text-align: left;
}

.menu-number {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 2px;
}

.menu-item a {
    font-size: 48px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    display: block;
    line-height: 1.2;
    letter-spacing: -1px;
}

.menu-item a:hover {
    color: #B38E4C;
    transform: translateX(10px);
}

/* Overlay */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Item Hover Effect - FORCED */
.offcanvas-menu .menu-item {
    position: relative;
    overflow: visible ;
}

.offcanvas-menu .menu-item a {
    position: relative ;
    z-index: 2 ;
    display: inline-block;
}

.offcanvas-menu .menu-item a::before {
    content: attr(data-text) !important;
    position: absolute !important;
    top: 50% ;
    left: 60px ;
    transform: translateY(-50%) ;
    font-size: 80px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgb(255 255 255 / 14%);
    text-stroke: 1.5px rgba(255, 255, 255, 0.08);
    opacity: 0 !important;
    transition: opacity 0.4s ease ;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}
.offcanvas-menu .menu-item:hover a::before {
    opacity: 1 !important;
}

/* Cursor Ball - Outline with Smooth Lag */
.cursor-ball {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 3px solid #b38e4c;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    display: none;
}
/* Tablet Responsive */
@media (max-width: 1024px) {
    .menu-grid {
        gap: 50px 80px;
    }
    
    .menu-item a {
        font-size: 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offcanvas-menu {
        padding: 80px 30px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 50px;
    }
    .offcanvas-menu .menu-item a::before {
    content: attr(data-text) !important;
    position: absolute !important;
    left: 45px;
    font-size: 35px;
    font-weight: 700;
}
    
    .menu-item a {
        font-size: 32px;
    }
    
    .close-menu {
        right: 30px;
        top: 30px;
        font-size: 40px;
    }
    
    .offcanvas-top-menu {
        left: 30px;
        top: 30px;
    }
    
    .offcanvas-logo img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .menu-item a {
        font-size: 24px;
    }
    
    .menu-number {
        font-size: 12px;
    }
}