/* =====================
   TEMEL AYARLAR (RESET + GENEL STİL)
   Tüm elementlerde boşlukları sıfırlar ve box modeli düzenler--------------------
===================== */
* {
  box-sizing: border-box; /* Padding ve border width'e dahil edilir */
  margin: 0;              /* Tüm dış boşlukları sıfırla */
  padding: 0;             /* Tüm iç boşlukları sıfırla */
}

/* Sayfa genel font ve davranış ayarları */
body, html {
  font-family: 'Montserrat', sans-serif; /* Tüm sayfada kullanılacak font */
  line-height: 1.7;                      /* Satır aralığı (okunabilirlik için ideal) */
  scroll-behavior: smooth;               /* Anchor linklerde yumuşak kaydırma */
  color: #333;                           /* Varsayılan yazı rengi */
}

/* Tüm başlık etiketlerinde font birliği sağlanır */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* =====================
   HEADER / BANNER ALANI
   Üstte sabit duran navigasyon alanı--------------------------------------
===================== */
.banner {
  position: fixed;              /* Sayfa kaydırılsa bile sabit kalır */
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;                /* Flexbox ile hizalama */
  justify-content: space-between; /* Sağ-sol dağıtım */
  align-items: center;          /* Dikey ortalama */
  padding: 0 60px;              /* Sağ-sol iç boşluk */
  background: rgba(0, 0, 0, 0.75); /* Yarı saydam siyah arka plan */
  z-index: 2000;                /* Diğer elementlerin üstünde kalır */
}

/* Logo ve başlık alanını yan yana hizalar */
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px; /* Logo ile yazı arası boşluk */
}

/* Logo boyutu */
.logo {
  height: 70px;
}

/* Proje başlığı (ana başlık) */
.project-title h1 {
  color: white;
  font-size: 22px;
  font-weight: 700;
}

/* Proje alt başlığı */
.project-title h2 {
  color: #ddd;
  font-size: 12px;
}

/* Banner içindeki linklerde alt çizgiyi kaldır */
.banner a {
  text-decoration: none !important;
}

/* Tüm link durumlarında (hover, active vs) alt çizgi olmasın */
.banner a:visited,
.banner a:active,
.banner a:hover {
  text-decoration: none !important;
}

/*------------------------------------------------------------------------------------------------------*/

/* =====================
   MENÜ (NAVBAR)
   Üst menü linklerinin görünümü ve hover efektleri
===================== */


nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
/* Menü linkleri */
nav a {
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 10px;
}
/* Hover alt çizgi animasyonu (soldan sağa açılır) */
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;               /* Başlangıçta görünmez */
  height: 1px;
  background: #f39c12;
  transition: 0.3s;     /*   Animasyon süresi */
}

/* Hover olunca çizgi genişler */
nav a:hover::after {
  width: 100%;
}

/* Hover olunca yazı rengi değişir */
nav a:hover {
  color: #f39c12;
  
}

/* =====================
   HAMBURGER MENÜ (GENEL TANIM)
   Sadece mobilde aktif edilecek ----------------------------------------------------------------------------------
===================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 4000;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}



/* =====================
Katıl Gönüllü Ol------------------------------------------------------------------------
===================== */
.katil-gonullu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    top: auto;
    transform: none;
    z-index: 3000;
    cursor: pointer;
}

.katil-gonullu .circle {
    width: 100px;
    height: 100px;
    background: #fff;           /* Beyaz arka plan */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;  /* Tüm özellikler geçişli */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.katil-gonullu img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    transition: filter 0.3s ease;  /* Resim rengi için geçiş */
}

.katil-gonullu span {
    color: #d03a3c;              /* Kırmızı/kahve yazı */
    font-weight: 500;
    font-size: 11px;
    transition: color 0.3s ease;
}

/* HOVER EFEKTİ - Renkler tersine dönsün */
.katil-gonullu:hover .circle {
    background: #d03a3c;         /* Arka plan kırmızı/kahve oldu */
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.katil-gonullu:hover span {
    color: #fff;                 /* Yazı beyaz oldu */
}

.katil-gonullu:hover img {
    filter: brightness(0) invert(1);  /* Resim beyaz oldu */
}

/* =====================
Slider-----------------------------------------------------------------------
===================== */
#anasayfa {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}


.slider-wrapper {
  width: 100%;
  height: 100%;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
  pointer-events: none;

}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:first-child {
  opacity: 1;
}

.slide-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
    max-width: 500px;        /* Satır uzunluğunu kontrol eder */
  z-index: 2;
}

