/* Temel Ayarlar */
@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: #0c0c0c;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.section-container { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 2rem; font-weight: 400; color: #fff; }

/* --- Navigasyon (Akermo Style) --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 2rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100; mix-blend-mode: difference;
}
.logo { font-size: 1.5rem; font-weight: 500; font-family: 'Playfair Display', serif; color:#fff; }
.menu-btn { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; color:#fff; }

/* --- Tam Ekran Menü Overlay --- */
.menu-overlay {
    position: fixed; top: -100vh; left: 0; width: 100%; height: 100vh;
    background-color: #0c0c0c; z-index: 200;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: top 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-overlay.active { top: 0; }
.menu-header { position: absolute; top: 0; left: 0; width: 100%; padding: 2rem 3rem; display: flex; justify-content: space-between; }
.menu-links { list-style: none; text-align: center; }
.menu-links li { margin: 1.5rem 0; }
.menu-links a { color: #fff; text-decoration: none; font-size: 4rem; font-family: 'Playfair Display', serif; font-style: italic; transition: opacity 0.3s; }
.menu-links a:hover { opacity: 0.5; }
.menu-footer { position: absolute; bottom: 3rem; }
.menu-footer a { color: #888; text-decoration: none; letter-spacing: 1px; }

/* --- Hero Banner (Akermo Style) --- */
.hero {
    position: relative; width: 100vw; height: 100vh;
    display: flex; justify-content: center; align-items: center; overflow: hidden;
}
.hero-title {
    position: absolute; font-size: clamp(5rem, 20vw, 20rem);
    font-family: 'Inter', sans-serif; font-weight: 700; text-transform: uppercase;
    letter-spacing: -5px; line-height: 0.8; color: #fff;
}
.first-name { top: 15%; left: 2%; z-index: 1; color: rgba(255,255,255,0.9); }
.last-name { bottom: 15%; right: 2%; z-index: 3; }

/* --- Hero Bölümü (Tam Dolu Asimetrik Kolaj) --- */
.hero-akermo-collage {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #0c0c0c;
}

.collage-container {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    z-index: 1;
}

/* Tüm Fotoğrafların Ortak Özelliği */
.c-img {
    position: absolute;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.35); 
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9); 
    cursor: crosshair;
    border-radius: 2px;
}

/* Vurgu (Hover) Sistemi */
.collage-container:hover .c-img {
    filter: grayscale(100%) brightness(0.35);
    transform: scale(1);
    z-index: 2;
}

.collage-container .c-img:hover {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
    z-index: 30 !important;
    box-shadow: 0 25px 60px rgba(0,0,0,1);
}

.collage-container:not(:hover) .active-default {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

/* --- 11 GÖRSELİN BOŞLUKSUZ EKRAN DAĞILIMI --- */
/* Sol Alan */
.c-1 { width: 26vw; height: 42vh; top: -5vh; left: -2vw; z-index: 3; }
.c-2 { width: 22vw; height: 35vh; top: 32vh; left: 2vw; z-index: 4; }
.c-3 { width: 32vw; height: 45vh; bottom: -5vh; left: -4vw; z-index: 2; } 

/* Üst Orta Alan */
.c-4 { width: 25vw; height: 32vh; top: 8vh; left: 20vw; z-index: 2; }
.c-5 { width: 30vw; height: 38vh; top: -5vh; left: 40vw; z-index: 3; }

/* Merkez (Vurucu Ana Görsel) */
.c-6 { width: 34vw; height: 62vh; top: 18vh; left: 32vw; z-index: 6; } 

/* Sağ Alan */
.c-7 { width: 25vw; height: 42vh; top: 35vh; right: 12vw; z-index: 5; }
.c-9 { width: 32vw; height: 38vh; top: -5vh; right: -2vw; z-index: 4; }
.c-11 { width: 18vw; height: 28vh; top: 22vh; right: -2vw; z-index: 2; }

/* Alt Alan */
.c-8 { width: 36vw; height: 35vh; bottom: -5vh; left: 28vw; z-index: 4; }
.c-10 { width: 35vw; height: 45vh; bottom: -5vh; right: -5vw; z-index: 3; }


/* --- YAZI GRUBU (Dikey Yazı + Ana Başlık) --- */
.hero-text-wrapper {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 40;
    display: flex; 
    align-items: flex-end; 
    gap: 1.5rem; 
    pointer-events: none; 
}

/* Dikey (Aşağıdan Yukarı) Lokasyon Yazısı */
.hero-location-vertical {
    writing-mode: vertical-rl; 
    transform: rotate(180deg); 
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; 
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    opacity: 0.7;
    margin-bottom: 1.2rem;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
}

.akermo-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6rem, 16vw, 18rem); 
    font-weight: 900; 
    color: #ffffff;
    line-height: 0.78; 
    letter-spacing: -6px; 
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 15px 40px rgba(0,0,0,0.9); 
}

