#story {
  background: #fff;
  padding: 60px 20px;
  color: #333;
  text-align: center;
}

/* الفيديو */
.story-video video {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  margin-bottom: 40px;
}

/* النص */
.story-text {
  max-width: 800px;
  margin: 0 auto 50px;
}

.story-text h2 {
  color: #ff914d;
  font-size: 26px;
  margin-bottom: 12px;
}

.story-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* الصور */
.story-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px auto;
  max-width: 1100px;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: 60px auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,145,77,0.4);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* النص */
.gallery-item p {
  padding: 15px;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  text-align: center;
}

/* الدائرة بالأعلى */
.gallery-item::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff914d;
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}


/* القسم القادم */
.story-future {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 2px solid #ff914d30;
}

.future-placeholder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.empty-box {
  background: #fff6f1;
  border: 2px dashed #ff914d;
  border-radius: 10px;
  width: 280px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff914d;
  font-weight: bold;
  font-size: 14px;
}