.slide-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 18px;
}


/* =====================
Placeholder Bölümler-----------------------------------------------------
===================== */
.placeholder {
  min-height: 100dvh;        /* En az ekran yüksekliği kadar */
  display: flex;            /* İçeriği ortalamak için flex */
  justify-content: center;  /* Yatay ortalama */
  align-items: center;      /* Dikey ortalama */
  text-align: center;       /* Metin ortalama */
  font-size: 36px;
  font-weight: 600;
  color: #555;
  padding: 20px;            /* Küçük ekranlarda taşmayı önler */
  letter-spacing: 1px;
}


/* =====================
Footer----------------------------------------------------------------
===================== */

.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 50px 60px 20px 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* sütunlar üstten hizalı */
  gap: 40px;
}

.footer-column {
  flex: 1 1 220px;  /* esnek büyüme, minimum genişlik 220px */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-column h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0; /* başlık yüksekliği sabit */
}

.footer-logo img {
  width: 80px;
  margin-bottom: 10px;
}

.footer-project-info p {
  font-size: 12px;
  line-height: 1.4;
  margin: 2px 0;
}

.footer-social {
  margin-top: 10px;
  display: flex;
  z-index: 9999;

}

.footer-social a img {
  width: 30px;   /* tüm ikonlar aynı genişlik */
  height: 30px;  /* tüm ikonlar aynı yükseklik */
  object-fit: contain;
  transition: 0.3s;
}


.footer-social a {
  display: inline-block;
  margin-right: 10px;
  opacity: 0.7;
  
}

.footer-social a:hover {
  opacity: 1;
  transform: scale(1.2); /* hover efekti ile büyüme */
}



.partners {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index:9999;
}

.partner a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ddd;
  opacity: 0.8;
 
}
.partner p {
transition: opacity 0.3s, transform 0.3s;
}


.partner p:hover {
  color: #f39c12;
  transform: scale(1.04); /* hover efekti ile büyüme */
  font-weight: 600;
}

.partner img {
  width: 50px;
  height: 50px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  z-index:9999;
  transition: 0.3s;
}

.footer-menu li {
  margin-bottom: 15px;
  transition: opacity 0.3s, transform 0.3s;
}

.footer-menu li:hover {
  color: #f39c12;
  transform: scale(1.04);
 font-weight: 600;
}

.footer-menu a {
  text-decoration: none;
  color: #ddd;
  display: inline-block;
  
}

.footer-bottom {
  text-align: left;
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 10px;
}

.contact-box {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
 
}
.contact-subtext {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  transition: opacity 0.3s, transform 0.3s;
}
.contact-subtext:hover {
  color: #f39c12 !important;;
  transform: scale(1.04);
}

