/* Sticky navbar genel stil */
.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Logo kutusu */
.navbar-logo-box {
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-top: -30px;
  z-index: 20;
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease;

  /* Ortalama ve responsive yapı */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

/* Logo resmi */
.navbar-logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

/* Marka yazısı */
.brand-text {
  font-size: 1rem;
  font-weight: 600;
  padding-left: 15px;
  white-space: nowrap;
  transition: font-size 0.3s ease;
}

/* Scroll sonrası küçülme */
.scrolled .navbar-logo-box {
  margin-top: 0 !important;
  padding: 10px 10px;
  box-shadow: none;
  height: 60px;
}

.scrolled .navbar-logo-box img {
  max-height: 100%;
}

.scrolled .brand-text {
  font-size: 0.9rem;
}

/* Slider görseli tam ekran */
.carousel-item img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}

/* Slider yazı gölgesi */
.carousel-caption {
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* Ekstra gölge sınıfı */
.text-shadow {
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}
