/* ==========================================
   1. RENK PALETİ VE TEMEL AYARLAR
   ========================================== */
:root {
    --c-black: #0B0909;
    --c-white: #FFF2F2; 
    --c-yellow: #E1E100;
    --font-sf: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-white);
    color: var(--c-black);
    font-family: var(--font-sf);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: var(--nav-height); 
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 200vw;
    height: 200vh;
    background-image: radial-gradient(var(--c-black) 1px, transparent 1px);
    background-size: 35px 35px;
    opacity: 0.03;
    animation: moveBg 40s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes moveBg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-35px, -35px); }
}

/* ==========================================
   2. AÇILIŞ EKRANI (PRELOADER)
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--c-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    animation: hidePreloader 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
}

.preloader h1 {
    font-family: var(--font-sf);
    font-weight: 800; 
    font-size: 8vw;
    text-transform: uppercase;
    color: var(--c-black);
    letter-spacing: -0.02em;
    animation: textReveal 1.5s ease-out forwards;
}

@keyframes hidePreloader {
    to { opacity: 0; visibility: hidden; }
}

@keyframes textReveal {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* ==========================================
   3. MENÜ (NAVBAR)
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--c-white); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    z-index: 10000;
}

.navbar .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: var(--c-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-top: 0.3rem; 
}

.lang-switcher a {
    text-decoration: none;
    color: var(--c-black);
    font-family: var(--font-sf);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.lang-switcher a:hover {
    opacity: 0.8;
}

.lang-switcher a.active {
    opacity: 1;
    border-bottom: 1px solid var(--c-black);
    padding-bottom: 2px;
}

.navbar .logo:hover {
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--c-black);
    font-size: 0.75rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; 
    background-color: var(--c-black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}



/* ==========================================
   ANA EKRAN (HERO) - DÜZELTİLMİŞ HALİ
   ========================================== */
.hero {
    height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 3rem;
    position: relative;
    overflow: hidden;
    background-color: var(--c-white); 
}

.hero-hover-area {
    position: relative;
    z-index: 5;
    cursor: default;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Arka Plan Görseli: Başlangıçta kapalı */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    clip-path: inset(50% 50% 50% 50%);
    transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1); 
}

/* Fareyle üzerine gelince görsel tam ekrana açılır */
.hero-hover-area:hover ~ .hero-bg-img {
    clip-path: inset(0% 0% 0% 0%);
}

/* 1. Üstteki Etiketler, Ortadaki Hoşgeldiniz ve İmza (Görsel açılınca kaybolacaklar) */
.editorial-labels,
.hero-content {
    position: relative;
    z-index: 5;
    transition: opacity 0.4s ease;
}

.hero-hover-area:hover .hero-content,
.hero-hover-area:hover ~ .editorial-labels,
.editorial-labels:hover {
    opacity: 0;
    pointer-events: none;
}

/* Eğer etiketler ve içerik .hero-hover-area içinde veya kardeş elemansa, 
   fare hover olduğunda hero içindeki ana metinlerin kaybolması için toplu kural: */
.hero-hover-area:hover ~ .editorial-labels,
.hero-hover-area:hover .hero-content {
    opacity: 0;
    pointer-events: none;
}

/* 2. SAĞ ALTTAKİ PORTFOLYO YAZISI: Kesinlikle sabit kalır, etkilenmez */
.bottom-right-label {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 100;
    pointer-events: auto;
}
.hero-title {
    font-weight: 800; 
    font-size: 11vw; 
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--c-black);
    margin: 0;
    cursor: default;
    letter-spacing: -0.03em;
}

.hero h2 {
    font-size: 1.2rem; 
    font-weight: 600;
    margin-top: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--c-black);
    text-transform: uppercase;
}

.title-wrapper {
    position: relative; 
}

.editorial-labels {
    position: absolute;
    bottom: 100%; 
    left: 16%; 
    display: flex;
    flex-direction: column; 
    gap: 1.2rem; 
    margin-bottom: 1rem; 
    pointer-events: none;
}

.daktilo-label {
    font-family: "Courier New", Courier, monospace; 
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-black);
    line-height: 1.5;
    opacity: 0.9;
    text-align: left;
    white-space: nowrap;
}