.contact-link {
  
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-box {
 transition: opacity 0.3s, transform 0.3s;
}

.contact-box a:hover {
  color: #f39c12 !important;;
  transform: scale(1.04);
}

/* Ortak yükseklik için tüm sütunlara align stretch */
.footer-column > * {
  flex-shrink: 0;
}

.footer-column a {
  color: inherit;        /* Mevcut metin rengiyle aynı olur */
  text-decoration: none; /* Alt çizgi kalkar */
  transition: opacity 0.3s, transform 0.3s;
}

.footer-column a:hover {
  color: inherit;        /* Üzerine gelince de renk değişmez */
}

.deneme {
 transition: opacity 0.3s, transform 0.3s;
 
}

.deneme:hover {  
  color: #f39c12 !important;;
  transform: scale(1.04);
  font-weight: 600;
}


/*-----------------------------------------------------------------*/
/* Scroll Katmanı - Sayfanın altında sabit yönlendirme alanı ------*/

.scroll-down {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  animation: slideIn 1s ease-out;
  overflow: hidden;
}

/* Hover arka plan efekti */
.scroll-down::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(24, 23, 23, 0.1);
  z-index: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* Hover olunca arka plan aşağı iner */
.scroll-down:hover::before {
  transform: translateY(0);
}

/* Link alanı */
.scroll-down .scroll-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Ok ikonu */
.scroll-down .scroll-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

/* Hover’da sadece ikon büyüsün */
.scroll-down .scroll-link:hover .scroll-icon {
  transform: scale(1.2);
}






/* =====================
   PROJELER SAYFASI LAYOUT------------------------------------------------
   Sol menü
===================== */






/* Ana içerik alanı İçerik */
.proje-content {
  display: flex;
  margin-top: 100px;
  width: 100%;
}

/* =====================
   SOL SABİT MENÜ--------------------------------------------------------
===================== */

.proje-left-menu {
  width: 30%;
  background-color: rgba(230, 228, 225, 0.2);
  display: flex;
  flex-direction: column; /* Hizalamayı düzeltir */
  align-items: flex-end;
  padding-right: 40px;
  /* KİLİT NOKTA BURASI: */
  position: -webkit-sticky; /* Safari desteği */
  position: sticky;
  top: 100px; /* Header'dan sonra ekranda asılı kalacağı mesafe */
  height: auto; /* Sadece içeriği kadar yer kaplasın */
  max-height: 100dvh;
}

.proje-left-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 40%;
  opacity: 0;
  transform: translateX(-120px); /* soldan giriş efekti */
  transition: all 0.5s ease;
}

.proje-left-menu ul.show {
  opacity: 1;
  transform: translateX(0);
}

.proje-left-menu li {
  position: relative; /* 🔥 KRİTİK */
  margin: 20px 0;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width:auto; /* Menü genişliği */
  gap: 20px;
}

.proje-left-menu li:hover {
  
  color: #f39c12; /* hover renk değişimi */

}


.proje-left-menu li.active {
  color: #f39c12;
}



.proje-left-menu li::after {
  content: "";
  position: absolute;
  bottom:-10px;
  left: 0;
  width: 0;
  height: 1px;
  background: #f39c12;
  transition: 0.3s;
}

.proje-left-menu li:hover::after {
  width: 100%;
}


.menu-icon {
  margin-left: auto; /* sağ ikonu en sağa iter */
  width: 20px;     /* Küçültülmüş */
  height: 20px;    /* Küçültülmüş */
  transition: transform 0.3s ease, filter 0.3s ease;
  transform: rotate(0deg);

}

.menu-icon-flap {
  width: 20px;     /* Küçültülmüş */
  height: 20px;    /* Küçültülmüş */
}


.proje-left-menu li:hover .menu-icon {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%)
          invert(67%) sepia(83%)
          saturate(845%) hue-rotate(359deg)
          brightness(101%) contrast(91%);
}

.proje-left-menu li.active .menu-icon {
  transform: rotate(90deg);

  filter: brightness(0) saturate(100%)
          invert(67%) sepia(83%)
          saturate(845%) hue-rotate(359deg)
          brightness(101%) contrast(91%);
}



/* tüm sayfaların Sağ içerik bölümü     ------------------------------------------------*/


.section-icon {
  position: absolute;
  top: 100px;
  right: 40px;
  z-index: 2;
  transform: translateY(-50%);
  margin-bottom: 50px;
}

.section-icon img {
  width: 200px;
  height: auto;
  opacity: 0.9;
  transition: transform 0.3s ease;
  
}


.section-inner {
  padding: 120px 20px 60px;
}

/* Hover efekti */
.section-icon img:hover {
  transform: scale(1.05);
}

.proje-right-content {
  width: 70%;
  padding: 20px;
}

.proje-right-content section {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  padding-top: 100px
  
}

.proje-right-content h2 {
  margin-bottom: 20px;
}

.proje-right-content p {
  line-height: 1.8;         
  font-size: 17px;          
  color: #444;             
  margin-bottom: 22px;      
  text-align: justify;     
}
.proje-right-content ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
  margin-left: 0;

}

.proje-right-content ul li {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  position: relative;
  padding-left: 18px;
}

.proje-right-content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #f39c12; 
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.proje-right-content ul li:hover::before {
  transform: scale(1.4);
}


