/* --- RESET & DEĞİŞKENLER --- */
:root {
  --bg-color: #000000;
  --text-main: #ffffff;
  --text-muted: #888888;
  --border-color: #262626;
  --card-bg: #141414;
  --transition-speed: 0.8s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 1. DEĞİŞİKLİK: height: 100% kaldırıldı, min-height ve flex yapısı kuruldu */
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  min-height: 100vh; /* Ekran boyutunu doldursun ama içerik artarsa uzayabilsin */
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-main);
}

/* --- HEADER STİLLERİ --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;  
}

.logo img{
    width: 100px;
    transform: scale(1.25);
    transform-origin: left center;
}

@media (max-width: 768px) {
    .header {
        padding: 15px 5%;
    }

    .logo img {
        width: 110px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 90px;
    }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
/* ==========================================================================
   BACK (GERİ) BUTONU STİLLERİ
   ========================================================================== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:rgb(225, 218, 218);
  border: 1px solid rgba(0, 0, 0, 0.12); /* Koyu temada rgba(255, 255, 255, 0.15) yapabilirsiniz */
  padding: 8px 18px;
  border-radius: 40px;
  color: #050505;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  position: relative;
  overflow: hidden;
}

/* Ok simgesi kapsayıcısı ve animasyonu */
.back-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.back-btn-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* Hover (Üzerine Gelindiğinde) Etkileri */
.back-btn:hover {
  background-color: #312e2e;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Hover anında okun sola doğru hafifçe kayması */
.back-btn:hover .back-btn-icon {
  transform: translateX(-3px);
}

/* Tıklama (Active) Anı */
.back-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Header Ortalanması İçin Destek (Eğer Flexbox kullanıyorsanız) */
.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  border-color: var(--text-main);
  background-color: #1a1a1a;
}

.current-lang {
  font-size: 0.7rem;
  font-weight: bold;
  position: absolute;
  bottom: 2px;
  background: var(--bg-color);
  padding: 0 2px;
}

/* Dropdown Menüler */
.lang-dropdown, .user-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 55px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu button, 
.dropdown-menu a {
  background: transparent;
  border: none;
  color: var(--text-main);
  padding: 0.6rem 1rem;
  text-align: left;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
}

.dropdown-menu button:hover, 
.dropdown-menu a:hover {
  background-color: #222;
}

.auth-btn.register-btn {
  background-color: var(--text-main);
  color: var(--bg-color);
  font-weight: 600;
  text-align: center;
}

/* --- HERO SECTION & ORTALANMIŞ HERO GRID --- */
.hero-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Tam %50 - %50 sütunlar */
  row-gap: 1.8rem;
  column-gap: 4rem; /* Sütunlar arası boşluk */
  max-width: 1200px; /* Geniş yazılar taşmasın diye artırıldı */
  width: 100%;
  margin: 0 auto;
}

.art-btn {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800;
  font-size: 1.8rem; /* İstediğin boyut aynen korundu */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  white-space: nowrap;
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1),
              opacity var(--transition-speed) ease,
              color 0.3s ease;
}

.art-btn:hover {
  color: var(--text-main);
  transform: scale(1.04) !important;
}

/* Sol sütun: Hem buton sağa yapışır hem metin kendi içinde sağa hizalanır */
.art-btn.slide-left {
  justify-self: end;
  text-align: right;
  margin-right: 0;
  transform: translateX(-120px);
}

/* Sağ sütun: Hem buton sola yapışır hem metin kendi içinde sola hizalanır */
.art-btn.slide-right {
  justify-self: start;
  text-align: left;
  margin-left: 0;
  transform: translateX(120px);
}

.art-btn.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.nav-center-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
}