.bottom-right-label {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 0.2rem;
    font-family: var(--font-sf); 
    font-size: 0.65rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-black);
    z-index: 10;
    opacity: 0.8;
}

/* ==========================================
   5. ÇALIŞMALARIM (3 SÜTUNLU STÜDYO GRID SİSTEMİ)
   ========================================== */
.works-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem;
    padding: 8rem 3rem;
}

/* Sol Sütun (Yazıların Taşıyıcısı) */
.we-text-col {
    grid-column: 1 / 2; 
    display: flex;
    flex-direction: column;
    gap: 0.8rem; 
    align-self: flex-start; /* Sticky ve top satırları tamamen silindi */
}
/* ÇALIŞMALARIM BAŞLIĞI */
.we-small-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7vw;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--c-black);
    text-transform: uppercase;
    margin-bottom: 0; /* Ekstra boşluk yaratmaması için sıfırlandı */
}

.we-overview-text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    max-width: 90%;
}

/* TÜM PORTFOLYOYU İNCELE YAZISI (Gri ve ince çizgili yapıldı) */
.action-btn-text {
    font-family: var(--font-sf);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #888888; 
    border-bottom: 1px solid #888888; 
    padding-bottom: 0.2rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

/* Üzerine gelindiğinde siyaha dönme efekti eklendi */
.action-btn-text:hover {
    color: var(--c-black);
    border-bottom-color: var(--c-black);
}

/* Sağ Sütunlar (Görseller) */
.we-image-col {
    grid-column: 2 / 4; 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 3rem 1.5rem; 
}

.we-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.we-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px; 
    overflow: hidden;
    background-color: #ddd;
}

.we-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.we-card:hover .we-img-wrapper img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.we-caption {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-sf);
    font-size: 0.70rem;
    color: var(--c-black);
}

.we-cap-num { color: #888; font-weight: 700; }
.we-cap-title { font-weight: 800; text-transform: uppercase; }
.we-cap-cat { color: #888; font-weight: 600; text-transform: capitalize; }

/* ==========================================
   6. HAKKIMDA BÖLÜMÜ 
   ========================================== */
.about-reference {
    height: auto !important; 
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; 
    padding: 10rem 3rem 10rem 3rem !important; 
    box-sizing: border-box !important;
    background-color: var(--c-white);
}

.ar-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ar-huge-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7vw;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--c-black);
    text-transform: uppercase;
}

.ar-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 0; 
    width: 100%;
    margin: 0; 
}

.ar-more-link {
    font-family: var(--font-sf);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #888888; 
    border-bottom: 1px solid #888888; 
    padding-bottom: 0.2rem;
    margin-top: 1rem; 
    transition: all 0.3s ease; 
}

.ar-more-link:hover {
    color: var(--c-black);
    border-bottom-color: var(--c-black);
}

.ar-label {
    font-family: var(--font-sf);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--c-black);
}

.ar-col p {
    font-family: var(--font-sf);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--c-black);
    max-width: 90%;
    margin: 0;
}

/* ==========================================
   7. ALT CV BÖLÜMÜ
   ========================================== */
.cv-bottom-section {
    display: flex;
    justify-content: center; 
    padding-top: 1rem; 
}

.cv-column {
    display: flex;
    flex-direction: column;
    gap: 3.5rem; 
    width: 100%;
    max-width: 600px; 
}

.cv-block { display: flex; flex-direction: column; }

.am-subtitle {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem; 
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--c-black);
    padding-bottom: 0.4rem;
}

.am-info-row { display: flex; flex-direction: column; gap: 1.2rem; }
.am-info-col { display: flex; flex-direction: column; gap: 0.1rem; }

.am-date {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
}

.am-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
}

.am-desc {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.70rem;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--c-black);
}

/* ==========================================
   8. ORTAK BUTONLAR VE İLETİŞİM
   ========================================== */
.action-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--c-black);
    color: var(--c-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--c-black);
    box-shadow: 4px 4px 0px rgba(11, 9, 9, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
}

.action-btn:hover {
    background-color: var(--c-yellow);
    color: var(--c-black);
    transform: translate(2px, 2px) rotate(-1deg);
    box-shadow: 2px 2px 0px rgba(11, 9, 9, 0.2);
}

.contact-mini {
    background-color: var(--c-yellow);
    text-align: center;
    padding: 4rem 3rem;
}