.ortaklar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.ortak-kutu {
    padding: 20px;
    color: #333;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo-wrapper {
  display: flex;
  justify-content: flex-start;  /* Sola hizala */
  align-items: center;
  gap: 15px;        /* Çoklu logolarda aradaki boşluk */
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd; /* İnce ayırıcı çizgi */
}

.ortak-logo {
  height: 60px;     /* TÜM LOGOLARIN STANDART BOYU */
  width: auto;      /* En-boy oranı korunur */
  object-fit: contain;
}

/* Her kutu farklı renk */
.kutu1 { background-color: #FFAD60; }   /* Açık mavi */
.kutu2 { background-color: #FFEEAD; }   /* Açık yeşil */
.kutu3 { background-color: #96CEB4; }   /* Açık turuncu */

/* İçerik uyumu */
.ortak-kutu h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}


/* Projeler hakkında  için Section genel ayarı */
#proje-hakkinda {
  display: flex;
  justify-content: center;
  padding: 30px 0 100px 0;
  background: #C4ECD3; /* soft arka plan */
}

/* Container %80 genişlik */
#proje-hakkinda .container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
  gap: 20px;
  flex-wrap: wrap;
}

/* Her sütun kutusu */

#proje-hakkinda .proje-box {
  flex: 1;                    
  background: #FFEEAD;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  /* YENİ: resim + yazı düzeni */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;     /* resim ile yazı arası */
}

/* Resimler */
#proje-hakkinda .proje-box img {
  width: 200px;
  height: 200px;
  object-fit: contain; /* bozulmayı engeller */
  pointer-events: none; /* tıklama sadece kutuya olsun */
}

/* Hover durumu */
#proje-hakkinda .proje-box:hover {
  background: #fd7373;
  color: #fff;
  transform: translateY(-40px);
}

/* dosyalar blümü için */

.dosyalar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Kart */
.dosyalar-kutu {
    background: #f3f3f3;
   
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    min-height: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.dosyalar-kutu:hover {
    background: #ffbf83;
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Icon */
.dosya-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: 10px;
}

/* Text alanı */
.dosya-text {
    display: flex;
    flex-direction: column;
}

/* Başlık */
.dosya-title {
    font-size: 18px;
    font-weight: bold;
}

/* Açıklama */
.dosya-desc {
    font-size: 15px;
    opacity: 0.8;
}

/* Hover yazı rengi */
.dosyalar-kutu:hover .dosya-title,
.dosyalar-kutu:hover .dosya-desc {
    color: #fff;
}





/* AKTİVİTELER SAYFASI İÇİN EKLENEN -------------------------------*/


  .activity-right-panel {
      width: 100%;
      position: relative;
      overflow: hidden;
  }


  #aktiviteler {
    background-color: rgb(164, 204, 217); /* İstediğin renk kodu */
    padding: 30px 0 100px 0; /* örnek padding */
    display: flex;
    justify-content: center;
  }

  #aktiviteler .container {
    width: 80%;
    height: 50%;
    display: flex;
    justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
    gap: 20px;
    flex-wrap: wrap;
  }

  #aktiviteler .proje-box {
    flex: 1;                    
    background: rgb(33, 91, 99);
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: rgb(103, 192, 144);
    /* YENİ: resim + yazı düzeni */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;     /* resim ile yazı arası */
  }

  /* Resimler */
  #aktiviteler .proje-box img {
    width: 200px;
    height: 200px;
    object-fit: contain; /* bozulmayı engeller */
    pointer-events: none; /* tıklama sadece kutuya olsun */
  }

  /* Hover durumu */
  #aktiviteler .proje-box:hover {
    background: rgb(18, 65, 112);
    color: rgb(170, 255, 199);
    transform: translateY(-40px);
  }

/* ETKİNLİKLER SAYFASI İÇİN EKLENEN -------------------------------*/


#etkinlikler {
  background-color:#C4ECD3; /* İstediğin renk kodu */
  padding: 30px 0 100px 0; /* örnek padding */
  display: flex;
  justify-content: center;


}

#etkinlikler .container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
  gap: 20px;
  flex-wrap: wrap;
}

