/* --- PROJELERİM KART TASARIMI --- */
.project-card {
    border: 1px solid #dee2e6;
    border-left: 5px solid #bd7037; /* Temadaki ana vurgu rengi */
    background-color: #ffffff;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

    .project-card:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
        border-left: 5px solid #212529; /* Üzerine gelince siyahlaşan kenarlık */
    }

.custom-project-btn {
    background-color: #bd7037;
    color: #fff !important;
    border-radius: 2px;
    padding: 6px 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

    .custom-project-btn:hover {
        background-color: #212529;
        text-decoration: none;
    }

/* --- YETENEKLERİM PROGRESS BAR TASARIMI --- */
.skill-title {
    font-weight: 700;
    color: #212529 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.skill-value {
    font-weight: 800;
    color: #bd7037;
    font-size: 0.9rem;
}

.custom-progress-bg {
    height: 12px;
    background-color: #e9ecef;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 5px;
}

.custom-progress-bar {
    background-color: #bd7037;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.skill-container {
    padding-right: 15px;
}


/* Deneyim başlığı (Şirket) */
.experience-title {
    color: #212529 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

/* Pozisyon başlığı */
.experience-subtitle {
    color: #bd7037 !important; /* Temanın ana rengi */
    font-weight: 700;
}

/* Açıklama metni */
.experience-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

/* Tarih etiketi tasarımı */
.experience-date {
    font-weight: 800;
    color: #bd7037 !important;
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #eee;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

/* Mobilde tarih kısmının çok geniş durmaması için */
@media (max-width: 768px) {
    .experience-date {
        margin-top: 10px;
        text-align: left;
    }
}

/* Okul Başlığı */
.education-title {
    color: #212529 !important;
    font-weight: 800 !important;
    font-size: 1.6rem;
}

/* Bölüm Bilgisi */
.education-subtitle {
    color: #bd7037 !important; /* Temanın turuncu/kahve tonu */
    font-weight: 600;
}

/* Not Ortalaması Kutucuğu */
.education-grade {
    display: inline-block;
    background-color: #f1f3f5;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #495057;
    border-left: 3px solid #bd7037;
    margin-top: 5px;
}

/* Eğitim Tarihi Etiketi */
.education-date-badge {
    font-weight: 700;
    color: #bd7037 !important;
    border: 1px solid #bd7037;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    display: inline-block;
}

/* Eğitim öğeleri arasına hafif ayraç */
.education-item {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 20px;
}

    .education-item:last-child {
        border-bottom: none;
    }



/* Hobiler Ana Kapsayıcı */
.hobby-container {
    padding-top: 10px;
}

/* Hobi Kart Tasarımı */
.hobby-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    /* Hover Efekti: Kartın rengi temana uygun değişsin */
    .hobby-card:hover {
        background-color: #bd7037; /* Temandaki ana renk */
        border-color: #bd7037;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(189, 112, 55, 0.2);
    }

        .hobby-card:hover .hobby-text,
        .hobby-card:hover .hobby-icon i {
            color: #ffffff !important;
        }

/* İkon Alanı */
.hobby-icon i {
    font-size: 1.5rem;
    color: #bd7037;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* Hobi Metni */
.hobby-text {
    font-weight: 600;
    color: #495057;
    text-transform: capitalize;
    font-size: 0.95rem;
    transition: 0.3s;
}

/* Alıntı Alanı */
.hobby-quote {
    border-left: 4px solid #bd7037;
    padding-left: 20px;
    font-style: italic;
}

/* Sertifika Listesi Alanı */
.certification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Her Bir Sertifika Satırı */
.certification-item {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

    /* Hover Efekti */
    .certification-item:hover {
        transform: translateX(10px); /* Sağa doğru hafif kayma */
        border-left: 5px solid #bd7037; /* Temandaki ana renk */
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

/* İkon Kutusu */
.cert-icon-box {
    background-color: #fff4ed; /* Açık turuncu/kahve tonu */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    color: #bd7037;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Sertifika Metni */
.cert-text {
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
}
