/* --- NETFLIX  STYLE --- */

.netflix-style {
    background-color: #050505 !important; /* Netflix Siyahı */
    color: #ffffff;
}

/* Hero Alanı */
.netflix-hero {
    height: 70vh;
    background: linear-gradient(to top, #050505 0%, rgba(5, 5, 5, 0) 100%), 
                url('https://images.unsplash.com/photo-1464851707681-f9d5fdaccea8?q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    position: relative;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif; /* Netflix tarzı için daha sert font */
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin: 10px 0;
    letter-spacing: -2px;
}

.badge {
    background-color: #e50914; 
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 4px;
}

/* Makale Metni */
.netflix-article {
    padding: 60px 0;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-body p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e5e5e5;
    margin-bottom: 30px;
}

.netflix-quote {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    border-left: 5px solid #1b4d2e; /* Yonca Yeşili Vurgu */
    padding-left: 30px;
    margin: 60px 0;
}

/*  İMZA ALANI (Görseldeki Stil) */
.yazar-imza-final {
    margin-top: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vertical-line {
    width: 4px;
    height: 60px;
    background-color: #1b4d2e; /* Yonca Yeşili Çizgi */
}

.yazar-detay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin: 0;
    color: #fff;
}

.yazar-detay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem !important;
    color: #aaa !important;
    margin: 0 !important;
}

/* Netflix Tarzı Vurgulu Geri Dön Butonu */
.netflix-back-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.netflix-back-btn .arrow {
    font-size: 1.5rem;
    margin-right: 10px;
    line-height: 0;
    transition: transform 0.3s ease;
}

/* Hover (Üzerine Gelince) Efekti */
.netflix-back-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.netflix-back-btn:hover .arrow {
    transform: translateX(-5px); /* Ok sola doğru hafifçe kayar */
}

/* yazi1.html için özel navbar düzenlemesi */
.netflix-style .navbar {
    background: transparent !important; /* Beyaz arka planı kaldır */
    box-shadow: none !important; /* Gölgeyi kaldır */
    position: absolute; /* Hero görselinin üzerine bindir */
    top: 0;
    left: 0;
    width: 100%;
}

.netflix-style .nav-links a {
    color: white !important; /* Linkleri beyaz yap */
}

.netflix-style .brand-main, 
.netflix-style .brand-sub {
    color: white !important; /* Logo yazılarını beyaz yap */
}

/* Başlığı ve altındaki açıklamayı dizginleme */
.netflix-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important; /* Maksimum boyutu 6rem'den 3.5rem'e çektik */
    letter-spacing: -1px;
    line-height: 1.2;
}

.netflix-hero .hero-desc {
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important; /* Açıklama metnini de kibarlaştırdık */
    max-width: 600px; /* Metnin çok sağa uzatılmasını engeller */
}