/* /yetenekler/style.css */

/* --- GENEL DÜZEN (Deneyim ile Aynı) --- */
.split-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left-pane {
    width: 30%;
    background-color: var(--card-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--border-color);
    position: relative;
    /* Animasyon (Global'den de gelebilir ama garanti olsun) */
    animation: slideInLeft 0.8s forwards;
}

.left-pane img {
    /* İSTEDİĞİN GİBİ BÜYÜK RESİM */
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    opacity: 0;
    animation: popIn 1s 0.5s forwards;
}

.left-pane h1 { font-size: 2rem; margin-bottom: 5px; }
.left-pane h2 { font-size: 1rem; color: var(--accent-color); opacity: 0.8; }

.right-pane {
    width: 70%;
    padding: 60px;
    overflow-y: auto;
    background-color: var(--bg-color);
    /* Sağ taraf animasyonu */
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

/* --- YETENEK KARTLARI IZGARASI --- */
.skills-grid {
    display: grid;
    /* Kartların genişliğine göre otomatik sığdır */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* KART TASARIMI */
.skill-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s, border-color 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px); /* Üzerine gelince hafif yukarı kalksın */
    border-color: var(--accent-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.card-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

/* YETENEK ETİKETLERİ (TAGS) */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 0.85rem;
    padding: 6px 12px;
    background-color: rgba(56, 189, 248, 0.1); /* Hafif mavi arka plan */
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    font-weight: 600;
}

/* Light mod için tag rengini özelleştirme */
body.light-mode .tag {
    background-color: rgba(255, 107, 107, 0.1);
}

/* MOBİL */
@media (max-width: 768px) {
    .split-container { flex-direction: column; overflow: auto; }
    .left-pane, .right-pane { width: 100%; height: auto; padding: 30px; }
}

/* Animasyonlar (Global'de yoksa diye yedeği) */
@keyframes slideInLeft { from {transform: translateX(-100%); opacity:0;} to {transform: translateX(0); opacity:1;} }
@keyframes fadeInUp { from {transform: translateY(30px); opacity:0;} to {transform: translateY(0); opacity:1;} }
@keyframes popIn { from {transform: scale(0.5); opacity:0;} to {transform: scale(1); opacity:1;} }