* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeImages 24s infinite;
}

.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 8s; }
.slideshow img:nth-child(3) { animation-delay: 16s; }
.slideshow img:nth-child(4) { animation-delay: 24s; }

@keyframes fadeImages {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}

.overlay {
  background-color: rgba(20, 20, 20, 0.6);
  padding: 60px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #FFD700;
}

h2 {
  color: white;
}

p {
  font-size: 1.2em;
  margin: 0.8em auto;
  max-width: 700px;
  color: #f4f4f4;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.info-box {
  background: rgba(0, 0, 0, 0.35); /* daha saydam hale getirildi */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  margin: 30px auto;
  max-width: 600px;
  color: #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.info-box:hover {
  background: rgba(0, 0, 0, 0.5);
}

a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.6em;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.45);
  font-size: 0.9em;
  color: #ccc;
}

@media (max-width: 600px) {
  h1 { font-size: 2.2em; }
  p { font-size: 1em; }
}

/* Gezilecek yerler container */
.places-container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto 40px auto;
}

/* Her bir yer kutusu */
.place-box {
  background: rgba(20, 20, 20, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.3s ease;
}

.place-box:hover {
  background: rgba(255, 255, 255, 0.3);
}

.place-box img {
  width: 140px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.place-info {
  flex: 1;
  text-align: left;
}

.place-info h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.3em;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.place-info p {
  font-size: 1.1em;
  line-height: 1.4;
  color: #f4f4f4;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .places-container {
    padding: 0 10px;
  }
  .place-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .place-box img {
    width: 100%;
    max-height: 200px;
  }
  .place-info {
    margin-top: 15px;
  }
  .place-info h2 {
    font-size: 1.5em;
  }
  .place-info p {
    font-size: 1em;
  }
}

/* Popup arka plan ve resim stili */

.img-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
}

.img-popup .popup-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
  cursor: default;
  user-select: none;
}

.img-popup .popup-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  transition: color 0.3s ease;
}

.img-popup .popup-close:hover {
  color: #FFD700;
}