@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap");
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Başlıklar */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}

/* Paragraflar */
p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
}

/* Butonlar */
button,
.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

/* Linkler */
a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
}
.bell {
  background-color: transparent !important;
}
.carousel {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;

}


.slides {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: black;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
}

.slide img {
  
  object-fit: fill;
  height: 100%;
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  font-size: 20px;
  background: none;
  background-color: transparent !important;
  color: grey !important;
}
.carousel-button:hover,
.carousel-button:focus {
  color: rgb(78, 78, 78);
}
.carousel-button:active {
  color: grey;
}
.carousel-button.prev {
  left: 1rem;
}
.carousel-button.next {
  right: 1rem;
}
.categories::-webkit-scrollbar {
  display: none;
}
.right-button,
.left-button {
  background-color: transparent !important;
  color: grey !important;
  font-size: 20px;
}
.observe-item {
  opacity: 0;
  transform: translateX(120px);
  transition: 0.7s ease-out;
}

.observe-item.from-left {
  transform: translateX(-120px);
}

.observe-item.show {
  opacity: 1;
  transform: translateX(0);
}
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  cursor: pointer;
}

.lang-selector select {
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.lang-selector select:hover {
  opacity: 0.7;
}
.category-buttons
{
  background: none !important;
  color: rgb(74, 74, 74) !important;
  font-size: 20px;
}
.loader {
  width: 42px;
  height: 42px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #414040;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.footer a:hover
{
  color: #414040 !important;
}

