.gradient-button {
    background: linear-gradient(180deg, #EA9E8D, #D64550);
    color: white; 
    border: none; 
    /* font-weight: bold; */
    /* text-transform: none; */
}
.gradient-button:hover {
    opacity: 0.9;
}

.coming-soon {
    background-color: #4b5563; /* dark gray */
    color: #f3f4f6;            /* light gray text */
    border: none;
    cursor: default;           /* no pointer cursor */
    pointer-events: none; 
    transition: none;     /* disable clicking */
}

.coming-soon:hover,
.coming-soon:focus,
.coming-soon:active,
.coming-soon:visited {
    opacity: 1;       
    background-color: #4b5563; /* dark gray */
    color: #f3f4f6;          /* no hover effect */
    transform:none;
  }


.title {
    color: #1c2826;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.125;
}

.section-title {
    position: relative;
    padding-left: 15px; 
    display: inline-block; 
    color: #557619;
}


.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, #ADDb57, #86b927);}

.hero-links {
  display: flex;
  justify-content: center; /* center all buttons horizontally */
  gap: 1rem; /* space between buttons */
  flex-wrap: wrap; /* allow wrapping on small screens */
}

.link-block a.gradient-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;        /* all buttons same width */
  padding: 0.85rem 1.6rem;
  gap: 0.5rem;             /* space between icon and text */
  font-weight: bold;        /* bold text */
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  border-radius: 999px;    /* fully rounded */
  background: linear-gradient(135deg, #7aa824, #9cd435);
  box-shadow: 0 8px 20px rgba(165, 216, 70, 0.5);
  transition: all 0.2s ease;
}

.link-block a.gradient-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(165, 216, 70, 0.8);
}

.link-block a.gradient-button .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit; /* icon takes button text color */
}

.link-block a.gradient-button .button-text {
  font-weight: bold; /* ensure text is bold */
}

.link-block a.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;       /* same width as gradient buttons */
  padding: 0.85rem 1.6rem;/* same padding */
  gap: 0.5rem;            /* space between icon and text */
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;   /* fully rounded */
  background-color: #4b5563; /* gray for coming soon */
  color: #f3f4f6;         /* light text */
  cursor: default;         
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* optional shadow */
}


.hero.is-landing {
  position: relative;
  background-color: #f9fafb; /* light base color */
  overflow: hidden; /* keep gradient circles inside */
}

/* Decorative gradient circles */
.hero.is-landing::before,
.hero.is-landing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0; /* behind content */
}

/* Top-right circle */
.hero.is-landing::before {
  width: 460px;
  height: 460px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.25), rgba(79, 70, 229, 0));
}

/* Bottom-left circle */
.hero.is-landing::after {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -100px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0));
}

/* Make sure the hero content appears above */
.hero.is-landing .hero-body {
  position: relative;
  z-index: 1;
}
