body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: white;
  overflow-y: hidden;
}

header {
  background-color: #1c1c1c;
  padding: 4px 0;
}

header .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-family: 'Francois One', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}


.menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  transition: color 0.3s;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.menu a:hover {
  color: #00bcd4;
}
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0;
  padding: 0;
}

.swiper-slide {
  background-color: #222;
  color: white;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;

}

.swiper-slide:hover {
  transform: scale(1.05);
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}
.swiper-slide {
  position: relative; /* Yazının konumlanabilmesi için eklendi */
  overflow: hidden;
}

.project-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 600; /* 700'den 600'e düşürüldü */
  font-size: 22px;
}
.slide-title {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  z-index: 2;
  white-space: nowrap;
}
.site-footer {
  background-color: #1c1c1c;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 10;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* === MOBİL UYUMLULUK: max 768px === */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu ul {
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    margin-top: 10px;
  }

.swiper {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 20px;
  margin: 0;

  overflow-x: auto; /* ➕ EKLENECEK */
  scroll-behavior: smooth; /* ➕ EKLENECEK */
}

  .swiper-slide {
    height: 60vh;
    font-size: 16px;
    margin-right: 10px;
  }

  .slide-title {
    font-size: 14px;
    padding: 4px 10px;
  }
}

.swiper-wrapper {
  padding: 0 !important;
  margin: 0 !important;
}
.swiper-slide {
  margin-right: 0 !important;
  padding: 0 !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: #888; /* Gri ok */
  font-size: 22px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff; /* Hover'da beyaz */
  opacity: 1;
}
/* Overlay katmanı */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Gri filtre */
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Merkeze yerleşen içerik */
.slide-center-content {
  text-align: center;
  color: white;
  z-index: 3;
}

/* Ana başlık */
.slide-main-title {
  font-family: 'Francois One', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  margin-bottom: 14px;
}

/* Alt buton + simge */
.slide-sub-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-size: 12px;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slide-sub-button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.plus-icon {
  font-size: 20px;
  font-weight: bold;
}

/* Mobilde küçültme */
@media (max-width: 768px) {
  .slide-main-title {
    font-size: 20px;
  }

  .slide-sub-button {
    font-size: 12px;
    padding: 6px 12px;
  }

  .plus-icon {
    font-size: 16px;
  }
}
.slide-sub-button {
  color: white;
  text-decoration: none;
}

.slide-sub-button:visited {
  color: white;
}

.slide-sub-button:hover {
  color: #ffd700; /* İstersen hover'da değişen renk */
}

.slide-sub-button span {
  color: white;
}

.slide-sub-button span:visited {
  color: white;
}
header {
  display: none;
}
