/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0b0b0d;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* ===== About Hero Section ===== */
.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(145deg, #0b0b0d, #151518);
  border-bottom: 1px solid rgba(255, 0, 119, 0.2);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
}

.about-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff0077;
  box-shadow: 0 0 25px rgba(255, 0, 119, 0.3);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-text h1 span {
  color: #ff0077;
}

.about-text p {
  color: #ccc;
  max-width: 600px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.social-links a {
  color: #ff0077;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff3399;
  text-shadow: 0 0 10px #ff0077;
}

/* ===== Story Section ===== */
.story-section {
  padding: 80px 20px;
  background: #0f0f12;
  text-align: center;
}

.story-section h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 50px;
}

.story-section h2 span {
  color: #ff0077;
}

/* ===== Timeline Layout ===== */
.story-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.story-timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #ff0077;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== Story Boxes ===== */
.story-box {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.story-box.left {
  left: 0;
}

.story-box.right {
  left: 50%;
}

.story-box .content {
  background: #151518;
  border: 1px solid rgba(255, 0, 119, 0.3);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 10px rgba(255, 0, 119, 0.2);
  transition: 0.3s;
}

.story-box .content:hover {
  background: rgba(255, 0, 119, 0.08);
  transform: translateY(-5px);
}

.story-box h3 {
  color: #ff0077;
  margin-bottom: 10px;
}

.story-box p {
  color: #ccc;
}

/* Dots */
.story-box::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: #ff0077;
  border-radius: 50%;
  top: 30px;
}

.story-box.right::after {
  left: -10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .story-timeline::after {
    left: 10px;
  }

  .story-box {
    width: 100%;
    padding-left: 30px;
    margin-bottom: 40px;
  }

  .story-box.right {
    left: 0;
  }

  .story-box::after {
    left: 0;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 220px;
    height: 220px;
  }

  .about-text p {
    margin: 0 auto;
  }
}
