body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fa;
    padding-top: 70px; 
}

.accent-color {
    color: #0077B6; 
}

.bg-accent {
    background-color: #0077B6;
}

#menu-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

#lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    z-index: 1010;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer.open {
    transform: translateX(0);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1005;
    display: none;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.backdrop.open {
    display: block;
    opacity: 1;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: background-color 0.2s, transform 0.2s;
}

.project-item:hover {
    background-color: #f0f4f8;
    transform: translateX(5px);
}

.fa-gamepad {
    color: #EC4899;
}
.fa-tools {
    color: #4F46E5;
}
.fa-wrench {
    color: #DC2626;
}
.fa-database {
    color: #1D4ED8;
}
