/* Temel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Renk Paleti ve Değişkenler (Theme Tokens) */
:root {
    --obsidian-black: #050505;
    --dark-charcoal: #111111;
    --antigravity-blue: #00d2ff;
    --text-white: #f5f5f5;
    --text-muted: #888888;
    --accent-glow: rgba(0, 210, 255, 0.4);
    --glass-bg: rgba(17, 17, 17, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--obsidian-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
}

/* Konteyner (Negatif Boşluk İçin) */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Navigasyon (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1500px;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-white);
    white-space: nowrap;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links li a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-links li a:not(.btn-primary):hover {
    color: var(--text-white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Primary Buton Mavi Glow Efektli */
.btn-primary {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--antigravity-blue);
    color: var(--antigravity-blue) !important;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--antigravity-blue);
    color: var(--obsidian-black) !important;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* --- Hero Bölümü --- */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    background-color: rgb(255, 131, 69);
}

/* Karanlık kaplama - Turuncu arka planla bütünlük sağlamak için gizlendi */
.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-top-logo {
    max-height: 400px;
    width: auto;
    margin-bottom: 70px;
    display: block;
    border-radius: 20px;
    /* Optional for a smoother look */
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-content h1 .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-white);
    /* Subtle blue hint */
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 450px;
}

/* --- Editoryal İçerik (Negative Space) --- */
main {
    padding: 150px 0;
}

.editorial-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.editorial-section.reverse {
    flex-direction: row-reverse;
}

.editorial-text {
    flex: 1;
}

.editorial-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: 1px;
}

.spacer {
    height: 2px;
    width: 50px;
    background: var(--antigravity-blue);
    margin-bottom: 30px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.editorial-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 1.8;
}

.link-hover {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 5px;
}

.link-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--antigravity-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

.link-hover:hover::after {
    width: 100%;
}

.link-hover:hover {
    color: var(--text-white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.editorial-image {
    flex: 1.2;
    position: relative;
}

/* Görsel çevresindeki glass border efekti */
.editorial-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 0;
    transition: all 0.5s ease;
}

.editorial-image:hover::before {
    top: -10px;
    left: -10px;
    border-color: rgba(0, 210, 255, 0.3);
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Kullanıcının istediği düşük doygunluk ve yüksek kontrast */
    filter: grayscale(85%) contrast(120%) brightness(0.8);
    position: relative;
    z-index: 1;
    transition: filter 0.5s ease;
}

.editorial-image img:hover {
    filter: grayscale(30%) contrast(110%) brightness(1);
}

/* --- Footer --- */
footer {
    background-color: var(--dark-charcoal);
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    color: #333;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 40px;
}

/* --- Yazarlar ve Hakkında Sayfası --- */
.page-header {
    height: 60vh;
    min-height: 400px;
}

.page-header h1 {
    font-size: 4rem;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.author-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.author-card:hover {
    border-color: var(--antigravity-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.15);
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
}

.author-card:hover .author-avatar {
    border-color: var(--antigravity-blue);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(110%);
    transition: filter 0.3s ease;
}

.author-card:hover .author-avatar img {
    filter: grayscale(0%) contrast(100%);
}

.author-card h3 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.author-role {
    color: var(--antigravity-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Tasarım İçin Küçük Dokunuşlar */
@media (max-width: 1024px) {

    .editorial-section,
    .editorial-section.reverse {
        flex-direction: column;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .nav-links {
        display: none;
    }

    .authors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .authors-grid {
        grid-template-columns: 1fr;
/* Telefon ve Bilgisayar Görünümünü Eşitleme Kodları */
@media screen and (max-width: 768px) {
    
    body, html, section, div, .container {
        background-color: #0c0c0c !important; /* Bilgisayardaki koyu siyah arka plan */
        color: #ffffff !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin: 0 !important;
        float: none !important;
    }

    /* Logonun bilgisayardaki gibi düzgün kalmasını sağlar, taşmaları engeller */
    img, .logo, [class*="logo"] {
        max-width: 90% !important;
        height: auto !important;
        display: block !important;
        margin: 10px auto !important;
    }

    /* Yazı alanlarını bilgisayar düzenindeki gibi geniş ve okunaklı yapar */
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        text-align: left !important;
        color: #e0e0e0 !important;
    }

    /* Başlıkları bilgisayardaki gibi temiz ve beyaz tutar */
    h1, h2, h3, .vizyon-baslik {
        color: #ffffff !important;
        font-size: 26px !important;
        text-align: left !important;
        font-weight: bold !important;
        margin-top: 20px !important;
    }