/* ==========================================
   10. EDİTORYAL "ÇALIŞMALARIM" SAYFASI
   ========================================== */
body.editorial-portfolio {
    background-color: var(--c-white);
    overflow-y: auto;
    height: auto;
}
.editorial-portfolio html { scroll-snap-type: none; }
.portfolio-container { padding-top: 2rem; }

.magazine-project {
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    padding: 0 3rem;
    margin-bottom: 5rem; /* Projeler arası boşluk dengelendi */
}

/* BUNUNLA DEĞİŞTİR */
.magazine-top-bar {
    display: flex;
    justify-content: space-between;
    border-top: none !important;      /* <-- Çizgi kaldırıldı */
    border-bottom: 1.5px solid var(--c-black);    /* <-- Çizgi kaldırıldı */
    padding: 0.8rem 0;
    margin-bottom: 4rem; /* Çizgiler kalktığı için belki burayı biraz daha açabilirsin, örn: 5rem */
    font-family: "Courier New", Courier, monospace; 
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-black);
    /* Opsiyonel: Belki çizgiler gidince yazıları tam ortalamak isteyebilirsin */
    align-items: center;
}


.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; /* İçerikleri üstten hizalayarak kesilmeleri önler */
    margin-bottom: 1.5rem !important; /* Alt galeriyle kapağı birbirine yaklaştırır */
}

.mag-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.2rem;
}

.mag-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

/* Metin grubunun içindeki h2 başlığının boyutunu da ayarlayalım (isteğe bağlı) */
.mag-left h2 {
    font-size: 6vw; /* İstenen başlık boyutu */
    line-height: 0.9;
    margin-bottom: 1rem;
}

.mag-small-img-wrapper {
    width: 45%; 
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.mag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mag-small-img-wrapper .mag-img { aspect-ratio: 3/4; }

.mag-caption {
    font-family: var(--font-sf);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #444;
    line-height: 1.5;
}

/* YENİ, ZARİF EDİTORYAL BOYUT */
.mag-huge-title {
    font-size: 45px !important; /* <-- 96px (veya 90px) ideal bir editoryal başlıktır */
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: var(--c-black);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin: 0;
    text-transform: uppercase;
}

.mag-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem !important; /* Boşluğu daha dar ve kompakt hale getirdik */
}

.mag-desc {
    font-size: 0.90rem; 
    font-weight: 500;
    line-height: 1.3;
    color: var(--c-black);
    max-width: 400px;
    margin: 0; 
}

.mag-right { width: 100%; display: flex; }

/* Sağdaki Kapak Görseli: 1080x1440 (3:4) Oranına Sabitlenmiş Hali */
.mag-large-img-wrapper {
    width: 100%;
    max-width: 420px; /* Görselin devleşmesini engeller, ideal boyutta tutar */
    aspect-ratio: 3 / 4; /* Tam 1080x1440 dikey oranını korur */
    background-color: transparent;
    overflow: hidden;
}

.mag-large-img-wrapper img, 
.mag-large-img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görsel oranını bozmadan kutuyu doldurur, kesilme yapmaz */
    display: block;
}

/* Alttaki yatay kaydırmalı galeri alanı */
.horizontal-showcase {
    margin-top: 1rem !important;
    padding-top: 0 !important;
}
.showcase-info { max-width: 700px; margin-bottom: 3rem; }

.showcase-info p {
    font-size: 1.1rem; /* Önceki değer muhtemelen 1.5rem civarıydı */
    line-height: 1.6;
    font-weight: 400;
    color: var(--c-black);
    margin-top: 2rem;
    max-width: 500px;
}

.showcase-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0 4rem 0; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: center; 
}

.showcase-track::-webkit-scrollbar { display: none; }

.s-item {
    flex: 0 0 auto;
    height: 45vh; 
    aspect-ratio: 3/4;
    scroll-snap-align: center;
    position: relative;
    cursor: crosshair;
}

.s-item.horizontal { aspect-ratio: 16/9; }

.s-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.s-item:hover img {
    transform: scale(1.12); 
    box-shadow: 0px 25px 45px rgba(0,0,0,0.15);
    z-index: 10;
    position: relative;
}

/* ==========================================
   11. LIGHTBOX (GÖRSEL BÜYÜTME EKRANI)
   ========================================== */
