/* HERO VIDEO */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BRANDS SLIDER */
.brands-section {
  background: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brands-slider-wrapper {
  overflow: hidden;
  max-width: 800px; /* slider genişliği */
}

.brands-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.brand {
  flex: 0 0 auto;
  padding: 0 20px;
}

.brand img {
  height: 200px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Butonlar */
.slider-btn {
  background: #fcce58; /* Senin istediğin renk */
  color: #000; /* Yazı rengi siyah */
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: #e6b846; /* Hover rengi (biraz koyu tonu) */
}


/* Mobil uyum */
@media (max-width: 768px) {
  .brand img {
    height: 70px;
  }
  .brands-slider-wrapper {
    max-width: 90%;
  }
}


.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.custom-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none; /* Kenarlığı kaldırdık */
    border-radius: 25px; /* Yuvarlatma */
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: #555; /* Varsayılan arka plan */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-btn i {
    font-size: 18px;
}

/* Renkler */
.btn-yellow {
    background-color: #fcce58;
    color: #000;
}

.btn-pink {
    background-color: #f28ab2;
}

.btn-blue {
    background-color: #4aa3df;
}

/* Hover efekti */
.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}
