:root {
    --c-blk: #111111;
    --c-wht: #ffffff;
    --c-pur: #8a2be2;
    --c-placeholder: transparent; 
}

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

body {
    font-family: 'Bliss Pro', sans-serif;
    font-weight: 400; 
    background-color: var(--c-wht);
    color: var(--c-blk);
    line-height: 1.5;
    overflow-x: hidden;
}

.bg-black { background-color: var(--c-blk); }
.bg-purple { background-color: var(--c-pur); }

h1 { font-size: 3.5rem; font-weight: 700; color: var(--c-pur); margin-bottom: 15px; text-transform: uppercase; }
h2 { font-size: 2rem; font-weight: 700; color: var(--c-pur); margin-bottom: 20px; text-transform: uppercase; }

p { 
    font-size: 1rem; 
    font-weight: 400; 
    color: var(--c-blk); 
}

.text-justify p { text-align: justify; }
.text-center p { text-align: center; }
.center-typography { text-align: center; }

.boxed-text-standard {
    background-color: var(--c-wht); 
    border: 1px solid var(--c-blk); 
    padding: 30px; 
    z-index: 5;
    box-shadow: none;
}

.hero-title-no-box.boxed-text-standard {
    border: none;
    padding: 0;
    background-color: transparent;
}

.full-width-text-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.full-width-boxed {
    width: 100%;
    max-width: 1200px;
}

.project-layout { 
    width: 75%; 
    max-width: 1400px; 
    margin: 140px auto 100px auto; 
}

.page-transition-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9999; pointer-events: none; transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.origin-left { transform-origin: left; }
.origin-top { transform-origin: top; }
.origin-bottom { transform-origin: bottom; }
.reveal-x { transform: scaleX(0); }
.reveal-y { transform: scaleY(0); }
.cover-x { transform: scaleX(1); }
.cover-y { transform: scaleY(1); }

.wireframe-nav {
    position: fixed; top: 0; width: 100%; height: 60px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--c-blk); background-color: var(--c-wht); z-index: 1000; padding: 0 5%;
}

.logo-link.dynamic-logo-container {
    height: 70px;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    padding: 0;
    overflow: visible;
}

.dynamic-logo-svg { height: 100%; width: auto; overflow: visible; }
.triangle-group { transform-origin: 50% 50%; transition: transform 1s ease; }
.triangle { fill: var(--c-blk); stroke: var(--c-blk); stroke-width: 1; transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1); transform-box: fill-box; }
.triangle-1 { transform-origin: 50% 66.5%; } 
.triangle-2 { transform-origin: 50% 66.5%; } 
.triangle-3 { transform-origin: 50% 66.5%; } 
.logo-link.dynamic-logo-container:hover .triangle { fill: var(--c-pur); stroke: var(--c-pur); transform: scale(1.2) rotate(360deg); }
.logo-link.dynamic-logo-container:hover .triangle-group { transform: rotate(-180deg); }

.nav-item { display: flex; align-items: center; padding: 0 30px; text-decoration: none; color: var(--c-blk); border-left: 1px solid var(--c-blk); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; transition: background-color 0.2s, color 0.2s; }
.nav-group { display: flex; }
.nav-group .nav-item:first-child { border-left: 1px solid var(--c-blk); }
.brand { border-left: none; border-right: 1px solid var(--c-blk); font-weight: 700; gap: 10px; }
.nav-item:hover, .nav-item.active { background-color: var(--c-blk); color: var(--c-wht); }

.hero-split-vertical { 
    display: flex; 
    gap: 30px; 
    margin-bottom: 120px; 
    align-items: center; 
    justify-content: center;
}

.hero-info-vertical { 
    flex: 0 1 400px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.title-meta { margin-bottom: 20px; width: 100%; }
.meta-data-vertical { font-weight: 500; color: var(--c-blk); text-transform: uppercase; font-size: 0.9rem; display: flex; flex-direction: column; gap: 10px; }

.hero-cover-wrapper { 
    flex: 0 1 500px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.square-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.square-box img { 
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    transform: scale(1.4); 
}

/* --- Bu projeye özel: geniş kapak ------------------------- */
.wide-cover-container { flex: 1 1 100%; }
.wide-box { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--c-blk); }
.wide-box img { width: 100%; height: 100%; object-fit: cover; }

.section-divider {
    border-top: 1px solid var(--c-blk);
    width: 100%;
    margin-bottom: 100px;
}

.technical-section { margin-bottom: 100px; }
.centered-text-section { margin-bottom: 100px; }
.poem-section { margin-bottom: 100px; display: flex; justify-content: center; width: 100%; }
.poem-container { width: 100%; max-width: 800px; }

.clean-img-box { width: 100%; height: auto; display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: transparent; border: none; padding: 0;}
.clean-img-box img { width: 100%; display: block; object-fit: contain; }
.zoomable { cursor: zoom-in; transition: transform 0.3s; }
.zoomable:hover { transform: scale(1.02); }

.grid-3x3-with-text { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    width: 100%; 
    margin-bottom: 20px; 
}

.grid-3x3-with-text .clean-img-box img { 
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
} 

.grid-center-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
}

