/* blog/blog.css */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    background: linear-gradient(to bottom right, #3e1f47, #a0011c); /* Mistik Kırmızı-Mor */
    color: #f0e6f6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: #ffda79;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-family: 'Crimson Pro', serif;
    color: #ffb142;
    border-bottom: 1px solid #706fd3;
    padding-bottom: 10px;
    margin-top: 40px;
}

p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #d1ccc0;
}

ul {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 10px;
    border-left: 4px solid #ffb142;
}

li {
    margin-bottom: 10px;
}

a {
    color: #ffda79;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px #ffda79;
}

.back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.meta {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
}

/* Blog Anasayfası İçin Kartlar */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.blog-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}
.blog-card h3 {
    font-family: 'Crimson Pro', serif;
    color: #ffda79;
    margin-top: 0;
}