/*
 * Greenwashing Finder — globale UI-Bausteine
 * Lädt nur gemeinsame Primitive wie Buttons, Links und Brand-Lockup.
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea,
select {
    font: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:disabled {
    opacity: 0.75;
    cursor: wait;
}

.btn-lg {
    padding: 0.95rem 1.45rem;
    font-size: 1.05rem;
}

.gf-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.gf-brand-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    object-fit: contain;
    display: block;
}

.gf-brand-logo--panel {
    width: 36px;
    height: 36px;
}

.gf-brand-text {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 1.25rem;
    line-height: 1;
}

.gf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #c8ff3d;
    border-color: #c8ff3d;
    color: #03130d;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 12px 32px rgba(200, 255, 61, 0.22);
}

.gf-btn-primary:hover {
    background: #dbff72;
    border-color: #dbff72;
    color: #03130d;
    transform: translateY(-1px);
}

/* Hellgrün-Primary auf hellem Untergrund: Rand in Textfarbe */
.gf-on-light .gf-btn-primary {
    border-color: #03130d;
}

.gf-on-light .gf-btn-primary:hover {
    border-color: #03130d;
}

/* Textlinks ohne Button — Unterstrich, gut lesbar auf hellem Untergrund */
.gf-link {
    color: #135c37;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    font-weight: 600;
    cursor: pointer;
}

.gf-link:hover {
    color: #041811;
}

/* Textlinks auf dunklem Untergrund */
.gf-on-dark .gf-link {
    color: #c8ff3d;
}

.gf-on-dark .gf-link:hover {
    color: #dbff72;
}

/* Hellbereich (auch innerhalb der dunklen Admin-Shell) */
.gf-on-light .gf-link,
.gf-on-dark .gf-on-light .gf-link {
    color: #135c37;
}

.gf-on-light .gf-link:hover,
.gf-on-dark .gf-on-light .gf-link:hover {
    color: #041811;
}

.gf-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid rgba(200, 255, 61, 0.32);
    color: #eaffdf;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.7rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
}

.gf-btn-outline:hover {
    border-color: #c8ff3d;
    color: #c8ff3d;
    background: rgba(200, 255, 61, 0.08);
}
