/* الألوان المخصصة */
:root {
  --primary-orange: #f6905d;
  --secondary-red: #e3737c;
  --purple: #7d6190;
  --bg-pink: #ffeef0;
}

.text-purple-800 {
  color: #f6905d !important;
}

/* استايلات اساسية */
* {
  font-family: 'LamaSans', sans-serif;
}

body {
  font-family: 'LamaSans', sans-serif;
  background-color: var(--bg-pink);
  position: relative;
  overflow-x: hidden;
}

.bg-custom-pink {
  background-color: var(--bg-pink);
}

.section-title {
  color: var(--purple);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-orange),
    var(--secondary-red)
  );
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* الأزرار */
.btn-primary {
  background: linear-gradient(
    to right,
    var(--primary-orange),
    var(--secondary-red)
  );
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(246, 144, 93, 0.2);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(246, 144, 93, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--purple);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(125, 97, 144, 0.1);
  border: 2px solid var(--purple);
  text-align: center;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(125, 97, 144, 0.2);
  background-color: var(--purple);
  color: white;
}

/* كروت المميزات */
.feature-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* كروت الفعاليات */
.event-card {
  background-color: white;
  border-radius: 1rem;
  min-width: 280px;
  width: 300px;
  margin-right: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* كروت الآراء */
.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  min-width: 280px;
  width: 300px;
  margin-right: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* إخفاء شريط التمرير مع الاحتفاظ بالوظيفة */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* تحريكات متموجة للخلفية */
.blob-animation {
  width: 500px;
  height: 500px;
  background: linear-gradient(
    to right,
    rgba(246, 144, 93, 0.2),
    rgba(227, 115, 124, 0.2)
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob-movement 10s infinite linear alternate;
}

@keyframes blob-movement {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* استايلات الزر الفلوت للواتساب */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}

/* استايلات وأوزان الخطوط */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'LamaSans', sans-serif;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
}

.feature-card h3 {
  font-weight: 600;
}

.event-card .price {
  font-weight: 700;
}

.btn-primary,
.btn-secondary {
  font-weight: 600;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .blob-animation {
    width: 300px;
    height: 300px;
  }

  .feature-card {
    padding: 1rem;
  }

  .event-card,
  .testimonial-card {
    min-width: 260px;
    width: 280px;
    margin-right: 1rem;
  }

  .floating-image {
    width: 40px;
    height: 40px;
  }
}

/* تعديلات إضافية للتجاوب مع الأجهزة الصغيرة */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .event-card,
  .testimonial-card {
    min-width: 220px;
    width: 250px;
  }

  .feature-card {
    padding: 0.75rem;
  }

  .feature-card i {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .floating-image {
    width: 30px;
    height: 30px;
  }
}
