.slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: #fff;
  max-width: 400px;
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 10px;
}
.slide-content h2 {
  font-size: 28px;
  color: #8e44ad;
}
.slide-content p {
  font-size: 16px;
  margin: 10px 0;
}
.slide-content .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8e44ad;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}



@media (max-width: 768px) {
  .slide-content {
    bottom: 20px;
    left: 20px;
    max-width: 90%;
    padding: 15px;
  }
  .slide-content h2 {
    font-size: 20px;
  }
  .slide-content p {
    font-size: 14px;
  }
  .slide-content .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* video slider alanına sığar */
  display: block;
}


/* Masaüstü */
.slider {
  height: 420px; /* desktop */
}

/* Tablet (1024px altı) */
@media (max-width: 1024px) {
  .slider {
    height: 360px; /* tablet ekranlar için */
  }
}

/* Mobil (768px altı) */
@media (max-width: 768px) {
  .slider {
    height: 240px; /* mobil slider yüksekliği */
  }
}

/* Küçük mobil (480px altı) */
@media (max-width: 480px) {
  .slider {
    height: 240px; /* küçük mobil */
  }
}


.slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden; /* bu çok önemli */
}

/* ================== SLIDE CONTENT ================== */
.slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 400px;
  padding: 0; /* arka plan yok, padding isteğe bağlı */
  color: #fff; /* beyaz yazı */
  font-weight: 700; /* kalın harfler */
  z-index: 10; /* video üstünde */
}

.slide-content h2 {
  font-size: 32px; /* büyük başlık */
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 18px; /* okunaklı metin */
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
}

/* Buton opsiyonel */
.slide-content .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgba(142, 68, 173, 0.8); /* buton varsa renkli */
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 10px;
}

/* ================== MOBİL UYUMLULUK ================== */
@media (max-width: 768px) {
  .slide-content {
    bottom: 20px;
    left: 20px;
    max-width: 90%;
  }
  .slide-content h2 {
    font-size: 24px;
  }
  .slide-content p {
    font-size: 16px;
  }
  .slide-content .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* ========== INSTAGRAM ========== */
.instagram-footer {
  display: flex;
  flex-direction: column;  /* dikey hizalama */
  align-items: center;
  gap: 4px;
  margin: 20px 0 10px;
  text-align: center;
}

.instagram-footer img {
  width: 60px;
  height: 60px;
}

.instagram-footer a {
  color: #E1306C;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;  /* emoji ve yazı dikey */
  align-items: center;
  gap: 4px;
}


footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  footer {
    font-size: 13px;
    padding: 16px 8px;
  }
}


.nav-buttons {
  display: flex;
  justify-content: center; /* ortala */
  gap: 15px; /* buttonlar arası boşluq */
  padding: 20px 10px;
  flex-wrap: wrap; /* mobilde sığmasa alt satıra keçir */
  background-color: #0a0a0a; /* footer fonuna uyğun */
}

.nav-buttons .btn {
  background-color: #8e44ad; /* mor rəng */
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s;
  flex: 1 1 100px; /* mobilde böyüklük uyğunlaşsın */
}

.nav-buttons .btn:hover {
  background-color: #6f2a9f; /* hover rəngi */
}

@media (max-width: 480px) {
  .nav-buttons .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}


.card .card-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #8e44ad; /* mor rəng */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
}

.card .card-btn:hover {
  background-color: #6f2a9f; /* hover effekti */
}

