/*
 * GCC-DOM-T6 — Domain-page-only hero/CTA polish. Additive override
 * stylesheet, loaded only from templates/website/Modern/domain.php.
 * Deliberately does NOT touch wisecp.css or wisecp.php: both appear to be
 * generated/theme-customizer-driven (wisecp.php echoes PHP variables like
 * $color2 for the same rules wisecp.css bakes as static hex), so editing
 * either directly risks being overwritten or affecting every page site-
 * wide. Every rule below targets the exact existing selectors WISECP
 * already renders on this page (.alanadisorgu h1, #checkButton,
 * #transferbtn) and wins by plain source order (this file loads after
 * wisecp.css) or, for #transferbtn, by ID specificity beating the
 * .alanadisorgu .gonderbtn class-combo rule — no !important required
 * anywhere, and no markup, ID, class, or JS binding is touched.
 *
 * Scope is enforced by load site alone: this stylesheet is linked only
 * from domain.php, so even though .alanadisorgu/#checkButton/#transferbtn
 * are plain existing selectors (not newly namespaced), they cannot affect
 * any other page because no other template loads this file.
 * ------------------------------------------------------------------ */

/* ---------------------------------------------------------------------
 * 1. Hero heading readability over the background photo.
 * Text-shadow only — zero layout impact (no box, no padding, no
 * background), so heading text, the nested price value
 * (.amount_spot_view inherits text-shadow automatically) and the
 * existing centered layout are all unchanged. Two soft, dark layers
 * (a tight contact shadow + a wider ambient one) restrained enough to
 * read as depth, not a dark overlay plate.
 * ------------------------------------------------------------------ */
.alanadisorgu h1 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 2px 12px rgba(0, 0, 0, 0.22);
}

/* ---------------------------------------------------------------------
 * 2. Transfer as a secondary, ghost/outline action next to the filled
 * Check button. #checkButton is untouched (stays the primary, filled
 * conversion color from wisecp.css). Padding is trimmed by exactly the
 * new border width (18px 40px -> 16px 38px, symmetric on both axes) so
 * the button's total rendered footprint matches the previous borderless
 * size pixel-for-pixel — no width/display change, so mobile reflow and
 * long-translation wrapping behave exactly as before.
 * ------------------------------------------------------------------ */
#transferbtn {
    background: transparent;
    color: #009595;
    border: 2px solid #009595;
    padding: 16px 38px;
    box-shadow: none;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

#transferbtn:hover {
    background: rgba(0, 149, 149, 0.12);
    color: #007575;
    border-color: #007575;
}

#transferbtn:active {
    background: rgba(0, 149, 149, 0.2);
    color: #007575;
    border-color: #007575;
}

#transferbtn:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}
