/* Genel Ayarlar ve Reset */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #c0392b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.logo:hover {
    text-decoration: none;
}

nav a {
    margin-left: 15px;
    color: #555;
    font-weight: 500;
}

/* Main Content */
main {
    padding: 2rem 0;
}

h1, h2 {
    color: #2c3e50;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Article List */
.article-list article {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.article-list article h2 a {
    color: #2c3e50;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background: #2c3e50;
    color: #ecf0f1;
}

footer a {
    color: #fff;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 600px) {
    header .container {
        flex-direction: column;
    }

    nav {
        margin-top: 1rem;
    }

    nav a {
        margin: 0 7px;
    }
}