/*
 * קובץ CSS מותאם אישית
 */

/* הגדרת סגנונות בסיסיים והחלקת גלילה */
body {
    scroll-behavior: smooth;
}

/* הסתרת סמן ברירת המחדל של <details> בכל הדפדפנים */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* הוספת אנימציית Fade-in פשוטות */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* אנימציה עבור מחוון הכתיבה בצ'אט */
@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40%          { transform: scale(1.0); }
}
.animate-bounce {
    animation: bounce 1.4s infinite ease-in-out both;
}

/* אנימציה לשלבי “איך זה עובד” */
.how-it-works-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.how-it-works-step:nth-child(2) { transition-delay: 0.2s; }
.how-it-works-step:nth-child(3) { transition-delay: 0.4s; }
.how-it-works-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* אנימציה לכרטיסי המלצות */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.4s; }

/* סגנונות עבור קרוסלת ההמלצות */
.testimonials-slider {
    padding-top: 4rem; 
    padding-bottom: 3rem; 
}
.testimonials-slider .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.9);
    opacity: 0.6;
    height: auto; 
}
.testimonials-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* נקודות pagination */
.swiper-pagination-bullet {
    background-color: #6B4F4B; /* warm-brown */
    width: 10px;
    height: 10px;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}

