.blog-post-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-post-content article {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-post-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.post-meta {
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 1rem;
}

.post-meta i {
    margin-right: 0.5rem;
}

.image-gallery {
    margin: 2rem 0;
    overflow: hidden;
}

.main-image {
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

figcaption {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    font-style: italic;
}

.gallery-grid {
    display: inline-block;
    width: calc(50% - 1rem);
    margin: 0.5rem;
    vertical-align: top;
}

.content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.content h2 {
    margin-top: 2.5rem;
    color: #333;
}

.content h3 {
    margin-top: 2rem;
    color: #444;
}

.content p {
    line-height: 1.6;
    color: #555;
}

.transportation-tips {
    background: #f9f9f9;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.transportation-tips li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.transportation-tips li:before {
    content: "•";
    color: #ffd700;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.cta-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #218838;
}

.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-posts h3 {
    color: #333;
    margin-bottom: 1rem;
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 0.5rem;
}

.related-posts a {
    color: #007bff;
    text-decoration: none;
}

.related-posts a:hover {
    text-decoration: underline;
}

/* Header Düzenlemeleri */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    white-space: nowrap;
}

.logo-link h1 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0;
}

.header-logo {
    width: 60px;
    height: auto;
}

/* Mobil cihazlar için düzenlemeler */
@media (max-width: 768px) {
    .blog-post-content {
        margin: 1rem auto;
    }

    .blog-post-content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content h3 {
        font-size: 1.3rem;
    }

    .content {
        font-size: 1rem;
    }

    .featured-image {
        height: 250px;
    }

    .content-image {
        height: 200px;
    }

    .gallery-grid {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .cta-box {
        padding: 1.5rem;
    }

    .logo-link h1 {
        font-size: 1.4rem;
    }
    
    .header-logo {
        width: 50px;
    }
}

/* Görsel yükleme animasyonu */
.featured-image, .content-image {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Yorum Sistemi Stilleri */
.comments-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.comments-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.rating-container {
    margin-bottom: 2rem;
    text-align: center;
}

.rating-container h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-rating i {
    font-size: 1.5rem;
    color: #ffd700;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating i:hover {
    color: #ffcc00;
}

.rating-text {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.comment-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    outline: none;
}

.submit-button {
    background-color: #ffd700;
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background-color: #ffcc00;
}

.submit-button i {
    font-size: 1.1rem;
}

.comments-list {
    margin-top: 2rem;
}

.comment {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 500;
    color: #333;
}

.comment-date {
    font-size: 0.9rem;
    color: #666;
}

.comment-content {
    color: #555;
    line-height: 1.5;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .comments-section {
        padding: 1rem;
    }

    .star-rating i {
        font-size: 1.2rem;
    }

    .submit-button {
        width: 100%;
        justify-content: center;
    }
} 