/* 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: #3b82f6 !important;
}

.social-link:hover {
    color: #1e3a8a !important;
}

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

.tech-tag:hover {
    background-color: #dbeafe;
    border-color: #3b82f6 !important;
    color: #1e40af;
    transform: translateY(-1px);
}

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

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

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