/* Backdrop overlay */
.full-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.full-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Full Menu Overlay - Slide-in Panel Design */
.full-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
}

.full-menu-overlay.active {
    transform: translateX(0);
}

.full-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 5rem 0 2rem;
    gap: 0;
}

.full-menu-nav a {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.full-menu-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--copper-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.full-menu-nav a:hover {
    color: var(--copper-gold);
    background: rgba(0, 0, 0, 0.02);
    padding-left: 2.5rem;
}

.full-menu-nav a:hover::before {
    transform: scaleY(1);
}

.full-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    z-index: 2001;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.full-menu-close:hover {
    color: var(--copper-gold);
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

/* Make hamburger visible on all screens to access full menu */
.mobile-menu-toggle {
    display: flex !important;
    margin-left: 2rem;
    z-index: 1001;
}

@media (min-width: 768px) {
    .full-menu-overlay {
        width: 380px;
    }
    
    .full-menu-nav a {
        font-size: 1rem;
        padding: 1.2rem 2.5rem;
    }
}

