/* کانتینر اصلی */
.slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* هر اسلاید */
.slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 0s linear 1s;
  z-index: 0;
}
.slidelogo img{width:100%;height:auto;}
.slider .slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  transition-delay: 0s;
  z-index: 1;
}

/* پس‌زمینه و ساختار داخلی */
.slidef {
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  flex-direction: row-reverse;
  height: 100%;
  width: 100%;
  background-image: url(/wp-content/themes/safarnameh/pic/home-slider-banner.png);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-photo img {
  height: 300px;
  animation: heartbeat 6s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* متن اسلاید */
.slide-text {
  width: 700px;
  border-radius: 10px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
  backdrop-filter: blur(12px);
  color: #fff;
}

.slide-name {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.slide-detail {
  font-size: 22px;
  color: #f0a805;
  font-weight: 900;
}

/* دکمه‌های کنترل */
.button-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #00da81, #018650);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 5;
  transition: background 0.3s ease;
}

.button-container button:hover {
  background: radial-gradient(circle, #00f091, #01a860);
}

.ago-slide { left: 20px; }
.next-slide { right: 20px; }

/* ریسپانسیو برای تبلت */
@media (max-width: 1024px) {
  .slider-container { height: 400px; }
  .slide-text { width: 85%; font-size: 18px; }
  .slide-photo img { height: 200px; }
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .slider-container {
    height: 400px; /* ارتفاع مناسب موبایل */
  }
   .slide-photo img { height: 100px; padding:0px;}
  .slider .slide {
    position: absolute; /* مهم: روی هم قرار دارند */
    top: 48px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;

  }
  .slider .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    transition-delay: 0s;
  }

  .slidef {
    flex-direction: column; /* محتوا ستونی */
    padding: 10px;
    background-size: cover;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
  }
.slide-photo{margin-bottom:20px}
  .slide-text {
    width: 90%;
    background: rgba(255,255,255,0.9);
    color: #222;
    padding: 10px;
  }

  .slide-name { font-size: 20px; color: #222; }
  .slide-detail { font-size: 13px; color: #555;text-align:center }
  .slide-text { width: 100%; font-size: 12px; }
  /* دکمه‌ها */
  .button-container button { display: block; top: 45%; }
}
