/* ==================== PROJECTS PAGE STYLES ==================== */

/* Page Title with Underline */
.projects-page-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

.projects-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 2px;
}

/* Project Card Styles */
.project-card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3) !important;
}

.project-card img {
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Card Title */
.project-card .card-title {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1.25rem;
}

/* Card Text */
.project-card .card-text {
    color: #aaa;
    line-height: 1.6;
}

/* Tech Badges */
.tech-badge {
    background-color: #4a4a4a !important;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    font-weight: 500;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

/* Featured Badge */
.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
    font-size: 0.85rem;
}

/* Details Button - Mavi renk */
.project-card .btn-outline-primary,
.project-card .btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
    border: none !important;
}

.project-card .btn-outline-primary:hover,
.project-card .btn-primary:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.5);
}

/* Button Icons */
.btn i {
    margin-right: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-page-title {
        font-size: 1.75rem;
    }
    
    .project-card .card-title {
        font-size: 1.1rem;
    }
}