/* Hero Section */
.story-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f9ebc6;
}
.story-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.story-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.story-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.story-hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
}

/* Timeline Section */
.story-timeline {
  max-width: 1100px;
  margin: 60px auto 0 auto;
  padding: 0 20px;
}
.story-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}
.story-timeline-reverse {
  flex-direction: row-reverse;
}
.story-timeline-img {
  flex: 0 0 220px;
  max-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  background: #fff;
}
.story-timeline-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.story-timeline-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.story-timeline-year {
  font-size: 1.3rem;
  color: #b48a2f;
  font-weight: 700;
  margin-bottom: 10px;
}
.story-timeline-content p {
  font-size: 1.1rem;
  color: #444;
  margin: 0;
}

/* Gallery Section */
.story-gallery {
  max-width: 1100px;
  margin: 70px auto 0 auto;
  padding: 0 20px 60px 20px;
}
.story-gallery-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
.story-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.story-gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
}

/* Responsive Design */
@media (max-width: 900px) {
  .story-timeline-item, .story-timeline-reverse {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
  .story-timeline-img {
    max-width: 100%;
    width: 100%;
  }
  .story-timeline-img img {
    height: 160px;
  }
  .story-timeline-content {
    padding: 22px 14px;
  }
}
@media (max-width: 600px) {
  .story-hero {
    height: 220px;
  }
  .story-hero-title {
    font-size: 1.5rem;
  }
  .story-hero-subtitle {
    font-size: 1rem;
  }
  .story-gallery-grid img {
    height: 110px;
  }
  .story-gallery-title {
    font-size: 1.2rem;
  }
}

