/*
Theme Name: Blackstone Bill Pay
Theme URI: https://blackstonemedicalservices.com/
Author: Blackstone Medical Services
Author URI: https://blackstonemedicalservices.com/
Description: Minimal single-page bill payment theme modeled after the Figma layout, optimized for the custom Authorize.Net integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: billpay-theme
*/

:root {
    --color-white: #ffffff;
    --color-brand-blck: #1f2228;
    --color-brand-green: #caeb00;
    --color-brand-dark-blue: #151f29;
    --color-text-grey-1: #8d8d8d;
    --color-border-grey: rgba(231, 230, 230, 0.2);
    --color-bg-panel: rgba(255, 255, 255, 0.08);
    --button-onhover: #eeff84;
    --font-heading: 'SF Pro Rounded', 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Open Sans', 'Inter', 'Arial', sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--color-brand-blck);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bill-pay-theme {
    background: var(--color-brand-blck);
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.main-nav {
    width: 100%;
    border-bottom: 0.5px solid var(--color-border-grey);
    padding: 18px clamp(16px, 4vw, 60px);
    background: var(--color-brand-blck);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 0px 1rem;
}

.left-col img {
    width: 210px;
    height: auto;
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    justify-content: center;
    white-space: nowrap;
}

.have-questions-call-us {
    font-size: 14px;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-brand-green);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.phone:focus-visible {
    outline: 2px solid var(--button-onhover);
    outline-offset: 3px;
}

.phone:hover,
.phone:focus-visible {
    color: var(--button-onhover);
}

.phone-number-text {
    color: inherit;
}

.phone-icon {
    width: 18px;
    height: 18px;
    background-color: currentColor;
    mask: url('./assets/phone.svg') no-repeat center / contain;
    -webkit-mask: url('./assets/phone.svg') no-repeat center / contain;
}

.site-main {
    width: 100%;
    flex: 1;
}

.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
    
}

.billpay-form-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.footer {
    margin-top: auto;
    width: 100%;
    background: var(--color-brand-blck);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px clamp(16px, 4vw, 60px);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-align: center;
}

.footer small {
    display: block;
    letter-spacing: 0.04em;
}

/* Step indicator */
.authnet-steps {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.authnet-step-pill {
    background: rgba(37, 40, 46, 0.08);
    border-radius: 12px;
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-brand-blck);
}

.authnet-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
    }

    .left-col img {
        width: 160px;
    }

    .content-block {        
        align-items: center;
        gap: 2px;
        white-space: nowrap;
    }

    .have-questions-call-us {
        font-size: 12px;
    }

    .phone {
        font-size: 13px;
    }

    .bill-pay-theme {
        gap: 40px;
    }

    .hero-section {
        padding-bottom: 40px;
    }
}