/* --- Mobil Cihazlar İçin Optimizasyon --- */
@media (max-width: 992px) {
    .hero-text-wrapper {
        bottom: 2rem;
        left: 2rem;
        gap: 1rem;
    }
    .akermo-title { letter-spacing: -2px; }
    .hero-location-vertical { display: none; }
    
    .c-1 { width: 55vw; height: 45vh; top: 0; left: 0; }
    .c-6 { width: 65vw; height: 50vh; top: 20vh; right: 0; z-index: 5; } 
    .c-9 { width: 50vw; height: 35vh; top: 0; right: 0; }
    .c-8 { width: 70vw; height: 35vh; bottom: 0; left: 0; }
    .c-2, .c-3, .c-4, .c-5, .c-7, .c-10, .c-11 { display: none; } 
}
.hero-subtitle { position: absolute; bottom: 3rem; left: 3rem; font-size: 1rem; color: #aaa; z-index: 4; font-weight: 300; letter-spacing: 1px; }

/* --- Sanatçılar, Hakkımızda ve Footer --- */
/* --- Sanatçılar Bölümü Genel Alanı (Genişletildi) --- */
.artists { background: #111; position: relative; z-index: 5; }

.artists .section-container { 
    max-width: 1600px; /* Sadece bu bölümün sınırını 1200'den 1600'e çektik ki enine genişlesin */
    margin: 0 auto; 
    padding: 6rem 4rem; /* Kenarlardan lüks bir boşluk bıraktık */
}

/* --- Sanatçılar Izgarası (Enine Geniş Yapı) --- */
.artists-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem; /* Kartlar arasındaki nefes alma boşluğu */
}

.artist-img { 
    width: 100%; 
    height: 440px; /* Boyunu ideal bir ölçüde sabitledik, eni genişlediği için sinematik duracak */
    background: #1a1a1a; 
    margin-bottom: 1.5rem; 
    overflow: hidden; 
    border-radius: 2px;
}

.artist-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.4s; }
.artist-img img:hover { filter: grayscale(0%); transform: scale(1.05); }
.artist-card h3 { font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.artist-card .role { color: #666; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin: 0.5rem 0 1rem; }

/* --- Tablet ve Mobil Ekran Düzeni --- */
@media (max-width: 1200px) {
    .artists .section-container {
        padding: 6rem 2rem;
    }
    .artist-img {
        height: 380px; /* Küçük ekranlı laptoplarda çok dik durmasın diye hafif daraltma */
    }
}

@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2'li yan yana dengesi */
        gap: 2.5rem;
    }
    .artist-img {
        height: 460px; /* 2'liye düştüğünde eni çok genişleyeceği için boyunu biraz dengeledik */
    }
}

@media (max-width: 600px) {
    .artists-grid {
        grid-template-columns: 1fr; /* Mobilde tekli tam akış */
        gap: 4rem;
    }
    .artist-img {
        height: 420px;
    }
}
.about-grid, .footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; z-index: 5; }
.footer { border-top: 1px solid #222; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hero-image-wrapper { width: 70vw; height: 50vh; }
    .first-name { top: 20%; left: 5%; }
    .last-name { bottom: 25%; right: 5%; }
    .hero-subtitle { bottom: 2rem; left: 2rem; }
    .menu-links a { font-size: 3rem; }
    #floating-object { width: 200px; height: 200px; right: -10%; opacity: 0.3; }
}

/* Siyah Logoyu Beyaza Çeviren Kod */
.logo-img {
    height: 60px; 
    width: auto;
    filter: invert(1) brightness(2); 
}

/* =======================================================
   HİZMETLER BÖLÜMÜ (Modern, Minimal & Dark-to-Color)
======================================================= */
.inkart-grid-services {
    background-color: #0c0c0c;
    padding: 8rem 4rem;
    border-top: 1px solid #1a1a1a;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Başlık (Modern ve Keskin) --- */
.services-header {
    margin-bottom: 5rem;
    text-align: center;
}

.services-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
    letter-spacing: -2px;
    text-transform: lowercase; /* "hizmetler." küçük harfle çok daha modern durur */
}

