/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.3
*/

/* =========================================================================
 * Landing-page CTA buttons — orange → navy on hover, text stays white
 *
 * NSTAR landing-pages standard (2026-04-27): every CTA <a> on a landing
 * page should carry the `.nstar-btn` class. Default state is solid orange
 * (#E48216) / white text; on hover the background swaps to navy (#1E3A5F)
 * while the text stays white. !important is needed to beat GeneratePress's
 * global `a:hover { color: var(--accent-2) }` rule which would otherwise
 * turn the button text blue.
 *
 * Apply by adding `nstar-btn` to the className of any GenerateBlocks
 * `text` block rendered as <a> with a button background.
 * ========================================================================= */
.nstar-btn {
    color: #ffffff !important;
    transition: background-color .18s ease, transform .15s ease, box-shadow .18s ease;
}
.nstar-btn:hover,
.nstar-btn:focus,
.nstar-btn:active {
    background-color: #1E3A5F !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(30,58,95,0.20);
}
.nstar-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Top-nav single-line fix moved to assets/css/newstarsec-bilingual.css 2026-05-24
 * (extended from EN-only R22 → both ZH + EN now that there are 9 top items). */
