/* Story Hero */
.story-hero {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  color: var(--secondary-color);
  padding: 8rem 0 5rem;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}

.story-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.story-hero-content {
  position: relative;
  z-index: 2;
}

.story-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
}

.story-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-circle {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Timeline */
.timeline-section {
  padding: 5rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
}

.timeline-content {
  width: 45%;
  background: var(--secondary-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-year {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Name Origin */
.name-origin {
  padding: 5rem 0;
}

.name-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.name-part {
  text-align: center;
}

.name-letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--secondary-color);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
}

.name-plus,
.name-equals {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.name-final {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--secondary-color);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 1rem;
}

.name-result {
  text-align: center;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
}

.value-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.value-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-hero-title {
    font-size: 2.5rem;
  }

  .story-circle {
    width: 150px;
    height: 150px;
    font-size: 3rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  .name-breakdown {
    flex-direction: column;
    gap: 1rem;
  }

  .name-letter,
  .name-final {
    font-size: 2.5rem;
    padding: 1.5rem;
  }

  .value-card {
    margin-bottom: 2rem;
  }
}

