/* Hide Kadence Site Title (keep logo) */
.site-title,
.site-header .site-title,
.kadence-header-site-title {
  display: none !important;
}

.saga-global-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-global-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-global-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-global-content {
  flex: 1 1 400px;
  max-width: 500px;
}

/* === HERO TITLE === *//* === HERO TITLE (White + Lift Effect) === */
.hero-global-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-global-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-global-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-global-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-global-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #ff66cc, #b300ff);
  color: #fff;
}


/* === Responsive Adjustments === */@media (max-width: 768px) {

  .saga-global-hero {
    min-height: unset;          /* remove tall hero */
    padding: 56px 20px 48px;    /* tighter vertical space */
  }

  .saga-global-hero h1 {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .saga-global-hero p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {

  .saga-global-hero {
    padding: 44px 16px 36px;
  }

  .saga-global-hero h1 {
    font-size: 1.6rem;
  }

}

.saga-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.saga-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.saga-content h1,
.saga-content h2,
.saga-content h3 {
    color: #111827;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.saga-content h1 {
    font-size: 2rem;
}

.saga-content h2 {
    font-size: 1.4rem;
}

.saga-content h3 {
    font-size: 1.1rem;
}

.saga-content strong {
    color: #000;
    font-weight: 600;
}

.saga-content a {
    color: #7c3aed;
    text-decoration: underline;
}

.saga-content a:hover {
    color: #5b21b6;
}

.saga-content hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .saga-content {
        padding: 3rem 1.25rem;
    }

    .saga-content h1 {
        font-size: 1.6rem;
    }
}

