/* ✅ Genel Stiller */
body {
    background-color: #e8dfd7;
    color: #333;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* ✅ Ana Konteyner */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%; 
    max-width: 1200px;
    padding: 20px;
}

/* ✅ Sol Profil Kartı */
.profile-card {
    background: #d9cbb8;
    padding: 30px; 
    border-radius: 15px;
    text-align: center;
    width: 380px; 
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-img {
    width: 140px; 
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 28px; 
    margin: 10px 0;
    color: #222;
    font-weight: bold;
}

h2 {
    font-size: 18px;
    margin: 5px 0;
    color: #666;
    font-weight: bold;
}

hr {
    width: 60%;
    border: 1px solid #999;
    margin: 10px auto;
}

p {
    font-size: 16px;
    color: #444;
}

/* ✅ Sosyal Medya İkonları */
.social-links {
    margin-top: 15px;
}

.social-links a {
    font-size: 22px;
    margin: 12px;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* ✅ Sağ Taraf Metin Bölümü */
.intro {
    margin-left: 80px; 
    max-width: 600px; 
}

.intro h1 {
    font-size: 60px; 
    font-weight: bold;
    color: #000;
}

.intro p {
    font-size: 20px;
    color: #444;
}

/* ✅ Butonlar İçin Düzenleme */
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start; /* Masaüstünde solda hizalı kalacak */
    gap: 15px;
}

/* ✅ Genel Buton Stilleri */
.buttons button {
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

/* ✅ Resume Butonu */
.resume {
    background-color: #838060;
    color: white;
}

/* ✅ Projects Butonu */
.projects {
    background-color: white;
    border: 2px solid #000;
    color: black;
}

/* ✅ Hover Efektleri */
.buttons button:hover {
    opacity: 0.8;
}

/* ✅ MOBİL DÜZENLEMELER */
@media (max-width: 768px) {
    body {
        height: auto;
        display: block;
        padding: 20px;
    }

    .container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 10px;
    }

    .profile-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .intro {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .intro h1 {
        font-size: 40px;
    }

    /* ✅ Butonları Alt Alta ve Orta Hizalı Yap */
    .buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .buttons button {
        width: auto;
        min-width: 160px;
        padding: 12px 20px;
        font-size: 16px;
        margin: 5px 0;
    }
}
