/* Hero */
.about-hero {
  height: 60vh;
  background: url('../assets/about-banner.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  text-align: center;
}
.about-hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 12px;
}

/* Intro */
.about-intro {
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.about-intro h2 {
  color: #FFD700;
  margin-bottom: 20px;
}
.about-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Subsections */
.about-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px;
}
.about-card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.about-card h3 {
  color: #FFD700;
  margin: 15px 0 10px;
}
.about-card p {
  color: #aaa;
}
.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #FFD70055;
}
/* Timeline */
.timeline {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.timeline h2 {
  color: #FFD700;
  margin-bottom: 40px;
}
.timeline-container {
  position: relative;
  margin: 0 auto;
  padding-left: 20px;
  border-left: 3px solid #FFD700;
}
.timeline-item {
  margin-bottom: 40px;
  position: relative;
}
.timeline-year {
  position: absolute;
  left: -70px;
  top: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD700;
}
.timeline-content {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,215,0,0.2);
  text-align: left;
}
.timeline-content h3 {
  margin: 0 0 10px;
  color: #FFD700;
}
.timeline-content p {
  margin: 0;
  color: #ddd;
}
/* Hero for Stories */
.stories-hero {
  background: url('../images/stories-banner.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.stories-hero h1 { font-size: 3rem; color: #FFD700; }
.stories-hero p { font-size: 1.2rem; }

/* Stories Grid */
.stories-section {
  padding: 80px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.story-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #FFD70055;
}
.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.story-text {
  padding: 20px;
}
.story-text h3 {
  margin: 0 0 10px;
  color: #FFD700;
}
.story-text p {
  font-size: 0.95rem;
  color: #ccc;
}
/* Hero for Team */
.team-hero {
  background: url('../images/team-banner.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.team-hero h1 { font-size: 3rem; color: #FFD700; }
.team-hero p { font-size: 1.2rem; }

/* Team Grid */
.team-section {
  padding: 80px 50px;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.team-card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #FFD70055;
}
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.team-card h3 {
  margin: 0;
  color: #FFD700;
}
.team-card p {
  margin: 5px 0 0;
  color: #ccc;
  font-size: 0.95rem;
}
/* Hero for World */
.world-hero {
  background: url('../images/world-map.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.world-hero h1 { font-size: 3rem; color: #FFD700; }
.world-hero p { font-size: 1.2rem; }

/* World Section */
.world-section {
  padding: 80px 50px;
  text-align: center;
}
.world-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.world-card {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.world-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #FFD70055;
}
.world-card h3 {
  color: #FFD700;
  margin-bottom: 10px;
}
.world-card p {
  color: #ccc;
  font-size: 0.95rem;
}