/* --- CUSTOM CURSOR STİLLERİ --- */
/* Masaüstü harici cihazlarda ve dokunmatik ekranlarda gizle */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none; /* Varsayılan imleci gizle */
  }

  a, button, input {
    cursor: none; /* Link ve butonlarda da varsayılan imleci gizle */
  }

  /* Ortadaki küçük nokta */
  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-main);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  }

  /* Arkadan takip eden sanatsal halka */
  .custom-cursor-outline {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  }

  /* Hover Durumu (Buton/Link Üzerine Gelince) */
  body.cursor-hover .custom-cursor-dot {
    width: 3px;
    height: 3px;
    background-color: #00ff88; /* Yeşil renkle hafif vurgu */
  }

  body.cursor-hover .custom-cursor-outline {
    width: 30px;
    height: 30px;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.05); /* İçine hafif saydam dolgu */
  }
}

/*LOGIN*/
.auth-container {
            display: flex;
            flex-direction: column;
            justify-content: center; 
            align-items: center;
            border: 2px solid var(--gold);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(221, 183, 57, 0.2);  
            width: 90%;          
            max-width: 400px; 
            margin: auto;    
            background: rgba(0, 0, 0, 0.8);
        }

        .auth-form h2 {
            margin-bottom: 10px;
            color: #ffffff;
            text-align: center;
        }

        /* --- Message --- */
        #auth-message {
            display: none;
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 6px;
            font-size: 13px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            font-family: 'Arial', sans-serif; 
        }

        .input-group {
            margin-bottom: 15px;
            width: 100%;
        }

        .input-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #ffffff;
        }

        .input-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'Arial', sans-serif;
            background: rgba(255, 255, 255, 0.05);
            color: white;
        }

        .auth-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--gold);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
            font-family: 'Cinzel', serif;
        }

        .auth-btn:hover { background-color: #b8952d; }
        .auth-btn:disabled { background-color: #555; cursor: not-allowed; }

        .forgot-password { text-align: right; margin-bottom: 20px; }
        .forgot-password a { font-size: 13px; color: var(--gold); text-decoration: none; opacity: 0.8; }
        .switch-text { text-align: center; margin-top: 20px; font-size: 14px; }


/* --- RESPONSIVE TASARIM --- */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .art-btn {
    font-size: 1.1rem;
    text-align: center !important; /* Mobilde yazılar tam ortalanır */
  }

  .art-btn.slide-left,
  .art-btn.slide-right {
    justify-self: center;
    margin: 0;
  }

  .brush-top-left {
    width: 250px;
    top: -20px;
    left: -50px;
  }
  
  .paint-bottom-right {
    width: 280px;
    bottom: -20px;
    right: -40px;
  }
}
/* --- AUTH / LOGIN & REGISTER STİLLERİ --- */
.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);  
    width: 100%;          
    max-width: 420px; 
    margin: auto;    
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.auth-form {
    width: 100%;
}

.auth-form h2 {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-align: center;
    font-family: 'Syne', sans-serif;
    letter-spacing: 2px;
    font-size: 1.6rem;
}

#auth-message {
    display: none;
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.input-group {
    margin-bottom: 1.25rem;
    width: 100%;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #000000;
    color: var(--text-main);
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: var(--text-main);
}

.auth-container .auth-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--text-main);
    color: var(--bg-color);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Syne', sans-serif;
}

.auth-container .auth-btn:hover {
    opacity: 0.9;
}

.forgot-password { 
    text-align: right; 
    margin-bottom: 1.25rem; 
}

.forgot-password a { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    text-decoration: none; 
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: var(--text-main);
}

.switch-text { 
    text-align: center; 
    margin-top: 1.5rem; 
    font-size: 0.85rem; 
}

