/* Genel Ayarlar */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Başlık (Header) */
header {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

header .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header .tagline {
    font-size: 1.2em;
    margin-top: 5px;
    opacity: 0.8;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.8em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00bcd4; /* Hafif parlak bir renk */
}

/* Bölümler (Sections) */
section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
}

/* Projeler (Projects) */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
}

.project-item h3 {
    margin-top: 0;
    color: #00bcd4;
}

.btn {
    display: inline-block;
    background: #00bcd4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0097a7; /* Daha koyu ton */
}

/* İletişim (Contact) */
#contact p a {
    color: #00bcd4;
    text-decoration: none;
}

#contact p a:hover {
    text-decoration: underline;
}

/* Alt Bilgi (Footer) */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* Duyarlı Tasarım (Responsive Design) */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1 {
        font-size: 2em;
    }

    header .tagline {
        font-size: 1em;
    }

    .social-links a {
        font-size: 1.5em;
    }
/* JavaScript Animasyonları İçin Ek CSS */

/* Başlangıç durumu: Gizli ve biraz aşağıda */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Aktif durum: Görünür ve normal konumda */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

}