.lightbox {
    display: none; 
    position: fixed; 
    z-index: 999999; 
    left: 0;
    top: 0;
    width: 100vw; 
    height: 100vh; 
    background-color: rgba(11, 9, 9, 0.95);
    backdrop-filter: blur(8px); 
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 4px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--c-white);
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
}

.lightbox-close:hover { color: var(--c-yellow); transform: scale(1.1); }

/* ==========================================
   12. KAYDIRMA (SCROLL REVEAL) ANİMASYONU
   ========================================== */
.reveal-up, .reveal-slide {
    opacity: 0;
    transform: translateY(80px); 
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-up.active, .reveal-slide.active {
    opacity: 1;
    transform: translateY(0); 
}


/* ==========================================
   HAKKIMDA BÖLÜMÜ (KESİN ÇÖZÜM)
   ========================================== */

/* Ana Taşıyıcı: Sayfayı kaplar, alt kısımdaki elemanları tabana sabitler */
#hakkimda-hero {
    position: relative !important;
    width: 100% !important;
    min-height: 85vh !important; /* Ekranın büyük kısmını kaplar */
    padding: 4rem 3rem 12rem 3rem !important; /* Alttan 12rem boşluk, yazının resme binmesini engeller */
    background-color: var(--c-white) !important;
    box-sizing: border-box !important;
    display: block !important;
    border-bottom: 2px solid var(--c-black) !important;
}

/* Büyük Metin: Yukarıda serbest kalır */
#hakkimda-hero .about-hero-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 3.5vw !important; /* İstenen devasa boyut */
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    color: var(--c-black) !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Alt Kısım Taşıyıcısı: Kesin olarak en dibe (bottom: 3rem) kilitler */
#hakkimda-hero .about-hero-bottom {
    position: absolute !important;
    bottom: 3rem !important;
    left: 3rem !important;
    right: 3rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
}

/* İletişim Bilgileri (Sol Alt) */
#hakkimda-hero .about-footer-left {
    font-family: "Courier New", Courier, monospace !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    color: var(--c-black) !important;
    text-align: left !important;
}

/* Profil Fotoğrafı (Sağ Alt - Çok Küçük) */
#hakkimda-hero .about-small-img {
    width: 150px !important; /* Görsel burada kesin olarak KÜÇÜLTÜLDÜ */
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    filter: grayscale(100%) !important; /* Editoryal hava için siyah beyaz (istemezsen bu satırı sil) */
}

/* Mobil Görünüm Düzeltmesi */
@media (max-width: 768px) {
    #hakkimda-hero {
        min-height: auto !important;
        padding: 4rem 1.5rem 10rem 1.5rem !important;
    }
    #hakkimda-hero .about-hero-title {
        font-size: 3vw !important;
    }
    #hakkimda-hero .about-hero-bottom {
        bottom: 2rem !important;
        left: 1.5rem !important;
        right: 1.5rem !important;
    }
    #hakkimda-hero .about-small-img {
        width: 90px !important; /* Mobilde daha da küçük */
    }
}

/* ==========================================
   13. MOBİL UYUM (EN ALTTA OLMALI)
   ========================================== */