/* --- RESPONSIVE TASARIM DÜZENLEMELERİ --- */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-center-status {
    display: none; /* Mobilde header çok sıkışmasın diye durum yazısı gizlenir */
  }

  .hero-container {
    padding: 100px 1.25rem 2rem 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .art-btn {
    font-size: 1.1rem;
    text-align: center !important;
  }

  .art-btn.slide-left,
  .art-btn.slide-right {
    justify-self: center;
    margin: 0;
  }

  .brush-top-left {
    width: 220px;
    top: -20px;
    left: -50px;
  }
  
  .paint-bottom-right {
    width: 240px;
    bottom: -20px;
    right: -40px;
  }

  /* Mobil için Auth Form Tasarımı */
  .auth-container {
    padding: 1.8rem 1.25rem;
    max-width: 100%;
  }

  .auth-form h2 {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   COLLECTION MAIN & HEADER
   ========================================================================== */
/* ==========================================================================
   ARTWORK MODAL / SLIDER VIEW (GÜNCELLENDİ)
   ========================================================================== */
.artwork-modal {
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; /* 100vw yerine 100% (Mobil kayma fix) */
  height: 100vh;
  /* Mobil taranabilir ekranlarda tam oturması için dvh eklendi */
  height: 100dvh; 
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto; /* Çok küçük ekranlarda taşarsa dikey scroll sağlama */
}

.artwork-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Kapatma Butonu Fix */
.close-modal-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border-color);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10010;
  pointer-events: auto;
}

.close-modal-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.close-modal-btn:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
  border-color: var(--text-main);
  transform: rotate(90deg);
}

/* Yön Okları Fix */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10010;
  pointer-events: auto;
}

.nav-arrow svg {
  width: 24px;
  height: 24px;
}

.nav-arrow:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
  border-color: var(--text-main);
}

.prev-arrow { left: 40px; }
.next-arrow { right: 40px; }

/* Modal Kart Düzeni */
.modal-card {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1050px;
  max-height: 85vh;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  z-index: 10000;
  margin: auto;
}

.modal-image-wrapper {
  flex: 1.2;
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 85vh;
}

.modal-details {
  flex: 1;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

/* ==========================================================================
   RESPONSIVE DÜZENLEMELER (YUKARI KAYMA FIX)
   ========================================================================== */
@media (max-width: 992px) {
  .artwork-modal {
    padding: 4rem 1.5rem 1.5rem 1.5rem; /* Üstten kapatma butonu için güvenli alan bırakıldı */
    align-items: center; /* Ekran ortalamasını korur */
  }

  .modal-card {
    flex-direction: column;
    max-height: 80vh; /* Ekranı aşmaması için küçültüldü */
    overflow-y: auto; /* İçerik taşarsa modal içinde dikey kaydırma sağlar */
  }

  .modal-image-wrapper {
    min-height: 220px;
    max-height: 35vh;
  }

  .modal-image-wrapper img {
    max-height: 35vh;
  }

  .modal-details {
    padding: 1.5rem;
    overflow-y: visible;
  }

  .prev-arrow { left: 10px; }
  .next-arrow { right: 10px; }
  
  .nav-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .collection-main {
    padding: 100px 1.25rem 2rem 1.25rem;
  }

  .collection-header .page-title {
    font-size: 1.8rem;
  }

  .artwork-modal {
    padding: 3.5rem 1rem 1rem 1rem;
  }

  .modal-card {
    max-height: 82dvh; /* Mobil tarayıcı çubuğuna göre dinamiğe çekildi */
    margin: 0 auto;
  }

  .close-modal-btn {
    top: 12px;
    right: 15px;
    width: 38px;
    height: 38px;
  }

  .close-modal-btn svg {
    width: 18px;
    height: 18px;
  }
}

.materials-main {
  padding: 120px 4% 80px;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: hidden; /* Sayfa içi mikro taşmaları engeller */
}

.materials-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Kategori Sekmeleri */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  width: 100%;
}

.tab-btn {
  background-color: #312e2e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #aaa;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  white-space: nowrap;
}

