/* Dark Mode Styles */
body {
    background-color: var(--bg-dark);
    color: var(--text-light) !important;
}

body .navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body .card {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

body .card-footer {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: var(--border-color);
}

body .footer {
    background-color: #0c0c0c;
    color: var(--text-light) !important;
}

body .footer h5,
body .footer p,
body .footer a,
body .footer .text-center {
    color: var(--text-light) !important;
}

body .footer a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

body .list-group-item {
    background-color: var(--bg-card);
    color: var(--text-light);
    border-color: var(--border-color);
}

body .text-muted {
    color: var(--text-gray) !important;
}

body .bg-light {
    background-color: #1a1a1a !important;
}

body .btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

body .btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

body .form-control {
    background-color: #262626;
    border-color: var(--border-color);
    color: var(--text-light);
}

body .breadcrumb-item.active {
    color: var(--text-gray);
}

body .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-gray);
}

/* Metin okunabilirliği için geliştirmeler */
body {
    color: #f8f9fa !important;
}

/* Proje kartları ve sağ panel düzeltmeleri */
body .card {
    background-color: #1e1e1e;
    border-color: #2c2c2c;
    color: #f8f9fa;
}

body .card-body {
    color: #f8f9fa;
}

body .card-title, body .card-text {
    color: #f8f9fa !important;
}

/* Sağ panel içerik düzeltmesi */
body .project-sidebar .card {
    background-color: #222222;
}

body .project-sidebar .card-body {
    color: #f8f9fa;
}

body .project-sidebar h4, 
body .project-sidebar p {
    color: #f8f9fa !important;
}

/* Text-muted sınıfını daha açık yapma */
body .text-muted {
    color: #b0b0b0 !important;
}

/* Liste grupları için düzeltme */
body .list-group-item {
    background-color: #1e1e1e;
    color: #f8f9fa;
    border-color: #2c2c2c;
}

/* Öne çıkan projeler başlığı */
.gradient-text {
    background: linear-gradient(to right, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    display: inline-block;
}

/* Breadcrumb öğeleri için */
body .breadcrumb-item a {
    color: #3b82f6;
}

body .breadcrumb-item.active {
    color: #cccccc;
}

/* Tüm paragraflar için */
body p {
    color: #f8f9fa !important;
}

/* Formlardaki inputlar */
body .form-control::placeholder {
    color: #a0a0a0;
}

/* Footer Özel Düzeltmeler */
.footer {
    background-color: #0c0c0c !important;
}

.footer h5 {
    color: #ffffff !important;
    font-weight: 600;
}

.footer p, .footer .text-center p {
    color: #e0e0e0 !important;
}

.footer a, .footer .list-unstyled a {
    color: #a0c0ff !important;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3b82f6 !important;
    text-decoration: underline;
}

.social-links a {
    color: #a0c0ff !important;
}

.social-links a:hover {
    color: #3b82f6 !important;
}

.footer hr {
    border-color: #333333;
}