/* --- 3'lü Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    cursor: crosshair;
}

/* --- Görsel Ayarları (Siyahımsı Başlangıç) --- */
.service-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Siyahımsı, soluk ve cool başlangıç */
    filter: grayscale(90%) brightness(0.4); 
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s ease;
}

/* --- İsimler (Minimalist, Geniş Aralıklı Sans-Serif) --- */
.service-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666; /* Başlangıçta karizmatik bir gri */
    font-weight: 500;
    text-align: center;
    margin: 0;
    text-transform: uppercase; /* Tüm harfler büyük */
    letter-spacing: 4px; /* Harf arası açık, lüks görünüm */
    transition: color 0.4s ease, letter-spacing 0.4s ease; /* Hover animasyonu için */
}

/* --- Etkileşim (Hover) - Orijinal Renk ve Harf Açılma Efekti --- */
.service-card:hover .service-img-wrapper img {
    transform: scale(1.03);
    filter: grayscale(0%) brightness(1); /* Orijinal renkler patlar */
}

.service-card:hover .service-card-title {
    color: #fff; /* Yazı bembeyaz olur */
    letter-spacing: 8px; /* Cool detay: Üzerine gelince harflerin arası biraz daha açılır */
}

/* --- Mobil Uyum --- */
@media (max-width: 992px) {
    .inkart-grid-services { padding: 5rem 2rem; }
    .services-grid { grid-template-columns: 1fr; gap: 4rem; }
    .service-img-wrapper { aspect-ratio: 4 / 5; }
    .service-card-title { letter-spacing: 2px; }
    .service-card:hover .service-card-title { letter-spacing: 4px; }
}

