/* Genel Stil Sıfırlaması ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Ana Konteyner */
.container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Profil Alanı */
.profile {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.profile .tagline {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Sosyal Medya İkonları */
.social-icons a {
    color: #7f8c8d;
    font-size: 1.5rem;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #82b440; /* Marka rengi */
    transform: scale(1.1);
}


/* Link Kartları Grid Yapısı */
.links-grid {
    display: grid;
    /* Mobil için tek sütun */
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Kartların Genel Stili */
.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card i {
    font-size: 1.5rem;
    margin-right: 20px;
    width: 30px; /* İkonların hizalı durması için sabit genişlik */
    text-align: center;
    color: #82b440; /* Ana marka rengi */
}

/* Alt Bilgi (Footer) */
.footer {
    margin-top: 40px;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Geniş Ekranlar İçin (Responsive Ayar) */
@media (min-width: 600px) {
    .links-grid {
        /* Geniş ekranlarda iki sütunlu yapı */
        grid-template-columns: repeat(2, 1fr);
    }
}