/* KIKWORKS-PROJECT v8 — 2026-09-10 */
/* ==========================================================================
   Proje sayfaları — ortak stil
   11 proje sayfasının çoğunda birebir aynı olan kurallar.
   Sayfaya özel farklar ilgili HTML dosyasının kendi <style> bloğunda durur
   ve bu dosyadan sonra geldiği için onu geçersiz kılar.
   ========================================================================== */

.sub-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #8e8f93;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-nav-right {
  display: flex;
  gap: 25px;
}

.sub-nav a:hover {
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: start;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4 / 1;
  background-color: #13151b;
  border-radius: 8px;
  overflow: hidden;
}

.main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}

.thumb-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
}

.thumb-scroll-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  padding: 4px 0;
  scrollbar-width: none;
}

.thumb-scroll-container::-webkit-scrollbar {
  display: none;
}

.thumb-item.active, .thumb-item:hover {
  opacity: 1;
  border: 1px solid #b55fe6;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
}

.details-wrapper {
  display: flex;
  flex-direction: column;
}

.project-category {
  margin-bottom: 14px;
}

.project-area {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #b55fe6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.project-kind {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #8e8f93;
  letter-spacing: 0.2px;
}

.project-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.decorator-line {
  width: 45px;
  height: 2px;
  background-color: #b55fe6;
  margin-bottom: 35px;
}

.project-quote-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.project-quote {
  font-size: 14px;
  line-height: 1.7;
  color: #b5b6ba;
}

.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  color: #b55fe6;
  font-size: 18px;
  margin-top: 2px;
}

.info-box-title {
  font-size: 10px;
  font-weight: 700;
  color: #6c6d71;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.info-box-value {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

.credits-container h2 {
  font-size: 11px;
  font-weight: 700;
  color: #b55fe6;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.credits-list {
  display: flex;
  flex-direction: column;
}

.credits-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  align-items: start;
}

.credits-key {
  color: #8e8f93;
  padding-right: 20px;
  line-height: 1.5;
}

.credits-value {
  color: #ffffff;
  line-height: 1.5;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 11px;
  font-weight: 700;
  color: #b55fe6;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.about-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
}

.about-text-wrapper p {
  font-size: 15px;
  line-height: 1.8;
  color: #b5b6ba;
}

.bottom-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #8e8f93;
}

.bottom-nav-right {
  display: flex;
  gap: 25px;
}

/* --- Dar ekranda künye alt alta --- */

@media (max-width: 620px) {
  .credits-row {
    grid-template-columns: 1fr;
    row-gap: 3px;
  }

  .credits-key {
    color: #6e6f73;
  }
}
