/* Custom styles */
* {
    scroll-behavior: smooth;
}

.nav-link.active {
    color: rgb(147, 51, 234);
}

.lang-btn.active {
    background-color: rgb(233, 213, 255);
    color: rgb(147, 51, 234);
    font-weight: 600;
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Hide scrollbar but keep functionality */
#pageContent::-webkit-scrollbar {
    width: 6px;
}

#pageContent::-webkit-scrollbar-track {
    background: transparent;
}

#pageContent::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

#pageContent::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Modal animations */
.modal-enter {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Code block styling */
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}
