/* Global button styles */

.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 999px;
    font-family: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
    background: transparent;
    color: inherit;
    border: 1px solid transparent;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: none;
    cursor: pointer;
}

/* Gradient button (rainbow) */
.c-btn--gradient {
    background: linear-gradient(82deg, #2ECC71 -35.61%, #00A69C 6.04%, #BF4698 95.34%);
    color: #ffffff;
    border: none;
    box-shadow: -3px 0 9px rgba(0, 0, 0, 0.25);
}

/* Primary green button */
.c-btn--primary {
    background: #2ECC71;
    color: #FFF;
    font-family: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  box-shadow: none;
}

/* Text link style */
.c-btn--link {
    margin-left: auto;
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    text-decoration-line: underline;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
