/* --- GATESNOTES EDİTORYAL TEMA (FİNAL) --- */
:root {
    --bg-paper: #ffffff;
    --text-ink: #111111;
    --text-gray: #555555;
    --border-light: #e6e6e6;
    
    /* Fontlar */
    --font-head: 'Source Serif 4', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Renkler */
    --accent-color: #000000;
    --highlight-color: #C8102E; /* Özel Kırmızı: Logo noktası ve çizgiler için */
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-paper);
    color: var(--text-ink);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-ink);
    margin-top: 0;
    line-height: 1.15;
}

p {
    margin-bottom: 1.5rem;
    color: #333;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
a:hover { color: #000; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 25px; }

/* --- HEADER --- */
header {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { 
    font-family: var(--font-body);
    font-weight: 700; 
    font-size: 1.5rem; 
    letter-spacing: -0.5px;
    color: #000;
}

/* Logodaki nokta rengi */
.logo span {
    color: var(--highlight-color);
}

nav a { 
    font-size: 0.95rem; 
    font-weight: 500; 
    margin-left: 25px; 
    color: #666; 
}
nav a:hover { color: #000; text-decoration: none; }

/* --- HERO --- */
.hero {
    padding: 100px 0 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 { 
    font-size: 4rem; 
    margin-bottom: 40px; 
    font-weight: 900;
    letter-spacing: -1px;
}

/* Manifesto Metni */
.hero-lead {
    font-family: var(--font-head);
    font-size: 1.35rem;
    line-height: 1.6;
    color: #222;
    /* Sol taraftaki kırmızı çizgi */
    border-left: 4px solid var(--highlight-color);
    padding-left: 30px;
    margin-bottom: 50px;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.quote-text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #111;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.quote-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

/* --- PROGRAMLAR --- */
.programs-section { padding: 100px 0; }
.section-label { 
    font-family: var(--font-body);
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #888; 
    margin-bottom: 40px; 
    display: block; 
    font-weight: 600;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.program-card {
    display: flex;
    flex-direction: column;
}

.program-image-container {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 4px;
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image {
    transform: scale(1.03);
}

.program-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    /* Kart başlıklarındaki kırmızı vurgu */
    color: var(--highlight-color);
    margin-bottom: 10px;
    display: block;
}

.program-card h3 { font-size: 2rem; margin-bottom: 15px; }
.program-card p { font-size: 1.1rem; color: #444; flex-grow: 1; }

.program-link { 
    font-weight: 600; 
    font-size: 1rem; 
    border-bottom: 2px solid #ccc; 
    display: inline-block; 
    margin-top: 20px; 
    align-self: flex-start;
    padding-bottom: 2px;
}
.program-link:hover { border-bottom-color: #000; }

/* --- GAYRİNİZAMİ DÜŞÜNCE (NOTLAR) --- */
/* --- DÜŞÜNCE / MAKALELER GRID DÜZENİ --- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
}

/* Izgara Yapısı: Masaüstünde 3 Sütun */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 50px; /* Kartlar arası boşluk */
    align-items: start;
}

/* Kart Tasarımı */
.article-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 4px solid #000; /* Gates tarzı kalın üst çizgi */
    padding-top: 25px;
    height: 100%; /* Kartların boyunu eşitle */
}

.article-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--highlight-color); /* Kırmızı kategori başlığı */
    margin-bottom: 15px;
    text-transform: uppercase;
    display: block;
}

.article-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 15px;
    font-weight: 700;
}

.article-title a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.article-title a:hover {
    color: var(--highlight-color);
}

.article-excerpt {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    margin-top: auto; /* Butonu en alta it */
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid #eee;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.read-more:hover {
    border-bottom-color: var(--highlight-color);
}

/* Mobil Ayarlar (Tablet ve Telefon) */
@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun olsun */
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 2.5rem; /* Mobilde başlığı biraz küçült */
    }
}

/* --- FOOTER (FİNAL) --- */
footer {
    background-color: #fff;
    padding: 100px 0 60px 0; /* Üst boşluğu artırdık, ferah olsun */
    border-top: 4px solid #000; /* Gates tarzı kalın çizgi */
    text-align: center;
}

/* CTA Alanı: Markanızın düğüm noktası... */
.footer-cta {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.footer-cta h3 {
    font-family: var(--font-head); /* Serif font ile editoryal hava */
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

/* Linkin altını kırmızı çiziyoruz */
.footer-cta a {
    color: #000;
    border-bottom: 3px solid var(--highlight-color); /* Kırmızı çizgi */
    transition: all 0.2s ease;
}

.footer-cta a:hover {
    color: var(--highlight-color); /* Hover'da yazı kırmızı olsun */
    border-bottom-color: transparent;
}

/* Sosyal Medya Linkleri */
.footer-social {
    margin-bottom: 40px;
}

.footer-social a { 
    margin: 0 20px; 
    font-weight: 600; 
    font-size: 1rem; 
    color: #111;
    position: relative;
}

/* Sosyal medya linklerinin üzerine gelince hafif yukarı kalksın */
.footer-social a:hover { 
    color: var(--highlight-color);
    top: -2px; 
}

.copyright {
    margin-top: 40px; 
    font-size: 0.85rem; 
    color: #999;
}

/* Mobil Ayar */
@media (max-width: 768px) {
    .footer-cta h3 { font-size: 1.8rem; }
    .footer-social a { display: block; margin: 15px 0; } /* Mobilde alt alta */
}

/* --- İLETİŞİM SAYFASI (SPLIT LAYOUT) - GÜNCEL --- */

.contact-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Ekranı ikiye böl */
    min-height: calc(100vh - 200px); /* Yüksekliği ekran kadar yap */
}

/* Sol Taraf: Bilgi */
.contact-info-col {
    /* GÜNCELLEME: Soldan %10 boşluk bırakarak içeriği ortaladık */
    padding: 80px 60px 80px 10%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 4rem;
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 30px;
}

.contact-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 40px;
    border-left: 3px solid #000;
    padding-left: 20px;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-family: var(--font-body);
    font-weight: 700;
}

.info-item a, .info-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    margin: 0;
}

.info-item a:hover { color: var(--highlight-color); }

/* Sağ Taraf: Form */
.contact-form-col {
    background-color: #f4f3ef; /* Hafif bej/gri zemin */
    padding: 80px 10% 80px 60px; /* Formu da sağdan biraz içeri aldık */
    display: flex;
    align-items: center;
}

.form-wrapper { width: 100%; max-width: 500px; margin: 0 auto; }

.form-group { margin-bottom: 25px; }

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    font-family: var(--font-body);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    background-color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.btn-submit {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover { background-color: var(--highlight-color); }

/* Mobil Ayarlar */
@media (max-width: 900px) {
    .contact-grid-section { grid-template-columns: 1fr; }
    
    /* Mobilde kenar boşluklarını eşitledik */
    .contact-info-col { padding: 60px 25px; }
    .contact-form-col { padding: 60px 25px; }
    
    .contact-heading { font-size: 3rem; }
}
/* --- MOBİL KENAR BOŞLUKLARI (NEFES PAYI) --- */

@media (max-width: 768px) {
    /* Tüm container'lara kenar boşluğu ver */
    .container, 
    .header-inner,
    .contact-info-col,
    .contact-form-col {
        padding-left: 25px !important;
        padding-right: 25px !important;
        width: 100%; /* Taşmayı engelle */
        box-sizing: border-box; /* Padding eklenince ekranın genişlemesini engelle */
    }

    /* GEP ve Makale içindeki görsellerin taşmasını engelle */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Hero Başlıklarının çok büyük olup taşmasını engelle */
    h1, .article-title {
        word-wrap: break-word; /* Çok uzun kelime varsa alt satıra indir */
    }
}