.last-divider { margin-bottom: 60px; }

.horizontal-video-wrapper { width: 100%; max-width: 1000px; margin: 0 auto; aspect-ratio: 16/9; background-color: var(--c-blk); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.horizontal-video-wrapper iframe { width: 100%; height: 100%; object-fit: cover; }

.project-footer { display: flex; justify-content: space-between; height: 60px; width: 75%; max-width: 1400px; margin: 0 auto 100px auto; border: 1px solid var(--c-blk); }
.footer-link { width: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--c-blk); font-weight: 700; transition: background-color 0.2s, color 0.2s; text-transform: uppercase; }
.footer-link:first-child { border-right: 1px solid var(--c-blk); }
.footer-link:hover { background-color: var(--c-pur); color: var(--c-wht); }

.lightbox { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: rgba(17, 17, 17, 0.95); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 1px solid var(--c-wht); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: var(--c-wht); font-size: 3rem; cursor: pointer; transition: color 0.2s; }
.lightbox-close:hover { color: var(--c-pur); }

@media (max-width: 900px) {
    
    .project-layout, .project-footer { width: 95%; }
    .hero-split-vertical { flex-direction: column-reverse; gap: 40px; }
    .hero-info-vertical { padding-top: 0; flex-basis: auto; }
    .hero-cover-wrapper { flex-basis: auto; width: 100%; }
    .grid-3x3-with-text { grid-template-columns: 1fr; } 
    .wireframe-nav { padding: 0; }
}

/* ==========================================================
   LUMPEN LEFT - PROJEYE ÖZEL BÖLÜMLER
   ========================================================== */

/* Kahraman bölümü tek sütun: geniş kapak üstte, metin altta */
.hero-stacked { display: block; margin-bottom: 90px; }
.hero-stacked .hero-info-vertical { flex-basis: auto; margin-top: 34px; }

/* --- Canlı projeye git düğmesi ---------------------------- */
.live-link {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    margin-top: 26px;
    padding: 14px 24px;
    border: 1px solid var(--c-blk);
    text-decoration: none;
    color: var(--c-blk);
    background: var(--c-wht);
    transition: background-color .25s, color .25s, transform .25s;
}
.live-link .ll-label { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.live-link .ll-meta  { font-size: .78rem; opacity: .62; text-transform: uppercase; letter-spacing: .08em; }
.live-link:hover { background: var(--c-pur); color: var(--c-wht); }
.live-link:hover .ll-meta { opacity: .85; }
.live-link .ll-arrow { transition: transform .25s; }
.live-link:hover .ll-arrow { transform: translateX(5px); }

/* --- Alıntı bloğu ----------------------------------------- */
.zine-quote {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px 0;
    border-top: 2px solid var(--c-pur);
    border-bottom: 2px solid var(--c-pur);
    text-align: center;
}
.zine-quote p { font-size: 1.32rem; line-height: 1.55; }
.zine-quote cite {
    display: block;
    margin-top: 18px;
    font-size: .78rem;
    font-style: normal;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .6;
}

/* --- Bölüm listesi ---------------------------------------- */
.chapter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 34px;
    width: 100%;
}
.chapter {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.chapter .shot {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--c-blk);
    background: var(--c-blk);
}
.chapter .shot img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .5s;
    filter: grayscale(35%);
}
.chapter:hover .shot img { transform: scale(1.04); filter: grayscale(0%); }
.chapter-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 16px;
}
.chapter-num {
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-pur);
    letter-spacing: .1em;
}
.chapter-head h3 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.chapter p { margin-top: 8px; font-size: .93rem; opacity: .8; }

/* --- Teknik künye ----------------------------------------- */
.build-specs {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--c-blk);
}
.build-specs dt,
.build-specs dd {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(17,17,17,.16);
    font-size: .92rem;
}
.build-specs dt {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .78rem;
    padding-top: 17px;
}

@media (max-width: 900px) {
    .chapter-grid { grid-template-columns: 1fr; gap: 34px; }
    .build-specs { grid-template-columns: 1fr; max-width: 100%; }
    .build-specs dt { border-bottom: none; padding-bottom: 0; }
    .build-specs dd { padding-top: 4px; }
    .wide-box, .chapter .shot { aspect-ratio: 16 / 11; }
    .zine-quote p { font-size: 1.08rem; }
    .live-link { width: 100%; justify-content: center; }
}
