/* --- SLIDE-OUT MENU COMPONENT --- */

.slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 90; 
    transform: translateX(-100%); 
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    display: flex;
    align-items: center;
    padding-left: var(--sidebar-width); 
}

.slide-menu.open {
    transform: translateX(0); 
}

.menu-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 100px 40px;
    justify-content: space-between;
}

/* --- NAVIGATION LINKS --- */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-links li {
    overflow: hidden; 
}

.nav-links a {
    display: block;
    font-size: 120px; 
    line-height: 0.9;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -4px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif; 
}

.nav-links a:hover {
    color: var(--highlight-color); 
    transform: translateX(10px); 
}

/* --- MENU FOOTER (SOCIALS) --- */
.menu-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    padding-top: 40px;
    padding-right: 100px;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.socials a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: -1px;
    transition: color 0.2s ease;
}

.socials a:hover {
    color: var(--highlight-color);
}

.socials .label {
    margin-bottom: 20px;
    color: var(--border-color); 
}

.copyright {
    margin-top: auto;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--border-color);
}