#etkinlikler .proje-box {
  flex: 1;                    
  background: #FAB95B;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: rgb(18, 22, 20);

  /* YENİ: resim + yazı düzeni */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;     /* resim ile yazı arası */
}

/* Resimler */
#etkinlikler .proje-box img {
  width: 200px;
  height: 200px;
  object-fit: contain; /* bozulmayı engeller */
  pointer-events: none; /* tıklama sadece kutuya olsun */
}

/* Hover durumu */
#etkinlikler .proje-box:hover {
  background: #AE2448;
  color: rgb(255, 255, 255);
  transform: translateY(-40px);
}






/* iletişim bölümü */

#iletisim {
  background-color: #f5d796; /* İstediğin renk kodu */
  padding: 30px 0 100px 0; /* örnek padding */
  display: flex;
  justify-content: center;
}

#iletisim .container {
  width: 80%;
  height: 50%;
  display: flex;
  justify-content: space-between; /* 4 sütunu eşit aralıklı yapar */
  gap: 20px;
  flex-wrap: wrap;
}

#iletisim .proje-box {
  flex: 1;                    
  background: #f0e2e2;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: rgb(18, 22, 20);

  /* YENİ: resim + yazı düzeni */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;     /* resim ile yazı arası */
}

/* Resimler */
#iletisim .proje-box img {
  width: 200px;
  height: 200px;
  object-fit: contain; /* bozulmayı engeller */
  pointer-events: none; /* tıklama sadece kutuya olsun */
}

/* Hover durumu */
#iletisim .proje-box:hover {
  background: #3d056b;
  color: rgb(255, 255, 255);
  transform: translateY(-40px);
}








/* =====================
   MOBİL RESPONSIVE (DÜZENLENMİŞ)
   max-width: 768px
===================== */

