:root {
            --bg: #fcfcfc;
            --text: #1a1a1a;
            --accent: #8e7f66; /* Antik altın/pirinç tonu */
            --soft-gray: #f2f2f2;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            background: var(--bg); 
            color: var(--text); 
            line-height: 1.7; 
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Zarif Navigasyon */
        nav { 
            position: fixed; top: 0; width: 100%; padding: 0 5%; 
            display: flex; justify-content: space-between; align-items: center; 
            background: rgba(252, 252, 252, 0.9); 
            backdrop-filter: blur(10px); z-index: 2000; 
            height: 90px; border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .logo { 
            font-family: 'Cormorant Garamond', serif; 
            font-weight: 600; font-size: 1.4rem; 
            letter-spacing: 3px; color: var(--text);
            text-decoration: none;
        }

        .nav-links { display: flex; gap: 30px; }
        .nav-links a { 
            text-decoration: none; color: var(--text); 
            font-size: 0.7rem; font-weight: 600; 
            letter-spacing: 2px; transition: var(--transition);
            opacity: 0.7;
        }
        .nav-links a:hover { opacity: 1; color: var(--accent); }

        .hamburger { display: none; cursor: pointer; border: none; background: none; }
        .hamburger span { display: block; width: 20px; height: 1px; background: #000; margin: 6px 0; }

        /* Hero Bölümü */
        .hero { 
            height: 100vh; display: flex; flex-direction: column; 
            justify-content: center; align-items: center; text-align: center;
            padding: 0 10%; background: radial-gradient(circle at center, #fff 0%, #f4f4f4 100%);
        }
        
        .hero-title { 
            font-family: 'Cormorant Garamond', serif; 
            font-size: clamp(3rem, 10vw, 6rem); 
            font-weight: 300; line-height: 1; margin-bottom: 20px;
            letter-spacing: -2px;
        }
        
        .hero-subtitle { 
            font-size: 0.9rem; letter-spacing: 6px; 
            text-transform: uppercase; color: var(--accent); margin-bottom: 60px;
        }

        .hero-quote {
            max-width: 800px; font-family: 'Cormorant Garamond', serif;
            font-style: italic; font-size: 1.5rem; line-height: 1.6;
            color: #444; position: relative; padding: 40px 0;
            border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;
        }

        /* Genel Section Yapısı */
        section { padding: 120px 10%; max-width: 1600px; margin: 0 auto; }
        h2 { 
            font-family: 'Cormorant Garamond', serif; font-size: 3rem; 
            font-weight: 400; margin-bottom: 3rem; position: relative;
        }
        h2::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 50px; height: 1px; background: var(--accent); }

        /* Özgeçmiş Grid */
        .bio-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 100px; align-items: start; }
        .bio-text p { margin-bottom: 25px; text-align: justify; font-size: 1.05rem; color: #333; }
        
        .exhibition-card {
            background: #f9f9f9; padding: 50px; border-radius: 2px;
            border: 1px solid #eee;
        }
        .exhibition-list { 
            list-style: none; font-size: 0.85rem; line-height: 2.4; 
        }
        .exhibition-list li {
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between; /* Metni sola, yılı sağa yaslar */
            align-items: flex-start;
            gap: 20px;
            padding: 12px 0;
        }

        /* Sergi İsmi (Siyah) */
        .exhibition-list li span:first-child {
            color: var(--text);
            font-weight: 400;
            line-height: 1.4;
            flex: 1; /* Metnin tüm alanı kullanmasını sağlar */
        }

        /* Yıl (Kahverengi) */
        .exhibition-list .exh-date {
            color: var(--accent);
            font-weight: 600;
            flex-shrink: 0; /* Yılın sıkışmasını engeller */
            text-align: right;
            min-width: 45px;
            font-size: 0.85rem;
        }

        /* Kritik Yazılar - Editorial Tasarım */
        .article-block { 
            margin-bottom: 150px; display: grid; grid-template-columns: 300px 1fr; gap: 60px;
        }
        .article-meta { font-family: 'Cormorant Garamond', serif; }
        .article-meta h3 { font-size: 1.8rem; line-height: 1.2; margin-bottom: 10px; }
        .article-meta small { text-transform: uppercase; letter-spacing: 2px; color: var(--accent); }
        .article-content { font-size: 1.1rem; line-height: 1.8; color: #222; border-left: 1px solid #eee; padding-left: 40px; }

        /* Galeri */
        .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
        .gallery-card {
            position: relative; height: 500px; background: #eee; overflow: hidden; cursor: pointer;
            display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; color: white;
            transition: var(--transition);
        }
        .gallery-card::before { 
            content: ""; position: absolute; inset: 0; 
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%); 
            z-index: 1; transition: var(--transition);
        }
        .gallery-card:hover::before { background: rgba(0,0,0,0.85); }
        .gallery-card h3 { position: relative; z-index: 2; font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 5px; }
        .gallery-card p { position: relative; z-index: 2; font-size: 0.8rem; letter-spacing: 2px; opacity: 0.8; }
        
        /* Yayınlar */
        .pub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .pub-item { padding: 40px; background: white; border: 1px solid #eee; transition: var(--transition); }
        .pub-item:hover { border-color: var(--accent); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

        /* Overlay */
        .overlay {
            position: fixed; inset: 0; background: rgba(255,255,255,0.98); 
            z-index: 3000; display: none; flex-direction: column; align-items: center; justify-content: center;
        }
        .overlay.active { display: flex; }
        .slider-container { width: 80%; height: 70vh; display: flex; gap: 20px; overflow-x: auto; padding: 20px; scroll-snap-type: x mandatory; }
        .slide { flex: 0 0 600px; scroll-snap-align: center; background: white; padding: 15px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
        .slide img { width: 100%; height: 100%; object-fit: contain; }

        /* İletişim */
        .contact { background: #1a1a1a; color: white; padding: 100px 10%; text-align: center; }
        .contact h2 { color: white; margin-bottom: 20px; text-align: center; }
        .contact h2::after { left: 50%; transform: translateX(-50%); }
        .email-link { 
            font-size: 2rem; color: var(--accent); text-decoration: none; 
            font-family: 'Cormorant Garamond', serif; margin: 40px 0; display: block;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .bio-container, .article-block, .pub-grid { grid-template-columns: 1fr; }
            .article-content { border-left: none; padding-left: 0; padding-top: 30px; border-top: 1px solid #eee; }
            .gallery-grid { grid-template-columns: 1fr; }
            .article-block { margin-bottom: 80px; }
        }

        @media (max-width: 768px) {
            /* Section padding'lerini azalt ki içerik sıkışmasın */
            section {
                padding: 60px 5%; 
            }

            /* Grid aralığını daralt */
            .bio-container {
                gap: 40px;
            }

            /* Kartın içindeki padding'i küçült */
            .exhibition-card {
                padding: 25px 20px;
            }

            /* Yazı boyutunu mobilde biraz küçültmek okunabilirliği artırır */
            .exhibition-list {
                font-size: 0.8rem;
            }
            .nav-links { 
                display: none; /* Varsayılan olarak gizli */
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 50px 0;
                gap: 30px;
                border-bottom: 1px solid #eee;
                z-index: 1000;
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            }

            /* Menü aktifken göster */
            .nav-links.active { 
                display: flex; 
                animation: fadeInDown 0.4s ease forwards;
            }

            .hamburger { display: block; position: relative; width: 30px; height: 20px; }
            .hamburger span { 
                position: absolute;
                width: 100%;
                transition: var(--transition);
            }
            .hamburger span:nth-child(1) { top: 0; }
            .hamburger span:nth-child(2) { bottom: 0; }

            /* Hamburger Aktif (Çarpı) Efekti */
            .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
            .hamburger.active span:nth-child(2) { transform: rotate(-45deg); bottom: 9px; }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Geçiş Perdesi Tasarımı */
        .page-transition {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg);
            z-index: 9999;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        /* Geçiş sırasında aktifleşecek sınıf */
        .page-transition.is-active {
            opacity: 1;
        }

        /* Bölümlerin yumuşak gelmesi için genel stil */
        section {
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
        }

        /* Resimlerin üzerine tıklayıp çekince resmi "koparmaya" çalışmasını engeller */
        #sliderContainer img {
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        /* Sürükleme alanının genel ayarları */
        #sliderContainer {
            display: flex;
            overflow-x: auto;
            cursor: grab;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch; /* Mobilde kaydırma desteği */
        }

        /* Fonts */
        /* Inter (Gövde Metni) - Türkçe Karakter Destekli */
        @font-face {
          font-family: 'Inter';
          font-style: normal;
          font-weight: 400;
          font-display: swap;
          /* Önemli: Dosyalarınızın latin-ext desteklediğinden emin olun */
          src: url('../fonts/inter-v20-latin-ext_latin-regular.woff2') format('woff2'); 
        }

        /* Cormorant Garamond (Başlıklar) - Türkçe Karakter Destekli */
        @font-face {
          font-family: 'Cormorant Garamond';
          font-style: normal;
          font-weight: 400;
          font-display: swap;
          src: url('../fonts/cormorant-garamond-v21-latin-ext_latin-regular.woff2') format('woff2');
        }

        @font-face {
          font-family: 'Cormorant Garamond';
          font-style: normal;
          font-weight: 700;
          font-display: swap;
          src: url('../fonts/cormorant-garamond-v21-latin-ext_latin-700.woff2') format('woff2');
        }