.tab-btn:hover,
.tab-btn.active {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Ürün Kartları Grid Yapısı */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.product-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
  background: #111;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

/* Miktar Kontrolü & Ekle Butonu */
.product-controls {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qty-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
}

.qty-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.qty-btn:hover {
  opacity: 0.7;
}

.qty-input {
  width: 40px;
  text-align: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.add-to-cart-btn {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  padding: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #ddd;
}

/* Header Sepet Butonu Rozeti */
.cart-toggle-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Yan Sepet Paneli (Cart Drawer) - TAŞMA PROBLEMİ DÜZELTİLDİ */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0; /* right: -450px yerine transform kullanıyoruz */
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: #0d0d0d;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%); /* Ekranda sağa kaymaya sebep olmadan gizler */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  transform: translateX(0); /* Sepet açıldığında içeri kayar */
}

.cart-header {
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.close-cart-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Sepet Liste Alanı */
.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 25px;
}

.empty-cart-msg {
  text-align: center;
  color: #666;
  margin-top: 50px;
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.cart-qty-picker button {
  background: none;
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cart-qty-picker span {
  padding: 0 8px;
  font-size: 0.8rem;
}

.remove-item-btn {
  background: none;
  border: none;
  color: #ff5555;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

/* Sepet Alt Toplam ve Butonlar */
.cart-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #090909;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.shipping-note {
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 20px;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-btn {
  width: 100%;
  padding: 14px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.continue-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.continue-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.checkout-btn {
  background: #fff;
  color: #000;
  border: none;
  display: block;
}

.checkout-btn:hover {
  background: #ddd;
}

@media (max-width: 768px) {
  .materials-main {
    padding: 100px 1.25rem 2rem 1.25rem;
  }

  .materials-header .page-title {
    font-size: 1.8rem;
  }

}

/* ==========================================================================
   RESPONSIVE DÜZENLEMELER (YATAY KAYMA FIX)
   ========================================================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .materials-main {
    padding: 100px 1.25rem 60px 1.25rem; /* Sabit güvenli kenar boşluğu */
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-tabs {
    gap: 8px;
    margin-bottom: 35px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cart-drawer {
    max-width: 100%; /* Mobilde sepet ekranın tamamını kaplasın, dışarı taşmasın */
  }
}
/* ==========================================================================
   ACADEMY PAGE STİLLERİ
   ========================================================================== */

.academy-main {
  max-width: 1200px;
  margin: 0 auto;
}

.academy-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Modal Stillerinde Academy Özelleştirmeleri */
.academy-modal .modal-card {
  max-width: 700px; /* Diğer sayfalarla tam uyumlu kompakt boyut */
}

.academy-modal .modal-image-wrapper {
  max-width: 42%;
}

.academy-modal .artwork-title {
  font-size: 1.3rem;
  line-height: 1.3;
}
/* ==========================================================================
   BONJOUK CAFÉ PAGE STİLLERİ
   ========================================================================== */

.cafe-main {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.cafe-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* LAYOUT: SIDEBAR + MAIN MENU */
.cafe-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

/* SIDEBAR STYLES */
.cafe-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.card-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-icon-title svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.card-icon-title h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 0;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.hours-list li span {
  color: var(--text-muted);
}

.hours-list li strong {
  font-family: 'Syne', sans-serif;
  color: #ffffff;
  font-size: 0.85rem;
}

.location-address {
  font-size: 0.85rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.map-link {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
}

.map-link:hover {
  opacity: 0.7;
}

.map-link svg {
  width: 14px;
  height: 14px;
}

.res-desc {
  font-size: 0.82rem;
  color: #b3b3b3;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.res-btn {
  width: 100%;
}

/* TABS */
.cafe-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cafe-tab-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cafe-tab-btn:hover,
.cafe-tab-btn.active {
  color: #ffffff;
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* MENU GRID & CARDS */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.menu-thumb {
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.6rem;
}

.menu-title-row h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.menu-price {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  white-space: nowrap;
}

.menu-desc {
  font-size: 0.8rem;
  color: #b3b3b3;
  line-height: 1.5;
  margin: 0;
}

/* REZERVASYON FORM POPUP EXTRAS */
.res-form-wrapper {
  padding: 1rem;
}

.res-form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.res-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 14px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cafe-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cafe-sidebar {
    position: static;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   LOGISTICS PAGE STİLLERİ
   ========================================================================== */

.logistics-main {
  max-width: 1200px;
  margin: 0 auto;
}

.logistics-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Service Grid */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

.logistics-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.logistics-card:hover {
  border-color: #ffffff;
  transform: translateY(-4px);
}

.logistics-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.logistics-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-main);
}

.logistics-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.logistics-card-text {
  color: #b3b3b3;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Process Section */
.logistics-process-section {
  margin-bottom: 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.8rem;
}

.step-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: #999999;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* CTA Box */
.logistics-cta {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: #cccccc;
  font-size: 0.88rem;
  max-width: 650px;
}

.logistics-cta .art-inquiry-btn {
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .logistics-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   AUCTION PAGE - STİLLERİ
   ========================================================================== */

.auction-main {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.auction-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* 1. HERO FEATURED SECTION */
.featured-auction-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  align-items: center;
}

.hero-image-box {
  position: relative;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-live-pill {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(13, 13, 13, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff3b30;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.lot-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-artwork-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.hero-artist-name {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.hero-description {
  color: #b3b3b3;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-auction-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.stat-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.timer-highlight {
  color: #ffffff;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background-color: var(--border-color);
}

.featured-bid-btn {
  width: 100%;
}

/* 2. CATALOG BAR & CARDS */
.catalog-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}

.catalog-header-bar .section-heading {
  margin-bottom: 0;
}

.catalog-count {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.card-lot-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.3rem;
}

.card-bid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bid-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bid-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

/* 3. MODAL AUCTION FORM EXTRAS */
.auction-modal .modal-card {
  max-width: 720px;
}

.lot-tag-modal {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.highlight-bid {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.bid-input-group {
  display: flex;
  gap: 12px;
  margin-top: 1.8rem;
}

.bid-input-field {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.bid-input-field:focus {
  border-color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .featured-auction-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .hero-image-box {
    height: 300px;
  }

  .bid-input-group {
    flex-direction: column;
  }
}
/* ==========================================================================
   BONJOUK CORPORATE PAGE STİLLERİ
   ========================================================================== */

.corporate-main {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.corp-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* HERO MANIFESTO & STATS */
.corp-hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 4rem;
}

.corp-manifesto h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.corp-manifesto p {
  font-size: 0.92rem;
  color: #b3b3b3;
  line-height: 1.7;
  margin: 0;
}

.corp-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid var(--border-color);
  padding-left: 3rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* SECTIONS COMMON */
.corp-section {
  margin-bottom: 4rem;
}

.corp-section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.corp-section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.value-icon {
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.85rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin: 0;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.team-thumb {
  height: 280px;
  width: 100%;
  overflow: hidden;
}

.team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-thumb img {
  transform: scale(1.04);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.team-role {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.8rem;
}

.team-info p {
  font-size: 0.82rem;
  color: #b3b3b3;
  line-height: 1.5;
  margin: 0;
}

/* CTA BANNER */
.corp-cta-banner {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.cta-content p {
  font-size: 0.9rem;
  color: #b3b3b3;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.corp-contact-btn {
  display: inline-block;
  padding: 12px 28px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .corp-hero-section {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .corp-stats-grid {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 2rem;
    flex-direction: row;
    justify-content: space-between;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COLLECTION & SPECIAL COLLECTION MAIN STYLES
   ========================================================================== */

/* Main & Header */
.collection-main {
  padding: 120px 3rem 60px 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collection-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: var(--text-muted, #a0a0a0);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* Gallery Grid (3 Kolonlu Yapı) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
}

.artwork-card {
  background-color: var(--card-bg, #121212);
  border: 1px solid var(--border-color, #2a2a2a);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.artwork-card:hover {
  transform: translateY(-6px);
  border-color: #ffffff;
}

/* YATAY GÖRSEL ORANI (16:9 Landscape Yapısı) */
.artwork-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #0a0a0a;
}

@supports not (aspect-ratio: 16 / 9) {
  .artwork-thumb {
    padding-top: 56.25%;
    height: 0;
  }
}

.artwork-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.artwork-card:hover .artwork-thumb img {
  transform: scale(1.05);
}

.thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.artwork-card:hover .thumb-overlay {
  opacity: 1;
}

.thumb-overlay span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.artwork-thumb-info {
  padding: 1.5rem;
  text-align: center;
}

.artwork-thumb-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.artwork-thumb-info p {
  color: var(--text-muted, #a0a0a0);
  font-size: 0.85rem;
}

/* ==========================================================================
   POPUP MODAL & IMAGE SLIDER STYLES
   ========================================================================== */
.artwork-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.artwork-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background-color: var(--card-bg, #181818);
  border: 1px solid var(--border-color, #333);
  border-radius: 12px;
  max-width: 1050px;
  width: 95%;
  max-height: 85vh;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85);
}

/* Dış Eser Geçiş Okları */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color, #333);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-arrow:hover {
  background-color: #ffffff;
  color: #000000;
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

.close-modal-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color, #333);
  color: var(--text-main, #ffffff);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.close-modal-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* MODAL GÖRSEL SLIDER ALANI */
.modal-image-wrapper {
  flex: 1.8;
  max-width: 65%;
  position: relative;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 !important;
}

/* Görsellerin Yan Yana Kayma Pisti */
.image-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  max-height: 85vh;
}

/* Görsel İçi Geçiş Okları (Görselin Üzerindeki Butonlar) */
.img-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.img-slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
}

.img-prev-btn { left: 14px; }
.img-next-btn { right: 14px; }

/* Alt Sayfalandırma Noktaları (Dots) */
.image-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 20px;
}

.image-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.image-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.image-slider-dots .dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Detay Paneli Alanı */
.modal-details {
  flex: 1;
  max-width: 42%;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.artwork-counter {
  font-size: 0.75rem;
  color: var(--text-muted, #888);
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.artwork-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.artwork-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted, #a0a0a0);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.artwork-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color, #2a2a2a);
  border-bottom: 1px solid var(--border-color, #2a2a2a);
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-muted, #888);
  letter-spacing: 1.2px;
  font-weight: 700;
}

.spec-val {
  font-size: 0.85rem;
  color: var(--text-main, #ffffff);
}

.artwork-description {
  color: #b3b3b3;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.art-inquiry-btn {
  display: inline-block;
  text-align: center;
  background-color: var(--text-main, #ffffff);
  color: var(--bg-color, #000000);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.art-inquiry-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DÜZENLEMELER
   ========================================================================== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .modal-card {
    flex-direction: column;
    max-height: 90vh;
    max-width: 650px;
    overflow-y: auto;
  }

  .modal-image-wrapper {
    max-width: 100%;
    min-height: 320px;
  }

  .modal-details {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .nav-arrow {
    display: none; /* Mobilde veya dar ekranda dış okları gizler */
  }
}

@media (max-width: 600px) {
  .collection-main {
    padding: 100px 1.2rem 40px 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .modal-image-wrapper {
    min-height: 250px;
  }
}
/* ==========================================================================
   ARTWORK LABEL PAGE STİLLERİ
   ========================================================================== */

.label-page-main {
  max-width: 1200px;
  margin: 0 auto;
}

.label-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  margin-top: 1rem;
}

/* Sol Taraf: Görsel ve Fiziksel Etiket */
.label-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.label-artwork-preview {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: #000;
}

.label-artwork-preview img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.exhibition-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Müze/Galeri Etiketi Hissiyatı */
.physical-label {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.8rem;
}

.label-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.8rem;
}

.artist-name-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 00;
  letter-spacing: 1px;
}

.artist-origin {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.artwork-main-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-style: italic;
}

.artwork-year {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.label-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 1.2rem 0;
}

.artwork-medium, .artwork-dims {
  font-size: 0.85rem;
  color: #cccccc;
  margin-bottom: 0.3rem;
}

.artwork-inv {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  margin-top: 0.5rem;
}

.label-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border-color);
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.qr-box img {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  padding: 2px;
  background: #fff;
}

.qr-box span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.label-provenance {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.prov-badge {
  font-size: 0.7rem;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.prov-badge svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
}

/* Sağ Taraf: Detaylar */
.label-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Sesli Rehber Kartı */
.audio-guide-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-icon svg {
  width: 18px;
  height: 18px;
}

.audio-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.audio-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.audio-title {
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 500;
}

.audio-play-btn {
  background: var(--text-main);
  color: var(--bg-color);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.audio-play-btn:hover {
  transform: scale(1.08);
}

.audio-play-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Metin Bölümleri */
.label-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.label-paragraph {
  color: #b3b3b3;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.provenance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.provenance-list li {
  font-size: 0.82rem;
  color: #cccccc;
  padding-left: 1rem;
  position: relative;
}

.provenance-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* Aksiyonlar */
.label-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.icon-btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.icon-btn-secondary:hover {
  border-color: var(--text-main);
}

.icon-btn-secondary svg {
  width: 16px;
  height: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .label-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* ==========================================================================
   RAŞİT BAYRAM TRIBUTE PAGE STİLLERİ
   ========================================================================== */

.tribute-main {
  max-width: 1100px;
  margin: 0 auto;
}

/* Hero */
.tribute-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tribute-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.tribute-title {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
  -webkit-text-fill-color: transparent;
  -webkit-text-size-adjust: initial;
}

.tribute-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 1.5px;
  font-style: italic;
}

/* Banner & Alıntı */
.tribute-banner {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 3.5rem;
}

.tribute-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(110%);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.2) 0%, rgba(13, 13, 13, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.master-quote {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  max-width: 700px;
  border-left: 3px solid #ffffff;
  padding-left: 1.2rem;
  margin: 0;
}

/* Grid Düzeni */
.tribute-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.tribute-p {
  color: #b3b3b3;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Öne Çıkan Kartlar */
.tribute-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.highlight-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
  transform: translateX(6px);
  border-color: #ffffff;
}

.highlight-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
}

.highlight-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.highlight-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Manifesto / Teşekkür */
.tribute-manifesto {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.manifesto-text {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 1.8rem auto;
}

.signature-line {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tribute-title {
    font-size: 2.5rem;
  }

  .tribute-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tribute-banner {
    height: 320px;
  }

  .master-quote {
    font-size: 1rem;
  }
}
/* ==========================================================================
   BONJOUK HOBBY & WORKSHOP PAGE STİLLERİ
   ========================================================================== */

.hobby-main {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.hobby-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* HOBBY GRID */
.hobby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hobby-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hobby-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.hobby-thumb {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.hobby-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hobby-card:hover .hobby-thumb img {
  transform: scale(1.05);
}

.hobby-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(13, 13, 13, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  backdrop-filter: blur(4px);
}

.hobby-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hobby-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hobby-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.hobby-meta svg {
  width: 13px;
  height: 13px;
}

.hobby-desc {
  font-size: 0.85rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.hobby-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.hobby-price {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.hobby-book-btn {
  padding: 6px 16px;
  font-size: 0.7rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hobby-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   BONJOUK MINIMAL FOOTER STİLLERİ
   ========================================================================== */


/* Footer Temel Kapsayıcı */
.site-footer {
  background-color: #080808;
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
  margin-top: auto; /* Sayfanın en altına yapıştırır */
  width: 100%;
  clear: both;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

/* SÜTUN 1: BRAND */
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer-desc {
  font-size: 0.82rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin: 0;
  max-width: 260px;
}

/* BAŞLIKLAR & LİNKLER */
.footer-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* İLETİŞİM & SOSYAL MEDYA */
.footer-contact-simple {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-simple a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-contact-simple a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #ffffff;
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

.dot {
  opacity: 0.3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.thumb-overlay a {
  text-decoration: none;

}

/* FOUNDER */
.founder-main {
  padding: 120px 4% 80px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.founder-hero {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.founder-img-wrapper {
  flex-shrink: 0;
  width: 280px;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #111;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.founder-img-wrapper:hover .founder-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.founder-intro {
  flex-grow: 1;
}

.founder-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.founder-name {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-title {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 20px;
  font-weight: 500;
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 25px;
}

/* Yetenek/Kompetans Etiketleri */
.competence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.competence-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ddd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   İÇERİK GRID YAPISI
   ========================================================================== */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.founder-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  width: 100%;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   ZAMAN ÇİZGİSİ VE KART İÇERİKLERİ
   ========================================================================== */
.timeline-item {
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 25px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.highlight-item {
  border-left-color: #fff;
}

.timeline-date {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.timeline-role {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2px;
}

.timeline-org {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.5;
}

/* Yalın Zaman Çizgisi */
.simple-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-timeline li {
  display: flex;
  gap: 15px;
  font-size: 0.88rem;
}

.simple-timeline .year {
  color: #888;
  font-size: 0.8rem;
  min-width: 90px;
  flex-shrink: 0;
}

.simple-timeline .details strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

.simple-timeline .details span {
  color: #aaa;
  font-size: 0.82rem;
}

/* ==========================================================================
   EĞİTİM, HARVARD VE DİLLER
   ========================================================================== */
.education-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.education-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.degree-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f3f6f4;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.education-list strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}

.education-list span {
  color: #888;
  font-size: 0.8rem;
}

/* Harvard Kart Özel Tasarım */
.harvard-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.harvard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.harvard-header .card-title {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.harvard-tag {
  font-size: 0.75rem;
  color: #aaa;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 12px;
}

.harvard-desc {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 18px;
}

.harvard-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.harvard-badges span {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Diller Kartı */
.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.lang-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 6px;
}

.lang-name {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.lang-level {
  font-size: 0.75rem;
  color: #888;
}

/* ==========================================================================
   RESPONSIVE (MOBİL & TABLET) DÜZENLEMELER - SAĞA KAYMAYI ENGELLEME
   ========================================================================== */
@media (max-width: 1024px) {
  .founder-hero {
    gap: 30px;
    padding: 30px;
  }

  .founder-img-wrapper {
    width: 220px;
    height: 280px;
  }

  .founder-grid {
    grid-template-columns: 1fr; /* Tabletlerde tek kolona düşer */
  }
}

.founder-text-link span {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  color: inherit;
}

.founder-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Syne', sans-serif !important; 
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  padding: 8px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

/* Ok İkonu */
.founder-text-link .link-arrow {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.7);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
}

/* HOVER (PARLAMA VE SAĞA KAYMA) */
.founder-text-link:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6), 
              0 0 24px rgba(255, 255, 255, 0.2);
}

.founder-text-link:hover .link-arrow {
  stroke: #ffffff;
  transform: translateX(6px);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUM)
   ========================================================================== */
@media (max-width: 768px) {
  .founder-text-link {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    gap: 8px;
  }

  .founder-text-link .link-arrow {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .founder-main {
    padding: 100px 1.25rem 60px 1.25rem; /* Sabit piksellik güvenli kenar dolgusu */
  }

  .founder-hero {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .founder-img-wrapper {
    width: 180px;
    height: 220px;
    margin: 0 auto;
  }

  .founder-name {
    font-size: 1.8rem;
  }

  .competence-tags {
    justify-content: center;
  }

  .info-card {
    padding: 20px;
  }

  .simple-timeline li {
    flex-direction: column;
    gap: 4px;
  }

  .simple-timeline .year {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .founder-main {
    padding: 90px 1rem 40px 1rem;
  }

  .harvard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}