/* RESPONSIVE - TABLET */
@media (max-width: 900px) {
    .ortaklar-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBİL ANA DÜZEN */
@media (max-width: 768px) {

    /* ----- BANNER (eski düzen korundu) ----- */
    .banner {
        height: 70px;
        padding: 0 20px;
    }

    .logo-container {
        gap: 10px;
    }

    .logo-container img {
        display: none;
    }

    .logo-container img:first-child {
        display: block;
        height: 45px;
    }

    .logo {
        height: 50px;
    }

    .project-title h1 {
        font-size: 16px;
    }

    .project-title h2 {
        display: none;
    }

    /* ----- HAMBURGER MENÜ (eski çalışan yapı) ----- */
    .nav-links {
        position: absolute;
        top: 72px;
        right: 0px;
        width: 100vw;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(5px);
        padding: 0 px;
        gap: 0px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-80px) scaleY(1);
        transform-origin: top;
        pointer-events: none;
        transition: all 0.4s ease-in-out;
        display: flex !important;
        z-index: 2001;
        overflow: hidden;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scaleY(1);
        pointer-events: auto;
        
    }

    .nav-links li {
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0;
    } 

    .nav-links a {
        display: block;
        width: 100%;
        padding: 16px 20px;  /* Daha yüksek, tıklama alanı büyük */
        color: #fff;
        text-decoration: none;
        text-align: right;  /* YAZIYI SAĞA HİZALA */
        font-size: 14px;
        font-weight: 500;
        transition: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        /* Tıklama efekti - tüm satırda */
    .nav-links a:active {
        background: #f39c12 !important;
        color: #fff !important;
        
    }



    .hamburger {
        display: flex;
        cursor: pointer;
    }

.nav-links li:last-child a {
    border-bottom: none;
}


    /* ----- PROJE BOX (eski düzen) ----- */
    .proje-box {
    flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;  /* İçeriği eşit dağıt */
        align-items: center;
        padding: 20px 10px;
        min-height: 180px;
        transition: transform 0.2s ease;
    }

    .proje-box img {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    flex-shrink: 0;  /* Resim küçülmesin */
    }

    .proje-box span {
    flex-grow: 1;    /* Yazı alanı esneyerek yüksekliği eşitlesin */
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 13px;
}

    .proje-box:active {
    background: #fd7373 !important;
    transform: translateY(-5px);
    }




    /* ----- SLIDER (eski düzen) ----- */
    .slide-text {
        left: 5%;
        right: 5%;
    }

    .slide-text h1 {
        font-size: 22px;
    }

    .slide-text p {
        font-size: 13px;
    }

    .scroll-icon {
        width: 35px;
        height: 35px;
    }

    /* ----- SOL MENÜ (TAB BAR - düzeltildi) ----- */
    .proje-left-menu {
        position: sticky;
        top: 70px;  /* 80px'den 70px'e düzeltildi (header ile uyum) */
        width: 100%;
        background: #fff;
        z-index: 1000;
        padding: 6px 0;
        border-bottom: 1px solid #eaeaea;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

    }

    .proje-left-menu ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 0;
        padding: 8px 12px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        width: 100%;
        opacity: 1;
        transform: none;
    }


    .proje-left-menu ul::-webkit-scrollbar {
        display: none;
    }

    .proje-left-menu li {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 20px;
        background: #f5f5f5;
        color: #333;
        transition: 0.2s ease;
        margin: 0;
    }

    .proje-left-menu li::after {
        display: none;
        
    }

    .menu-icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .menu-icon-flap {
        width: 16px;
        height: 16px;
    }

    .proje-left-menu li.active {
        transform: scale(0.96);
        background: #333;
    }



    /* ----- PROJE LAYOUT (eski düzen) ----- */
    .proje-content {
        flex-direction: column;
    }

    .proje-left-menu,
    .proje-right-content {
        width: 100%;
    }

    .proje-right-content {
        padding: 20px;
    }

    .proje-right-content h2 {
        font-size: 16px;
    }

    .proje-right-content p {
        font-size: 14px;
    }

    /* ----- SECTION ICON (eski düzen) ----- */
    .section-icon {
        position: static;
        text-align: center;
        margin-bottom: 20px;
        top: auto;
        right: auto;
        transform: none;
    }

    .section-icon img {
        float: none;
        width: 180px;
        margin: 0 auto;
        display: block;
    }

    /* ----- CAROUSEL (düzeltildi - margin sorunu yok) ----- */
    .carousel {
        width: 100%;
        margin: 20px auto;
        gap: 8px;
    }

    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .carousel-nav.prev {
        left: -10px;
    }

    .carousel-nav.next {
        right: -10px;
    }

    .carousel-nav img {
        width: 30px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        padding: 5px;
    }

    .carousel-track img {
        width: 100%;
        padding: 2px;
    }

    /* ----- GALERİ (aktivite sayfası) ----- */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        grid-auto-rows: 100px;
        gap: 5px;
    }

    .gallery-wrapper {
        min-height: auto;
        padding: 20px 0;
    }

    /* ----- GRIDLER (eski düzen) ----- */
    .ortaklar-grid {
        grid-template-columns: 1fr;
    }

    .dosyalar-grid {
        grid-template-columns: 1fr;
    }

    /* ----- FOOTER (eski düzen) ----- */
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .partners {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* ----- PLACEHOLDER ----- */
    .placeholder {
        font-size: 28px;
        padding: 0 15px;
        text-align: center;
    }

    /* ----- KATIL GÖNÜLLÜ ----- */
    .katil-gonullu {
        right: 20px;
        bottom: 20px;
    }

    .katil-gonullu .circle {
        width: 80px;
        height: 80px;
    }

    .katil-gonullu .circle img {
        width: 35px;
        height: 35px;
    }

    .katil-gonullu span {
        font-size: 10px;
    }
}

/* ÇOK KÜÇÜK EKRANLAR İÇİN EK DÜZENLEMELER */
@media (max-width: 480px) {
    .proje-box {
        flex: 1 1 100%;
    }

    .proje-box img {
        width: 80px;
        height: 80px;
    }

    .proje-left-menu li {
        font-size: 11px;
        padding: 5px 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        grid-auto-rows: 80px;
    }

    .carousel-nav img {
        width: 25px;
    }
}

/* SLAYT YÜKSEKLİĞİ (eski) */
@media (max-height: 700px) {
    #anasayfa {
        height: 80vh;
    }
}

/* TABLET BOYUTU (eski) */
@media (max-width: 1024px) {
    .slide-text h1 {
        font-size: 32px;
    }
    .slide-text p {
        font-size: 16px;
    }
}













