/* Blog Sayfası CSS - Beyaz Tema */

body {
    background-color: #ffffff !important;
    min-height: 100vh;
    color: #333333 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 0; /* Padding'i kaldırdık, container'da ayarlayacağız */
}

html {
    background-color: #ffffff !important;
}

/* Büyük Başlık - SABİT - Daha Güzel */
.blog-title {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin: 0;
    padding: 30px 30px ;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    text-shadow: none;
    letter-spacing: -1px;
  
}



.blog-title::after {
    content: '🍿';
    margin-left: 15px;
    font-size: 3rem;
}

/* Üst Menü - SABİT - Başlığın Altında */
.top-bar {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 15px 0;
    position: fixed;
    top: 110px; /* Başlık yüksekliği kadar aşağıda */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.top-bar .nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.top-bar a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.top-bar a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.top-bar a.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Ana İçerik - Başlık ve Menü için Boşluk */
.container {
    margin-top: 180px !important; /* Başlık (110px) + Menü (50px) + biraz boşluk */
    padding-top: 20px;
}

/* Sol ve Sağ Layout */
.main-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.left-column {
    flex: 1;
}

/* Sağ kolon */
.right-column {
    width: 350px;
    position: sticky;
    top: 190px; /* Sabit başlık ve menünün altında kalması için */
}

/* Blog Card - Beyaz Tema */
.blog-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width:3px;
    height: 100%;
    background: linear-gradient(135deg, #9d0000 0%, #9d0000 100%);
}

.blog-card h3 {
    color: #333;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.blog-card p {
    color: #666;
    margin: 8px 0 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0000 0%, #c00000 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Blog Resim */
.blog-image {
    flex-shrink: 0;
}

.blog-image img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(91, 91, 91, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.025);
}
    
/* Search Box */
.search-box {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: none;
}

.search-box h3 {
    color: #2f2e2e;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper input {
    width: 100%;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 50px 15px 20px;
    color: #c3c3c3;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: #000000;
    background: rgb(222, 222, 222);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.search-input-wrapper input::placeholder {
    color: #999;
}

.search-input-wrapper i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ab0000;
    font-size: 1.1rem;
}

/* About Box */
.about-box {
    background: rgb(241, 241, 241);
    border: none;
    border-radius: 20px;
    padding: 30px;
    box-shadow: none;
}

.about-box h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Section Header */
.section-header {
    text-align: left;
    margin: 50px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a2a2a;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}

.section-header p {
    color: #666;
    font-size: 0.9rem;
}

/* Film Listesi Container */
.film-list-card {
    background: white;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
}

.film-list-card ol {
    color: black;
    line-height: 2;
    padding-left: 20px;
}

.film-list-card ol li {
    margin-bottom: 8px;
}

.film-list-card ol li strong {
    color: black;
    font-weight: 600;
}

/* Geri Dön Butonu */
.back-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-btn:hover {
    background: #000000;
    transform: scale(1.1);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-title {
        font-size: 2rem;
        padding: 15px;
    }
    
    .top-bar {
        top: 70px;
    }
    
    .container {
        margin-top: 130px !important;
    }
    
    .main-layout {
        flex-direction: column;
    }
    
    .right-column {
        width: 100%;
        position: static;
    }
}