body {
  font-family: "Inter", sans-serif;
  background-image: url("/assets/img/bgro.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.btn {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

.brand-icon {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  margin: 0 12px;
}

.brand-icon:hover {
  filter: none;
  transform: scale(0.95);
}

.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

.timeline-section .container {
  position: relative;
  z-index: 1;
}

/* Sabit konumlandırma */
.sabit-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* Buton stili */
.whatsapp-btn {
  background-color: #25d366; /* WhatsApp yeşili */
  color: #ffffff; /* İkon rengi */
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* Opsiyonel: İkonun rengini garanti altına almak için */
.whatsapp-btn i {
  color: #ffffff;
}

/* Hover efekti */
.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Tooltip kutusu */
.whatsapp-tooltip {
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f8f9fa;
  color: #000000;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
  z-index: 9999;
}

/* Hover anında tooltip gösterimi */
.sabit-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

.yukari-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: white;
  color: black;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
  cursor: pointer;
}

.yukari-btn:hover {
  background-color: black;
  color: white;
}

.scroll-track {
  width: max-content;
  animation: scrollLeft 45s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroll-track::-webkit-scrollbar {
  display: none;
}

#ozel-buton:hover {
  color: var(--bs-primary) !important;
}
#gnbtn-hover-btn:hover {
  background-color: var(--bs-light) !important;
  color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}
