/* ================================
   🌄 SLIDER GENEL AYARLAR
================================ */
#slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #ccc; /* Üst-alt boşluk gri */
}

#slider .slider-swiper {
  position: relative; /* 🔹 Progress bar & oklar için referans */
  width: 100%;
  height: 80vh;
  max-height: 700px;
  overflow: hidden;
}

/* ================================
   🖼️ SLIDER GÖRSELLER
================================ */
.slide-img {
  display: block;
  width: 100%;
  height: 80vh;
  object-fit: contain; /* Görsel sığsın, kesilmesin */
  object-position: center;
  background-color: #ccc;
  filter: brightness(0.85);
  transition: transform 1s ease;
}

/* ================================
   🎯 METİN OVERLAY KATMANI
================================ */
.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 90%;
  max-width: 700px;
}

.slide-overlay h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0;
}

.slide-overlay p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0;
}

/* ================================
   ✨ FADE-UP ANİMASYONLARI
================================ */
.fade-up { animation: fadeUp 1s ease forwards; }
.fade-up-delay { animation: fadeUp 1s ease 0.4s forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   🔵 SLIDER BUTONU
================================ */
.btn-slide {
  display: inline-block;
  background-color: #37B0C8;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-slide:hover {
  background-color: #1E7082;
}

/* ================================
   🕹️ SWIPER OKLAR (Tam Yuvarlak)
================================ */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 40px;   /* 🔹 %70 boyut, dengeli görünüm */
  height: 40px;
  border-radius: 50%;
  background-color: #F23A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 12px;  /* 🔹 Küçük beyaz ok */
  font-weight: 500;
  color: #fff;
  line-height: 1;
  padding: 4px;
  box-sizing: content-box;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #c72e2e;
  transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev { left: 25px; }
.swiper-button-next { right: 25px; }

/* ================================
   🔻 Progress Bar Pagination
================================ */


/* ================================
   🎯 Ortada Küçük Progress Bar
================================ */
/* ================================
   ⚪ Klasik Noktalı Pagination
================================ */
/* ================================
   ⚪ Pagination (Tam Ortalanmış)
================================ */
/* ================================
   ⚪ Pagination (Gerçek Tam Ortalanmış)
================================ */
/* ================================
   ⚪ Pagination (Ortalı ve Çubuk Şekilli)
================================ */
.swiper-pagination {
  position: absolute !important;
  bottom: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  z-index: 25 !important;
}

/* 🔹 Pasif çubuklar */
.swiper-pagination-bullet {
  width: 32px !important;
  height: 4px !important;
  background: #fff !important;
  border-radius: 2px !important;
  opacity: 0.6;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

/* 🔴 Aktif çubuk (renk değişimi + genişleme efekti) */
.swiper-pagination-bullet-active {
  background: #F23A3A !important; /* kırmızı aktif bar */
  opacity: 1;
  width: 42px !important;          /* 🔹 Hafif genişleme efekti */
}



@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 20px !important;
    height: 3px !important;
  }
  .swiper-pagination-bullet-active {
    width: 28px !important;
  }
}




/* ================================
   📱 RESPONSIVE AYARLAR
================================ */
@media (max-width: 992px) {
  #slider .slider-swiper, .slide-img { height: 65vh; }
  .slide-overlay h2 { font-size: 2rem; }
  .slide-overlay p { font-size: 1rem; }
}

@media (max-width: 768px) {
  #slider .slider-swiper, .slide-img { height: 55vh; }
  .slide-overlay h2 { font-size: 1.6rem; }
  .slide-overlay p { display: none !important; }
  .btn-slide { padding: 8px 18px; font-size: 0.9rem; }
  .swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 9px;
    padding: 3px;
  }
  #slider, #slider .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}




/* ================================
   🎯 AV KARTLARI
================================ */
#hunting-cards {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.hunt-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hunt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hunt-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.hunt-info {
  padding: 20px;
  text-align: center;
}

.hunt-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #F23A3A;
  margin-bottom: 10px;
}

.hunt-info p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* 📱 Mobil ve Tablet Uyum */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}



/* ===========================
   🌲 FOOTER TASARIMI (v2)
=========================== */
#site-footer {
  background-color: #0a0a0a;
  color: #eee;
  font-size: 15px;
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-block h3, .footer-block h4 {
  color: #37B0C8; /* Turkuaz vurgu */
  margin-bottom: 15px;
}

.footer-block p {
  line-height: 1.6;
}

.footer-block ul {
  list-style: none;
  padding: 0;
}

.footer-block ul li {
  margin-bottom: 8px;
}

.footer-block a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-block a:hover {
  color: #37B0C8;
}

/* 🎨 Sosyal Medya İkonları */
.footer-social {
  margin-top: 15px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
}

/* Renkli hover efektleri */
.footer-social .social-link.fb:hover {
  background-color: #1877f2; /* Facebook mavi */
}

.footer-social .social-link.ig:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); /* Instagram degrade */
}

.footer-social .social-link.yt:hover {
  background-color: #ff0000; /* YouTube kırmızı */
}

.footer-end {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #999;
}

.footer-end a {
  color: #37B0C8;
  text-decoration: none;
}

.footer-end a:hover {
  text-decoration: underline;
}


.konaklama-swiper {
  width: 100%;
  height: 380px;
}

.konaklama-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 35px;
  height: auto;
  filter: brightness(100%);
}
