/* SLIDER */
.carousel-item {
  height: 540px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

#slider.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

#slider.carousel .carousel-item {
  transition-duration: 1.2s;
  transition-timing-function: ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 10s ease-in-out infinite;
  -webkit-animation: zoomEffect 10s ease-in-out infinite;
}

/* Zoom animasyonu */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* ORTADAKİ YAZI */
.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  text-align: center;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  z-index: 10; /* <-- EN KRİTİK DÜZELTME */
  width: 90%;
}

/* MOBİL AYARLAR */
@media (max-width: 768px) {
  .carousel-item {
    height: 520px; /* SABİT YÜKSEKLİK */
  }

  .search-box {
    position: absolute;
    top: 550px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    z-index: 10;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }

  .center-text {
    font-size: 1.8rem; /* ORANTILI YAZI */
  }
}
