.slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.slider-wrapper .carousel-inner {
  height: 80vh;
}

.slider-wrapper .carousel-inner img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center center;
}

/* Yazıyı sol alt köşeye sabitle */
.slider-wrapper .carousel-caption {
  position: absolute !important;
  bottom: 30px !important;
  left: 30px !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  text-align: left;
  padding: 0;
  z-index: 10;
}

.slider-wrapper .carousel-caption h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.slider-wrapper .carousel-caption p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 0;
  opacity: 0.9;
}


/* Buton stilleri */
.slider-wrapper .carousel-caption a.btn {
  margin-top: 1rem;
  font-weight: bold;
}

/* Oklar */
.slider-wrapper .carousel-control-prev,
.slider-wrapper .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.slider-wrapper .carousel-control-prev-icon,
.slider-wrapper .carousel-control-next-icon {
  background-size: 60% 60%;
  filter: invert(1);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .slider-wrapper .carousel-inner {
    height: 50vh;
  }

  .slider-wrapper .carousel-inner img {
    height: 50vh;
  }

  .slider-wrapper .carousel-caption {
    bottom: 15px !important;
    left: 15px !important;
  }

  .slider-wrapper .carousel-caption h1,
  .slider-wrapper .carousel-caption p {
    font-size: 1rem;
    line-height: 1.3;
  }

  .slider-wrapper .carousel-caption a.btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .slider-wrapper .carousel-control-prev,
  .slider-wrapper .carousel-control-next {
    width: 32px;
    height: 32px;
  }
}
