/* About Page Styles */
.about-main {
  background: #000;
  color: #eee;
}

.page-hero h1 { font-size: 4.5rem; }
.page-hero p { font-size: 1.6rem; }

/* Story Section */
.story {
  padding: 120px 0;
  background: linear-gradient(to bottom, #000, #111);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  color: #e50914;
  margin-bottom: 30px;
}

.story-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(229,9,20,0.3);
}

/* Timeline */
.timeline {
  padding: 120px 0;
  background: #111;
  text-align: center;
}

.timeline h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #e50914;
  margin-bottom: 80px;
}

.timeline-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.tl-item {
  background: rgba(229,9,20,0.1);
  padding: 25px;
  border-radius: 15px;
  min-width: 180px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(229,9,20,0.2);
}

.tl-year {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  color: #e50914;
  margin-bottom: 10px;
}

.tl-content {
  font-size: 1.1rem;
  color: #aaa;
}

/* Team */
.team {
  padding: 120px 0;
}

.team h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #e50914;
  margin-bottom: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  text-align: center;
}

.team-member img {
  width: 100%;
  max-width: 220px;
  border-radius: 50%;
  border: 4px solid #e50914;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.team-member h4 {
  font-size: 1.5rem;
  color: #e50914;
  margin-bottom: 8px;
}

.team-member p {
  color: #aaa;
  font-style: italic;
}

/* Visit CTA */
.visit-call {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #111, #000);
}

.visit-call h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  color: #e50914;
  margin-bottom: 30px;
}

.visit-call p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #ccc;
}

.cta-btn.large {
  padding: 20px 60px;
  font-size: 1.3rem;
}

/* Mobile */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero h1 { font-size: 3rem; }
  .timeline-items { flex-direction: column; align-items: center; }
  .tl-item { width: 80%; }
}
