/* ======================
  GENEL YAZI AYARLARI
====================== */
body, p {
  color: #333 !important;
  font-size: 17px;
  line-height: 1.6;
}

/* Menü yazıları */
.main-navigation a {
  color: #111 !important;
  font-weight: 600;
  font-size: 16px;
}

/* Hover ve aktif menü */
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #e67e22 !important;
}

/* Dropdown menüler */
.main-navigation ul ul {
  background: rgba(30, 30, 30, 0.95) !important;
}

.main-navigation ul ul a {
  color: #f8f8f8 !important;
  font-size: 15px;
}

.main-navigation ul ul a:hover {
  background: #e67e22 !important;
  color: #fff !important;
}

/* ======================
  SLIDER (Varsayılana döndü)
====================== */
/* Buradaki slider ile ilgili height, contain, background düzenlemeleri kaldırıldı.
   Tema kendi default slider ayarlarını kullanacak. */

/* ======================
   SABİT BUTON (DÜZELTİLMİŞ)
====================== */
.fixed-btn {
  position: fixed; /* absolute yerine fixed */
  right: 40px;
  bottom: 110px;
  z-index: 999999 !important; /* her şeyin üstünde */
  display: inline-block !important;

  background: #ff6600 !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.fixed-btn:hover {
  background: #222 !important;
  color: #ff6600 !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .fixed-btn {
    right: 20px;
    bottom: 80px;
    font-size: 13px !important;
    padding: 8px 18px !important;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .fixed-btn {
    right: 15px;
    bottom: 50px;  
    font-size: 12px !important;
    padding: 6px 14px !important;
  }
}

.wrapper.inner-main-title,
.wrapper.inner-main-title .container,
.wrapper.inner-main-title .entry-header {
  background-color: #ff6600; /* Turuncu arka plan */
  color: #fff; /* Yazıları beyaz */
}

.wrapper.inner-main-title .entry-header .breadcrumbs,
.wrapper.inner-main-title .entry-header .page-title {
  color: #fff; /* Başlık ve breadcrumbs beyaz */
}

.image-slider-wrapper .item {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #000; /* Boş alan olursa siyah arka plan doldursun */
}

/* Masaüstü için slider yüksekliğini sınırla */
@media (min-width: 992px) {
    .image-slider-wrapper.home-fullscreen .item {
        max-height: 600px; /* İhtiyacına göre ayarla */
        overflow: hidden;
    }
}