/* ===== GENEL AYARLAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #222;
    line-height: 1.6;
    padding: 20px;
}

/* ===== NAVBAR ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

nav a {
    color: #fdfdfd;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s;
}

a{
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s;
}

a:hover {
    color: #00bfff;
}

nav .mini-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* ===== BAŞLIKLAR ===== */
h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    margin: 25px 0 15px;
    color: #333;
}

/* ===== PARAGRAFLAR ===== */
p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    max-width: 800px;
}

/* ===== LİSTELER ===== */
li {
    margin-left: 20px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 50px;
    padding: 15px;
    background-color: #1e1e1e;
    color: #fdfdfd;
    text-align: center;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Responsive (mobil uyumluluk) */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
