/* Custom styles for portfolio */

a:link {
    /* text-decoration: none; */
    color: inherit;
}

/* Subtle animations and transitions */
.project-card {
    transition: all 0.2s ease;
}

.project-card:hover {
    border-color: oklch(39.1% 0.09 240.876) !important;
}

.social-link:hover {
    color: oklch(44.3% 0.11 240.79) !important;
}

.tech-tag {
    transition: all 0.15s ease;
}

.tech-tag:hover {
    background-color: #dbeafe;
    border-color: oklch(39.1% 0.09 240.876) !important;
    color: oklch(29.3% 0.066 243.157);
    transform: translateY(-1px);
}

.project-card-bg {
    background-color: rgba(255, 255, 255, 0.6);
}

#search-input {
    background-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
    .section-divider::before {
        display: none;
    }

    .pl-8 {
        padding-left: 0;
    }
}