/* Genel Sayfa Stilleri */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Başlıklar için yeni yumuşak font stili */
.minecraft-font {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-weight: 700;
    text-shadow: none;
}

/* Link Stilleri */
a {
    color: #58a6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #88c0ff;
}

/* Navigasyon Menüsü */
.navbar {
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #e0e0e0;
    font-weight: bold;
}

.nav-link:hover {
    color: #88c0ff;
}

/* Ana İçerik */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.main-header {
    text-align: center;
    margin-bottom: 2rem;
}

.main-header h1 {
    font-size: 3.5rem;
    letter-spacing: 4px;
}

/* Hakkımızda Bölümü Stilleri */
.about-container {
    text-align: center;
}

.about-intro {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.profile-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.profile-card {
    background-color: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 2rem;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #58a6ff;
    margin-bottom: 1.5rem;
}

.profile-name {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.profile-bio {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.profile-link {
    background-color: #58a6ff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.profile-link:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Footer Stilleri */
.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    color: #777;
}

.footer p a {
    color: #999;
    text-decoration: underline;
}

.footer p a:hover {
    color: #fff;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-header h1 {
        font-size: 2.5rem;
    }
}