/* === GENEL YAPI === */
#galata-kamp-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-family: "Kumbh Sans", sans-serif;
  color: #1a1a1a;
  line-height: 1.7;
}

/* === BAŞLIK VE AÇIKLAMA === */
.kamp-baslik {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.kamp-aciklama {
  text-align: center;
  color: #555;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* === GÜN SEKMELERİ === */
.kamp-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.kamp-tab-container {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  scrollbar-width: none;
}
.kamp-tab-container::-webkit-scrollbar {
  display: none;
}

.kamp-tab {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 16px;
  color: #1a1a1a;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.kamp-tab:hover {
  color: #ba0809;
}
.kamp-tab.aktif {
  color: #ba0809;
  border-bottom: 2px solid #ba0809;
  font-weight: 600;
}

.kamp-prev, .kamp-next {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #555;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.kamp-prev:hover, .kamp-next:hover {
  color: #ba0809;
}

/* === GÜN BLOKLARI === */
.kamp-icerik .kamp-gun {
  display: none;
}
.kamp-icerik .kamp-gun.aktif {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === GÖRSEL VE METİN === */
.kamp-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.kamp-img {
  flex: 0 0 48%;
}
.kamp-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.kamp-text {
  flex: 1;
}
.kamp-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.kamp-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}
.kamp-text .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ba0809;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.kamp-text .btn:hover {
  background: #000;
}

/* === GEZİLECEK YERLER VE AKTİVİTELER === */
.kamp-galeri {
  margin-top: 40px;
  text-align: center;
}

.gez-baslik {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.gez-aciklama {
  font-size: 17px;
  color: #555;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* === FOTOĞRAF / VİDEO SEKMELERİ === */
.galeri-filtre {
  margin-bottom: 35px;
}
.galeri-filtre button {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px 20px;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  margin: 0 5px;
}
.galeri-filtre button:hover {
  color: #ba0809;
  border-color: #ba0809;
}
.galeri-filtre .aktif {
  background: #ba0809;
  color: #fff;
  border-color: #ba0809;
}

/* === GALERİ GÖRSELLERİ === */
.foto-list, .video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.foto img, .video iframe, .video video {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  background: #ba0809;
  height: 220px;
}

.video iframe, .video video {
  background: #000;
  height: 240px;
}

/* === SAYFALAMA (örnek görseldeki gibi alt ortada) === */
.kamp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}
.kamp-pagination span,
.kamp-pagination a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: #1a1a1a;
  font-size: 15px;
  transition: all 0.3s ease;
}
.kamp-pagination span.current,
.kamp-pagination a:hover {
  background: #ba0809;
  color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .kamp-row { flex-direction: column; }
  .kamp-img, .kamp-text { flex: 1 1 100%; }
  .kamp-text h3 { font-size: 22px; }
}
@media (max-width: 600px) {
  #galata-kamp-wrapper { padding: 40px 16px 80px; }
  .kamp-baslik { font-size: 30px; }
  .kamp-aciklama { font-size: 16px; }
  .kamp-tab { font-size: 14px; }
  .foto img, .video iframe, .video video { height: 180px; }
}

/* === KAMP GÜNLERİ GALERİ YAKINLAŞTIRMA === */
.foto-list, .video-list {
  gap: 0.3rem !important;
}

.foto-list .foto,
.video-list .video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.foto-list .foto img,
.video-list .video video,
.video-list .video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 10px;
}

.foto-list .foto:hover img,
.video-list .video:hover video,
.video-list .video:hover iframe {
  transform: scale(1.05);
}

/* === POPUP GÖRÜNÜM === */
.kamp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.kamp-lightbox img,
.kamp-lightbox video,
.kamp-lightbox iframe {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.kamp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.kamp-genel-btn-wrapper {
  text-align: center;
  margin: 25px 0 45px;
}
.kamp-genel-btn {
  display: inline-block;
  background: #ba0809;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.kamp-genel-btn:hover {
  background: #ffffff;
  color: #b30000;
}
