@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Pinyon+Script&display=swap');

:root {
    /* Renk Paleti */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #f0f0f0;
    /* Daha parlak beyaz */
    --text-muted: #a0a0a0;
    /* Daha okunabilir gri */
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3cf55;

    /* Efekt Değişkenleri */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glow: 0 0 20px rgba(212, 175, 55, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    /* Daha dramatik bir sahne ışığı */
    background-image: radial-gradient(circle at 50% -20%, #2a2a2a 0%, #0a0a0a 70%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Lato', sans-serif;
    display: flex;
    /* EKLENDİ */
    flex-direction: column;
    /* EKLENDİ */
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- ORTAK YAPILAR --- */

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    /* Landing için dikey ortalama */
}

footer {
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
    margin-top: 4rem;
    /* İçerikle arasına mesafe koy */

    /* İnce bir üst çizgi ve hafif arka plan */
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

    /* Yazı Stili */
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

footer span {
    opacity: 0.7;
    transition: opacity 0.3s;
}

footer:hover span {
    opacity: 1;
    color: var(--accent-gold);
}

/* Navbar Navbar üstte sabit kaldığı için içeriği aşağı itmek gerek */
.content-page {
    padding-top: 120px !important;
    justify-content: flex-start;
    /* İçerik sayfalarında üstten başla */
}

.container {
    width: 100%;
    margin: 0 auto;
}

/* Tipografi */
h1,
h2,
h3,
.brand-name,
.about-title,
.article-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* --- LANDING PAGE (DÜZELTİLDİ) --- */
.landing-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.brand-name {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.brand-title {
    color: var(--accent-gold);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 30px;
    display: inline-block;
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.message {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Eksik olan Loader Line */
.loader-line {
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    margin: 30px auto 10px;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: loadLine 2s ease-in-out forwards;
}

.status-text {
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
}

/* NAVBAR (YENİLENMİŞ V2) */
.navbar {
    padding: 1rem 3rem;
    /* Biraz daha ferah */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    /* Zemin: Daha koyu ve gizemli bir cam */
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

/* MARKA / LOGO ALANI (EN ÖNEMLİ KISIM) */
.nav-brand a {
    font-family: 'Pinyon Script', cursive;
    /* İmza Fontu */
    font-size: 2.2rem;
    /* Daha büyük ve iddialı */
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.5s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Derinlik */
}

/* Hover Efekti: İmza parlasın */
.nav-brand a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 10px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
    /* Hafifçe büyüsün */
}

/* Linkler - Logoyu ezmemesi için biraz sadeleşti */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    /* Daha minimal */
    text-transform: uppercase;
    letter-spacing: 3px;
    /* Harf aralığı çok açık (Modern durur) */
    font-weight: 400;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    /* Ortadan dışa doğru açılsın */
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-brand a {
        font-size: 1.8rem;
    }
}

/* --- HİKAYELER LİSTESİ (DÜZELTİLDİ) --- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 2px;
    /* Daha keskin köşeler daha modern durabilir */
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-soft), var(--glow);
    background: rgba(255, 255, 255, 0.05);
}

.story-category {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.story-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #fff;
}

.story-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: auto;
}

.story-date {
    font-size: 0.8rem;
    color: #666;
}

.read-more {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent-gold);
}

/* --- HİKAYE DETAY & OKUMA MODU --- */
.read-mode {
    max-width: 800px;
    /* Okuma kolaylığı için daraltıldı */
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--accent-gold);
}

.story-meta {
    display: block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content {
    font-size: 1.25rem;
    /* Daha büyük okuma fontu */
    line-height: 1.9;
    color: #dcdcdc;
    font-family: 'Playfair Display', serif;
    /* Hikaye metni serif olsun */
}

.story-content p {
    margin-bottom: 2rem;
}

.demo-note {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- style.css dosyasının ilgili bölümü --- */

/* --- ABOUT SAYFASI (SANATÇI MODU) --- */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top: 2rem;
}

.about-grid {
    display: flex;
    flex-direction: column;
    /* Alt alta dizilim */
    align-items: center;
    /* Ortala */
    max-width: 800px;
    /* Çok geniş olmasın, kitap sayfası gibi */
    margin: 0 auto;
    text-align: center;
    /* Yazıları ortala */
    gap: 2rem;
}

/* Görsel Alanı */
.about-image-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

/* Faded Borders (Silik Kenarlar) Efekti */
.image-frame {
    width: 200px;
    /* Çok daha küçük, kompakt */
    height: 200px;
    /* Kare veya Daire olması için */
    position: relative;

    /* Eski çerçeve çizgilerini kaldırıyoruz */
    background: transparent;
    border: none;
    box-shadow: none;

    /* Vinyet (Maskeleme) Efekti: Kenarlar yumuşakça yok olur */
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);

    /* Hafif süzülme animasyonu devam etsin */
    animation: floatImage 6s ease-in-out infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi kutuya sığdır */
    object-position: top center;
    /* Kafayı ortala */

    /* Sepia tonu artırıldı, daha nostaljik */
    filter: sepia(40%) contrast(1.1) brightness(0.9);
    transition: filter 0.5s ease;
}

/* Hover yapınca netleşsin */
.image-frame:hover .profile-image {
    filter: sepia(0%) contrast(1) brightness(1);
}

/* Metin Alanı */
.about-text-content {
    animation-delay: 0.2s;
    /* Resimden hemen sonra gelsin */
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--accent-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-body p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 90%;
    /* Satırlar çok uzamasın, okunabilir olsun */
    margin-left: auto;
    margin-right: auto;
}

.signature {
    margin-top: 2rem;
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    /* İmza biraz daha büyük */
    color: var(--accent-gold);
    text-align: center;
    /* İmzayı da ortaladık */
    opacity: 0.8;
}

/* Mobilde zaten flex-column olduğu için ekstra ayara gerek yok,
   ama boşlukları biraz kısabiliriz */
@media (max-width: 768px) {
    .image-frame {
        width: 150px;
        height: 150px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-body p {
        font-size: 1rem;
    }
}

/* MOBİL UYUM (Tablet ve Telefon) */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        /* Tek sütuna düşür */
        gap: 3rem;
        text-align: center;
        /* Mobilde metni ortala */
    }

    .about-text-content,
    .signature {
        text-align: center;
    }

    /* Mobilde resmi üste almak istersen bu satırı açabilirsin: */
    /* .about-image-content { order: -1; } */

    .about-title {
        font-size: 2.5rem;
    }

    .profile-image {
        max-width: 100%;
    }
}

/* --- BUTONLAR --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* --- ANİMASYONLAR --- */
@keyframes loadLine {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        width: 100px;
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBİL --- */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .about-wrapper {
        padding: 2rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 15px;
    }
}

.fade-up {
    opacity: 1 !important;
    transform: none !important;
}

 