/* ABOUT PAGE — NARA Technology */

.about-hero {
  position: relative;
  color: #fff;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #af0f0f, #454a5a, #D62D30, #FFD700);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-hero h1 {
  font-size: 44px;
  margin-bottom: 12px;
  font-weight: 800;
}
.about-hero h1 span { color: #b8140c; }
.about-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
  stroke: aliceblue 5;
}

/* Story */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.story-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.story-text h2 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 10px;
}
.story-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mv-card {
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform 0.3s;
}
.mv-card:hover { transform: translateY(-6px); }
.mv-card h3 i { margin-right: 8px; color: #D62D30; }
.mv-card h3 { color: var(--primary); margin-bottom: 10px; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.value-item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
  text-align: center;
}
.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.value-item i {
  font-size: 28px;
  color: #D62D30;
  margin-bottom: 10px;
}
.value-item h4 {
  color: var(--secondary);
  margin-bottom: 8px;
}

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .story-inner, .mv-grid {
    grid-template-columns: 1fr;
  }
  .about-hero h1 { font-size: 32px; }
}
