/* swiper */
.swiper-container {
  padding: 0;
  height: 530px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .swiper-container {
    height: 500px;
  }
}
.swiper-container .swiper-slide {
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-container .swiper-slide:after {
  content: "";
  background-image: linear-gradient(0deg, black, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
}

.swiper-container .swiper-slide:before {
  content: "";
  background-color: rgba(69, 69, 78, 0.2);
  background-image: linear-gradient(180deg, rgba(255, 234, 213, 0.3), rgba(241, 244, 255, 0.3));
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
}


/* swiper pagination */
.swiper-container .swiper-pagination {
  height: 40px;
}

.swiper-container .swiper-pagination-bullet {
  background-color: transparent;
  border: solid 1px white;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.swiper-container .swiper-pagination-bullet:hover {
  background-color: white;
}

.swiper-container .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  left: 0;
  background-color: transparent;
  border: solid 1px white;
}

/* text content */
.swiper-container .slide-text {
  text-align: center;
  color: white;
  opacity: 1;
  z-index: 2;
  font-family: "IBM Plex Sans", sans-serif;
  width: 80%;
  max-width: 500px;
}

.swiper-container .slide-text h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 30px;
  letter-spacing: 0.03em;
}

.swiper-container .slide-text p {
  font-size: 16px;
  font-family: "IBM Plex Mono", monospace;
}

/* text mobile */
@media screen and (max-width: 768px) {
  .swiper-container .slide-text {
    width: 60%;
  }

  .swiper-container .slide-text h1 {
    font-size: 20px;
    letter-spacing: 0.02em;
  }

  .swiper-container .slide-text p {
    font-size: 14px;
  }
}
/* button */
.swiper-container .slide-text .slider-btn {
  font-family: "IBM Plex Mono", monospace;
  background-color: transparent;
  border: solid 1px var(--primary-color);
  padding: 15px 30px;
  min-width: 100px;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 2px;
  color: white;
  position: relative;
  border-radius: 80px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 20px;
}

.swiper-container .slide-text .slider-btn:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  border-radius: inherit;
  transition: all 0.3s ease-in-out;
}

.swiper-container .slide-text .slider-btn:hover::after {
  left: 4px;
  top: 5px;
  background-color: var(255, 255, 255, 0.3);
}

.swiper-container .slide-text .slider-btn:hover {
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .swiper-container .slide-text .slider-btn:hover::after {
    left: 0px;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
button:focus {
  outline: 0;
}

.swiper-button-prev, .swiper-button-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: 'Font Awesome 5 Free'; /* Font Awesome ikonu kullanıyorsanız */
    font-weight: 900;
    content: '\f053'; /* chevron-left ikonu */
    font-size: 20px;
}

.swiper-button-next:after {
    content: '\f054'; /* chevron-right ikonu */
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.7;
    margin: 0 5px;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}