/* === Saga Stories Hero Section (Stylized Version - No Image) === */

.saga-hero {
  background: linear-gradient(145deg, #2a0f47 0%, #4a138e 40%, #b300ff 100%);
  color: #fff;
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle glowing overlay for depth */
.saga-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08), transparent 60%);
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1 1 400px;
  max-width: 500px;
}

/* === HERO TITLE === *//* === HERO TITLE (White + Lift Effect) === */
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.3);
  transform: translateY(10px);
  opacity: 0;
  animation: heroLiftIn 1s ease-out forwards;
}

/* "Saga" word keeps its highlight tone */
.hero-title span {
  color: #fff;
  background: linear-gradient(90deg, #ffffff, #ffccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* === Animation: Lift In === */
@keyframes heroLiftIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: #fff;
  color: #b300ff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #ff66cc, #b300ff);
  color: #fff;
}

/* Illustration remains on right side */
.hero-illustration img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* === Responsive Adjustments === */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-illustration img {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .saga-hero {
    padding: 90px 15px 70px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}


/* === General Page Styling for front-page === */

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 50px 0 30px;
  color: #2a2a2a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Featured comics wrapper spacing */
.featured-comics-section {
  background: #fafafa;
  padding: 60px 0 80px;
}

/* Related sites section */
.related-sites-section {
  background: #f4f4f8;
  padding: 60px 0 80px;
}

.related-sites-section .related-sites-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
