/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-primary: "Outfit", "Raleway", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --brand-purple: #2a0570;
  --brand-accent:rgb(81, 11, 231); /* Changed from Red to Gold/Orange */
}

/* Hero Section Refinement */
#hero {
  width: 100%;
  height: 100vh;
  /* background image set in inline or previous css, assuming hero-bg-4.jpg */
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(25, 14, 58, 0.6); /* Darker purple overlay for better text contrast */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 56px;
  font-weight: 800; /* Bolder */
  line-height: 1.1;
  color: #ffffff; /* White text for dark overlay */
  font-family: var(--font-primary);
  text-transform: none;
}

#hero h1 span {
  color: white; /* Brand Red */
  border-bottom: 6px solid white; /* Thicker underline */
  text-shadow: 1px 1px 1px rgb(25, 3, 3); /* White text shadow */
}

#hero .hero-slogan {
  color: #eeeeee; /* Light grey for slogan */
  margin-bottom: 50px;
  font-size: 28px;
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

#hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all 0.4s ease;
  margin: 10px 0 0 0;
  color: #fff;
  background: linear-gradient(135deg, #5107ce 0%, #4b08a1 100%);
  text-transform: none;
  box-shadow: 0 8px 24px rgba(81, 7, 206, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* Shine effect */
#hero .btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

#hero .btn-get-started:hover::before {
  left: 100%;
}

/* Arrow icon */
#hero .btn-get-started::after {
  content: "→";
  font-size: 20px;
  transition: transform 0.3s ease;
}

#hero .btn-get-started:hover {
  background: linear-gradient(135deg, #6b1fff 0%, #5d0fd4 100%);
  box-shadow: 0 12px 32px rgba(81, 7, 206, 0.6);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

#hero .btn-get-started:hover::after {
  transform: translateX(4px);
}

#hero .btn-get-started:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(81, 7, 206, 0.4);
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  #hero .hero-slogan {
    font-size: 20px;
    line-height: 1.4;
  }
}
