/* Genel Ayarlar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

body > * {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Başlık Bölümü */
header {
    background-color: #2c3e50; /* Koyu, kurumsal renk */
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 25px;
    border-radius: 0 0 12px 12px;
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 5px solid #3498db; /* Kurumsal renkte kenarlık */
    object-position: center top;
}

header h1 {
    margin: 5px 0 0;
    font-size: 2.8em;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.8;
}

/* Bölümler */
section {
    background: white;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Daha belirgin gölge */
}

section h2 {
    color: #3498db; /* Canlı mavi başlık rengi */
    border-bottom: 3px solid #f0f2f5;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.8em;
}

/* Teknik Yetenekler Bölümü için Özel Stil */
.skills-container {
    display: flex;
    gap: 30px; /* Kategoriler arası boşluk */
    flex-wrap: wrap;
}

.skill-category {
    flex: 1; /* Esnek genişlik */
    min-width: 300px; /* En az bu kadar yer kaplamasını sağlar */
    padding: 15px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.skill-category h3 {
    color: #2c3e50;
    border-bottom: 2px solid #bdc3c7;
    padding-bottom: 5px;
}

/* Programlama Etiketleri Stili */
.tag-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Etiketler arası boşluk */
    margin-top: 10px;
}

.tag-list li {
    background-color: #3498db; /* Etiket arka plan rengi */
    color: white;
    padding: 5px 12px;
    border-radius: 20px; /* Yuvarlak etiket görünümü */
    font-size: 0.9em;
    font-weight: 500;
}

/* Sertifikalar Bölümü Stili */
.certificate-list {
    display: flex;
    flex-direction: column;
}

.certificate-item {
    display: flex; /* Yılı ve içeriği yan yana dizer */
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.cert-year {
    font-weight: bold;
    color: #2c3e50;
    min-width: 60px; /* Yıl için sabit boşluk */
    margin-right: 20px;
    font-size: 1.1em;
}

.certificate-item p {
    margin: 2px 0;
}

/* Süreç Yönetimi Listesi Stili */
.process-list {
    list-style: square; /* Kare madde işareti kullanır */
    margin-left: 20px;
    padding-left: 0;
}

.process-list li {
    margin-bottom: 10px;
}

/* İletişim Butonu Stili */
.linkedin-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.linkedin-button:hover {
    background-color: #2980b9;
}

/* Alt Bilgi */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
}

/* Ekran Uyumu (Responsive Tasarım) */
@media (max-width: 768px) {
    .skills-container {
        flex-direction: column;
    }

}