/* Varsayılan (Masaüstü): Mobil logo gizli, masaüstü logo görünür */
.mobile-logo { display: none; }
.desktop-logo { display: inline-block; }

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        height: 75px;
        justify-content: space-between;
        align-items: center;
    }
    
    body {
        padding-top: 75px;
    }

    /* Mobilde masaüstü logoyu gizle, BT logosunu tek ve net göster */
    .desktop-logo { display: none !important; }
    .mobile-logo { 
        display: inline-block !important; 
        font-family: 'Montserrat', sans-serif; 
        font-size: 1.2rem; 
        font-weight: 900; 
        letter-spacing: -0.02em;
        text-transform: uppercase;
        color: var(--c-black);
        text-decoration: none;
    }

    /* Sol üst logo alanı ve TR/ENG alt alta yerleşimi */
    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }

    .lang-switcher {
        display: flex;
        gap: 0.4rem;
        align-items: center;
        margin-top: 0;
    }

    .lang-switcher a { 
        font-size: 0.6rem; 
    }

    /* Sağ üst menü linkleri tek sıra */
    .nav-links { 
        gap: 0.8rem; 
        align-items: center;
    }
    
    .nav-links a { 
        font-size: 0.65rem; 
        white-space: nowrap;
    }

    .preloader h1 { font-size: 12vw; }
    
    /* Hero / Hoşgeldiniz Alanı ve Etiketleri */
    .hero {
        height: calc(100vh - 75px);
        padding: 0 1.5rem;
    }
    
    /* Mobilde illüstrasyon ve görsel iletişim yazılarının görünmesi */
    .editorial-labels { 
        display: flex !important; 
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    } 
    
    .daktilo-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .hero-title { font-size: 13vw; }
    .hero h2 { font-size: 0.95rem; }
    .bottom-right-label { bottom: 1.5rem; right: 1.5rem; font-size: 0.55rem; }
    
    /* Çalışmalarım Bölümü */
    .works-editorial { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
    .we-text-col { position: relative; top: 0; grid-column: 1 / -1; }
    .we-image-col { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 2rem; }
    
    .we-small-title { font-size: 10vw; }
    .ar-huge-title { font-size: 10vw; }
    
    /* Hakkımda Bölümü Mobil */
  /* SADECE MOBİL İÇİN: Hakkımda bölümü içindeki boşlukları azaltır ve yazıları yukarı çeker */
    .about-reference {
        height: auto !important;
        min-height: auto !important;
        padding: 70px 1.5rem 2rem 1.5rem !important;
    }
    
  /* Mobilde Hakkımda alt kısmını tamamen tek sütun, alt alta hizala */
    .ar-bottom {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        width: 100% !important;
    }

    /* "Daha Fazlası" ve paragrafların tamamı mobilde alt alta düz akacak */
    .ar-col {
        width: 100% !important;
    }

    .ar-col p {
        max-width: 100% !important;
        margin: 0 !important;
    } 
    .ar-col p { max-width: 100%; }
    
    .about-minimal { padding: 4rem 1.5rem; }
    .contact-mini { padding: 3rem 1.5rem; }

    /* Dergi Projeleri Mobil Uyum */
    .magazine-top-bar { display: none; } 
    .magazine-project { padding: 0 1.5rem; margin-bottom: 5rem; }
    .magazine-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 1rem; }
    .mag-left { display: flex; flex-direction: column-reverse; gap: 2rem; }
    .mag-huge-title { font-size: 14vw; margin-left: 0; } 
    .mag-small-img-wrapper { width: 70%; margin-bottom: 0; }
    .mag-large-img-wrapper { height: 60vh; }
    .showcase-info p { font-size: 0.95rem; }
    .showcase-track { gap: 1rem; padding: 1rem 0 3rem 0; }
    .s-item { height: 40vh; }
}

.about-hero { min-height: auto; padding: 4rem 1.5rem !important; }
.about-hero-title { font-size: 6vw; }
.about-hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; }

/* Sayfanın en altındaki telif yazısı (Footer) */
footer, .footer-bottom, body > p:last-child {
    position: relative;
    z-index: 10;
    clear: both;
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    margin-top: 6rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: block;
}

/* Varsayılan olarak masaüstünde bu ipucu gizlidir */
.scroll-indicator {
    display: none;
}

/* SADECE MOBİL İÇİN */
@media (max-width: 768px) {
    .scroll-indicator {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: "Courier New", Courier, monospace;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #666;
        margin-top: -1rem; /* Galerinin hemen altında şık durması için */
        margin-bottom: 2rem;
        letter-spacing: 0.08em;
        animation: pulseScroll 1.5s infinite ease-in-out;
    }
}

/* Hafifçe yanıp sönerek dikkat çeken zarif animasyon */
@keyframes pulseScroll {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

/* Lightbox Ok Butonları */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--c-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    padding: 1rem 1.5rem;
    z-index: 1000000;
    transition: color 0.2s, transform 0.2s;
    user-select: none;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-arrow:hover {
    color: var(--c-yellow);
    transform: translateY(-50%) scale(1.1);
}

/* Mobil uyum için okları biraz daha içe ve küçüğe alalım */
@media (max-width: 768px) {
    .lightbox-arrow {
        font-size: 2.2rem;
        padding: 0.5rem;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-close { top: 1rem; right: 1.5rem; font-size: 2.8rem; }
}