:root {
    --accent: #d4a574;
    --text-dark: #222;
    --text-muted: #666;
    --bg-light: #fafafa;
    --border-color: #e5e5e5;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: var(--bg-light);
    line-height: 1.8;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

/* ========== HEADER ========== */
.site-header {
    background: #f7f2ee;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

    .brand:hover {
        color: var(--text-dark);
    }

/* Desktop Nav */
.site-nav a.nav-link {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    padding: 0;
    transition: color 0.3s;
}

    .site-nav a.nav-link:hover {
        color: var(--accent);
    }

/* Social Icons */
.header-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

    .header-social a:hover {
        color: var(--accent);
    }

/* Mobile Toggle Button */
.nav-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #444;
    cursor: pointer;
    transition: all 0.3s;
}

    .nav-toggle:hover {
        color: var(--accent);
        border-color: var(--accent);
    }

/* Mobile Menu Panel */
.mobile-panel {
    border-top: 1px solid var(--border-color);
    background: #fff;
}

    .mobile-panel .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f3f3f3;
        display: block;
    }

        .mobile-panel .nav-link:last-of-type {
            border-bottom: none;
        }

.mobile-social {
    padding: 20px 0 10px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .mobile-social a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #f5f5f5;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.3s;
    }

        .mobile-social a:hover {
            background: var(--accent);
            color: #fff;
        }

/* Desktop Nav Gap */
@media (min-width: 992px) {
    .site-nav .nav {
        gap: 34px;
    }
}

/* ========== AUTHOR INTRO ========== */
.author-intro {
    text-align: center;
    padding: 80px 30px;
    background: #fff;
    margin-bottom: 60px;
}

    .author-intro h4 {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #999;
        margin-bottom: 15px;
        font-weight: 400;
    }

    .author-intro h1 {
        font-size: 56px;
        margin-bottom: 20px;
        color: var(--text-dark);
        font-weight: 700;
    }

    .author-intro p {
        max-width: 600px;
        margin: 0 auto 25px;
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.9;
    }

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #888;
    font-size: 18px;
}

/* ========== BLOG GRID ========== */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    margin-bottom: 2rem;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
    .blog-card a {
        text-decoration: none;
    }
        .blog-card a:hover h3 {
            color: #667eea; /* Hover durumundaki renk */
        }
 

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.blog-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 0px 25px;
}

.category-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-card-meta {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

/* ========== DETAIL PAGE ========== */
.detail-hero {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://placehold.co/1920x600/667eea/ffffff?text=Destination');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

    .detail-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        font-weight: 700;
    }

/* Detail Content Layout */
.blog-container.detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-content {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .main-content h2 {
        font-family: 'Playfair Display', serif;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
        font-size: 2rem;
        font-weight: 700;
    }

.description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

    .description p {
        margin-bottom: 1rem;
    }

/* Video Container (Responsive) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

    .info-card h3 {
        font-family: 'Playfair Display', serif;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid #667eea;
        padding-bottom: 0.5rem;
        color: var(--text-dark);
        font-weight: 700;
    }

.info-item {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

    .info-item:last-child {
        border-bottom: none;
    }

.info-label {
    font-weight: 600;
    color: #777;
}

.info-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========== FOOTER ========== */
footer {
    background: var(--text-dark);
    color: #aaa;
    text-align: center;
    padding: 40px 30px;
    font-size: 13px;
}

    footer a {
        color: var(--accent);
        text-decoration: none;
        margin: 0 10px;
        transition: color 0.3s;
    }

        footer a:hover {
            color: #e0b888;
        }

/* Related Box Styles */
.related-box {
    padding: 0;
}

    .related-box h3 {
        font-family: 'Playfair Display', serif;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #667eea;
        color: var(--text-dark);
        font-weight: 700;
    }

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .related-list li {
        margin-bottom: 0.5rem;
    }

.related-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid transparent;
}

    .related-item:hover {
        background: #f8f9fa;
        border-color: #667eea;
        transform: translateX(5px);
    }

.related-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-content {
    flex: 1;
}

.related-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    line-height: 1.4;
}

.related-item:hover .related-title {
    color: #667eea;
}
/* Avatarın içinde bulunduğu div */
.avatar-container {
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar */
    width: 100%;
    padding: 20px 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Responsive ayarı */
@media (min-width: 768px) {
    .author-avatar {
        width: 120px;
        height: 120px;
    }
}
 
/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-container.detail-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .detail-hero h1 {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .author-intro h1 {
        font-size: 38px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-card {
        margin-bottom: 0;
    }
     

        .detail-hero {
            height: 300px;
        }

        .detail-hero h1 {
            font-size: 2rem;
        }

    .main-content {
        padding: 1.5rem;
    }

        .main-content h2 {
            font-size: 1.5rem;
        }
}
