.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#lightboxImage {
  max-width: 90vw;
  max-height: 90vh;
  padding: 0;
}
@media (min-width: 640px) {
  #lightboxImage {
    padding: 3rem;
  }
}

#line1 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #78b7e4;
  transition: width 2s ease;
}

#hakkimizda:hover #line1 {
  width: 100%; /* hover'da tam genişlik */
}

#line2 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #158a56;
  transition: width 2s ease;
}

#hakkimizda2:hover #line2 {
  width: 100%; /* hover'da tam genişlik */
}

#line3 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #78b7e4;
  transition: width 2s ease;
}

#hakkimizda3:hover #line3 {
  width: 100%; /* hover'da tam genişlik */
}

#line4 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #158a56;
  transition: width 2s ease;
}

#hakkimizda4:hover #line4 {
  width: 100%; /* hover'da tam genişlik */
}

#line5 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #158a56;
  transition: width 2s ease;
}

#nature:hover #line5 {
  width: 100%; /* hover'da tam genişlik */
}

.back-gray {
  background-color: #f8f8f8;
}

/* assets/css/styles.css veya doğrudan <style> içine */
#videoWrapper {
  /* Köşeleri yuvarlak ve gölge JS'den sonra korunur */
  max-width: 100vw;
  max-height: 100vh;
}

section[id] {
  scroll-margin-top: 7rem; /* = h-28 + birkaç piksel opsiyonel pay */
}

#line6 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #78b7e4;
  transition: width 2s ease;
  margin-left: auto;
  margin-right: auto;
}

#galeri:hover #line6 {
  width: 100%; /* hover'da tam genişlik */
  margin-left: auto;
  margin-right: auto;
}

#line7 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #158a56;
  transition: width 2s ease;
  margin-left: auto;
  margin-right: auto;
}

#katplani:hover #line7 {
  width: 100%; /* hover'da tam genişlik */
  margin-left: auto;
  margin-right: auto;
}

#line8 {
  width: 9rem; /* başlangıç (w-36) */
  height: 4px;
  background: #158a56;
  transition: width 2s ease;
  margin-left: auto;
  margin-right: auto;
}

#daireplanlari:hover #line8 {
  width: 100%; /* hover'da tam genişlik */
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1560px) {
  .slider-text {
    margin-top: 220px;
  }
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transform: translateY(0);
  height: 80px;
  display: flex;
  align-items: center;
}

.sticky-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  height: 80px;
}


/* Mobil menü için ek düzenlemeler */
@media (max-width: 768px) {
  .sticky-header {
    position: fixed;
    min-height: 60px; /* minimum yükseklik */
    height: auto; /* içeriğe göre otomatik yükseklik */
    z-index: 1000;
    padding: 10px 0; /* üst ve alt padding */
  }
  
  .sticky-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
  }
  
  .sticky-header.scrolled {
    min-height: 60px;
    height: auto;
  }

  /* Mobil menü açıldığında header'ın üstte kalması için */
  #mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: calc(100vh - 60px); /* ekran yüksekliğinden header yüksekliğini çıkar */
    overflow-y: auto; /* içerik fazla olduğunda scroll */
  }

  /* Logo boyutunu mobil için ayarla */
  .sticky-header img {
    max-height: 60px; /* mobil için logo boyutunu 40px'den 50px'e çıkardım */
    width: auto;
  }
}

/* Diğer modalların z-index değerlerini düzenleme */
#videoModal {
  z-index: 2000;
}

#popupModal {
  z-index: 2000;
}

#lightbox {
  z-index: 2000;
}

#videoLightbox {
  z-index: 2000;
}

#lightboxPlans {
  z-index: 2000;
}