/*
Theme Name: RotaRehberi Pro
Theme URI: https://rotarehberi.net
Author: Grok + Arbenel
Description: Mavi-beyaz temiz gezi rehberi teması v1.2
Version: 1.2
*/

:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #222;
    background: #f4f7fa;
}

.site-header {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.custom-logo {
    max-height: 75px;
}

.main-content {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,102,204,0.15);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e5e5;
}

.post-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,102,204,0.25);
    border-color: var(--primary);
}

.post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover img {
    transform: scale(1.07);
}

.card-body {
    padding: 20px;
}

.entry-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.entry-title a {
    color: #1a1a1a;
}

.entry-meta {
    color: #555;
    font-size: 0.95rem;
}

.entry-excerpt {
    color: #444;
    font-size: 1.02rem;
}

/* Single */
.single-post .entry-content {
    font-size: 1.15rem;
    max-width: 780px;
    margin: 0 auto;
}

.site-footer {
    background: linear-gradient(to right, #003366, #0066cc);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}