/* --- Footer Bölümü (Brutalist & Marquee Style) --- */
.brutalist-footer {
    background-color: #0c0c0c;
    position: relative;
    z-index: 5;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Üst Karanlık Kısım (TAM MERKEZDEN İKİYE BÖLÜNDÜ) */
.footer-top-section {
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: start; 
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 0; 
}

/* Link Izgarası (Solda) */
.footer-grid-links {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 3rem;
    border-right: 1px solid #222; 
    padding-right: 6rem; 
    padding-bottom: 2rem; 
}

.link-column h4 {
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.link-column p, .link-column a {
    display: block;
    font-family: 'Inter', sans-serif;
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #fff;
}

/* Logo, CTA ve Mesaj (Sağda) */
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 6rem; 
}

/* --- DEV LOGO AYARLARI --- */
.footer-brutalist-logo {
    width: 100%;
    max-width: 380px; 
    height: auto;
    filter: invert(1) brightness(2);
    margin-bottom: 0.5rem;
}

.footer-cta p {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 1.1rem;
    max-width: 450px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: #0c0c0c;
}

/* --- Sonsuz Kayan Yazı (Marquee) Şeridi --- */
.marquee-container {
    width: 100%;
    padding: 1.5rem 0;
    background-color: #fff;
    color: #0c0c0c;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 25s linear infinite;
    font-family: 'Rye', serif; 
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #0c0c0c;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.15);
}

.marquee-content span {
    padding: 0 1rem;
}

.marquee-content .dot {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    vertical-align: middle;
    color: #0c0c0c;
    opacity: 0.4;
    margin: 0 15px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Mobil Cihazlar İçin Mükemmel Akış --- */
@media (max-width: 992px) {
    .footer-top-section {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 3rem;
    }
    
    .footer-cta {
        order: 1; 
        padding-left: 0;
    }
    
    .footer-brutalist-logo {
        max-width: 280px; 
    }

    .footer-grid-links {
        order: 2; 
        border-right: none;
        padding-right: 0;
        border-top: 1px solid #222;
        padding-top: 3rem;
    }
    
    .marquee-content {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .footer-grid-links {
        grid-template-columns: 1fr; 
    }
}

/* =======================================================
   AKAN & SÜRÜKLENEBİLİR GALERİ + LIGHTBOX
======================================================= */
.akermo-gallery-section {
    background-color: #0c0c0c;
    padding: 8rem 0; 
    position: relative;
    border-top: 1px solid #1a1a1a;
}

.gallery-text-header {
    margin-bottom: 5rem;
    padding: 0 4rem; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-huge-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.85;
    letter-spacing: -4px;
    margin: 0;
    text-transform: uppercase;
}

.gallery-huge-title.outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px #555;
    transition: all 0.5s ease;
}

.gallery-text-header:hover .outline-text {
    -webkit-text-stroke: 1.5px #fff;
}

.gallery-subtitle {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 1.1rem;
    margin-top: 2rem;
    letter-spacing: 1px;
    font-weight: 300;
}

/* --- Kaydırma Alanı --- */
.gallery-scroll-wrapper {
    width: 100%;
    overflow-x: auto; 
    white-space: nowrap;
    cursor: grab; 
    padding-bottom: 2rem; 
    
    /* Scrollbar Gizleme */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.gallery-scroll-wrapper::-webkit-scrollbar { display: none; }
.gallery-scroll-wrapper:active { cursor: grabbing; }

.gallery-scroll-track {
    display: inline-flex;
    gap: 2rem; 
    padding: 0 4rem; 
}

.slide-item {
    width: 32vw; 
    height: 55vh; 
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.5); 
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s ease;
    cursor: pointer;
    
    -webkit-user-drag: none; 
    user-select: none;
}

.slide-item:hover img {
    filter: grayscale(0%) brightness(1); 
    transform: scale(1.03); 
}

/* --- LIGHTBOX (Büyütme Ekranı) --- */
.lightbox-modal {
    visibility: hidden;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(10px); 
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-modal.show {
    visibility: visible;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0,0,0,1); 
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.lightbox-modal.show .lightbox-content { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 30px; right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover { color: #555; }

@media (max-width: 992px) {
    .gallery-text-header { padding: 0 2rem; }
    .gallery-scroll-track { padding: 0 2rem; }
    .slide-item { width: 75vw; height: 50vh; }
    .lightbox-close { top: 15px; right: 25px; font-size: 40px; }
}

/* =======================================================
   LOKASYON VE KARANLIK HARİTA BÖLÜMÜ
======================================================= */
.akermo-location-section {
    background-color: #0c0c0c;
    padding: 8rem 4rem;
    border-top: 1px solid #1a1a1a;
}

.location-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Sol Taraf: Yazılar ve Adres */
.location-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-details {
    margin-top: 4rem;
    font-family: 'Inter', sans-serif;
}

.studio-name {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.studio-address {
    color: #888;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Havalı Yol Tarifi Butonu */
.direction-link {
    display: inline-block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.direction-link:hover {
    color: #555;
    border-bottom-color: #555;
    transform: translateX(5px);
}

/* Sağ Taraf: Harita Kutusu */
.location-map-block {
    flex: 1.5; 
    height: 60vh;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* İşin Sırrı: Haritayı Karanlık Yapan ve Kırmızı Pini Koruyan CSS Filtresi */
.dark-google-map {
    width: 100%;
    height: 100%;
    filter: invert(100%) hue-rotate(180deg) contrast(110%) brightness(0.9);
    transition: filter 0.5s ease;
}

.location-map-block:hover .dark-google-map {
    filter: invert(100%) hue-rotate(180deg) contrast(110%) brightness(1);
}

/* --- Mobil Cihazlar İçin Alt Alta Düzen --- */
@media (max-width: 992px) {
    .akermo-location-section {
        padding: 5rem 2rem;
    }
    .location-container {
        flex-direction: column;
        gap: 3rem;
    }
    .location-text-block {
        width: 100%;
    }
    .location-map-block {
        width: 100%;
        height: 50vh;
    }
    .address-details {
        margin-top: 2rem;
    }
}

/* =======================================================
   VİZYONUMUZ BÖLÜMÜ (Editorial & SEO Uyumlu)
======================================================= */
.akermo-vision-section {
    background-color: #0c0c0c;
    padding: 10rem 4rem;
    border-top: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.vision-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Sol Taraf: Tipografi Grubu --- */
.vision-text-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem; 
    flex: 1;
}

.vision-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 4px;
    margin-top: 1rem;
}

.vision-titles {
    display: flex;
    flex-direction: column;
}

/* --- Sağ Taraf: İçerik ve SEO Metni --- */
.vision-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1rem;
}

.vision-subtitle {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.vision-description {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 3.5rem;
    max-width: 600px; 
}

/* SEO için vurgulanan kelimeleri (strong) parlatıyoruz */
.vision-description strong {
    color: #fff;
    font-weight: 600;
}

/* --- İstatistikler / Minimal Veriler --- */
.vision-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- Mobil Uyum --- */
@media (max-width: 992px) {
    .akermo-vision-section {
        padding: 6rem 2rem;
    }
    .vision-container {
        flex-direction: column;
        gap: 4rem;
    }
    .vision-vertical-text {
        display: none; 
    }
    .vision-stats {
        gap: 2.5rem;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .vision-subtitle {
        font-size: 1.6rem;
    }
}

/* --- LIGHTBOX AÇIKLAMA YAZISI --- */
.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; 
}

.lightbox-caption-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    z-index: 10001; /* Yazının resmin veya arkaplanın altında kalmasını engeller */
}

/* =======================================================
   HAKKIMIZDA BÖLÜMÜ (Editorial, SEO & Brutalist Form)
======================================================= */
.inkart-about-section {
    background-color: #0c0c0c;
    /* Sayfa tek başına duracağı için üstten biraz daha fazla boşluk bıraktık ki menüye yapışmasın */
    padding: 12rem 4rem 10rem 4rem; 
    min-height: 100vh; /* Ekranı tam kaplaması için */
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

/* --- Sol Taraf: Görsel Alanı --- */
.about-image-wrapper {
    flex: 1;
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 2px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6); /* Sitenin karanlık temasına uygun başlangıç */
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-image-wrapper:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Görsel Üzerindeki Detay (Badge) */
.about-image-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #fff;
    color: #0c0c0c;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 1rem 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

/* --- Sağ Taraf: İçerik ve Tipografi --- */
.about-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-header {
    margin-bottom: 2rem;
}

.about-eyebrow {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.about-huge-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    letter-spacing: -3px;
    margin: 0;
}

/* SEO Başlığı (H3) */
.about-seo-subtitle {
    font-family: 'Playfair Display', serif; /* Lüks dokunuş */
    font-style: italic;
    color: #aaa;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

/* Metin Paragrafları */
.about-text-body p {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* SEO İçin Vurgulanan Anahtar Kelimeler (Strong) */
.about-text-body strong {
    color: #fff;
    font-weight: 500;
}

.about-text-body em {
    color: #ccc;
    font-style: italic;
}

/* --- Karizmatik Buton (CTA) --- */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background-color: transparent;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.4s ease;
}

.about-cta-btn .arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.about-cta-btn:hover {
    background-color: #fff;
    color: #0c0c0c;
    border-color: #fff;
}

.about-cta-btn:hover .arrow {
    transform: translate(5px, -5px);
}

/* --- Mobil Uyum --- */
@media (max-width: 992px) {
    .inkart-about-section {
        padding: 8rem 2rem 6rem 2rem;
    }
    .about-container {
        flex-direction: column;
        gap: 4rem;
    }
    .about-image-wrapper {
        width: 100%;
        max-height: 500px;
    }
    .about-huge-title {
        font-size: 3.5rem;
    }
    .about-seo-subtitle {
        font-size: 1.5rem;
    }
}

/* =======================================================
   NÜKLEER ÇÖZÜM: YATAY KAYMAYI VE TAŞMAYI KESİNLİKLE KİLİTLE
======================================================= */

/* 1. Tüm Sayfanın Yatay Eksenini Kilitle (Safari & Chrome Fix) */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch; /* Mobilde dikey kaymayı pürüzsüz yapar */
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    /* 2. Tüm Elementlerin Kutu Modelini Zorla */
    * {
        box-sizing: border-box !important;
    }

    /* 3. Ana Bölümlerin Dışarı Taşmasını Kesin Olarak Engelle */
    header, section, footer, nav, .hero-akermo-collage {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* 4. Kaydırmalı Galeri Hariç, İçeriklerin Taşımasını Gizle */
    /* (Galerinin sağa sola kaymaya devam edebilmesi için onu koruyoruz) */
    .gallery-scroll-wrapper {
        overflow-x: auto !important;
        width: 100% !important;
    }

    /* 5. Yazıların Ekrana Sığmaması (Kılıçla Kesilme) Sorununu Çöz */
    h1, h2, h3, h4, p, span, div, .services-main-title, .gallery-huge-title {
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }

    /* Sığmayan devasa başlıkları mobilde otomatik küçült */
    .services-main-title, .section-title {
        font-size: clamp(2rem, 12vw, 3.5rem) !important;
        line-height: 1.1;
    }

    /* 6. İç Boşlukları (Padding) Daralt ki Ekran Rahatlasın */
    .section-container,
    .inkart-grid-services,
    .akermo-vision-section,
    .akermo-location-section,
    .footer-top-section,
    .gallery-text-header,
    .inkart-about-section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        width: 100% !important;
    }
}