/* Google Fonts - Kurumsal Kimlik Yazı Tipleri */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Barlow:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* Temel Renk Değişkenleri - Yeni Kurumsal Tasarım Uyumlu */
:root {
    --bg-dark: #1a1f2e; /* Steel - Ana Arka plan */
    --bg-panel: #2c3347; /* Iron - Header/Footer/Kart arka planı */
    --gold: #c9a84c; /* CordaNex Ana Vurgu Rengi */
    --gold-light: #e8c96a; /* Parlak Altın Vurgu */
    --text-light: #f5f0e8; /* Cream - Ana Metin Rengi */
    --text-muted: #8a8f9e; /* Muted - Pasif Metin Rengi */
    --white: #fafaf8; /* Başlıklar için tam beyaz */
}

body {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Üst Menü (Header) */
.header {
    background-color: var(--bg-dark);
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201,168,76,0.15); /* Altın renginin hafif saydam hali */
}

/* Logo Düzeni */
.logo a {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

/* Navigasyon Linkleri */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
}

/* Dil Seçici */
.lang-switch a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.lang-switch a:hover, 
.lang-switch a.active {
    color: var(--gold);
    font-weight: 600;
}

/* İçerik Alanı */
.content-container {
    padding: 4rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 3rem;
}

.page-content {
    line-height: 1.9;
    font-size: 1.05rem;
    color: rgba(245,240,232,0.8);
}

/* Alt Kısım (Footer) */
.footer {
    text-align: center;
    padding: 4rem 5rem;
    background-color: var(--bg-dark);
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-top: 1px solid rgba(201,168,76,0.15);
}

/* Mobil Uyumluluk Revizyonu (Header & Footer İçin) */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.5rem;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-container {
        padding: 3rem 2rem;
    }
    
    .footer {
        padding: 2rem;
    }
}
/* YÖNETİM VE KURUCULAR - ETİMOLOJİ (SPLIT) STİLİ KARTLAR */
.team-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Etimoloji bölümündeki gibi 2'li kolon */
    gap: 2px; /* Kartlar arası o ince ayırıcı çizgi efekti için */
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .team-grid { grid-template-columns: 1fr; }
}

.team-card {
    background: var(--bg-panel);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.team-card:hover {
    background: #1c2230; /* Üzerine gelince çok hafif aydınlanma */
}

/* Arkadaki devasa silik isim filigranı */
.team-card::before {
    content: attr(data-name);
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    color: rgba(201,168,76,0.03); /* Çok hafif altın sarısı izi */
    pointer-events: none;
    line-height: 1;
    z-index: 0;
    text-transform: uppercase;
}

.team-card-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 1px solid rgba(201,168,76,0.3);
    filter: grayscale(100%) contrast(120%);
    position: relative;
    z-index: 1;
    transition: filter 0.5s ease;
}

.team-card:hover .team-card-photo {
    filter: grayscale(0%) contrast(100%); /* Üzerine gelince renkler geri gelsin */
}

.team-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    line-height: 1.1;
}

.team-card-title {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.team-card-bio {
    font-size: 1rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Biyografi içindeki vurguları altın sarısı yapma */
.team-card-bio strong {
    color: var(--gold-light);
    font-weight: 500;
}