/* EZWebPlayer site — classic enrollment-lite inspired look.
   Self-contained; does not rely on the WP theme CSS. */

:root {
    --ezwp-blue: #0094ff;
    --ezwp-blue-dark: #007acc;
    --ezwp-navy: #002147;
    --ezwp-navy-soft: rgba(0, 33, 71, 0.85);
    --ezwp-green: #1ee3a8;
    --ezwp-green-dark: #15b987;
    --ezwp-ink: #333;
    --ezwp-muted: #6b7280;
    --ezwp-border: #e5ecf2;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    color: var(--ezwp-ink);
    background: #fff;
    line-height: 1.55;
}

a { color: var(--ezwp-blue); text-decoration: none; }
a:hover { color: var(--ezwp-blue-dark); text-decoration: underline; }

.cv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Header ---- */

#masthead.site-header {
    background: var(--ezwp-blue);
    color: #fff;
}

#masthead.site-header .cv-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 0;
    gap: 6px;
}

.site-branding {
    text-align: center;
    padding: 8px 0 4px 0;
}

.site-branding .custom-logo-link { display: inline-block; line-height: 0; }
.site-branding .custom-logo {
    max-height: 49px;
    height: auto;
    width: auto !important;
    display: block;
}

.menu-search-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

#site-navigation.main-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu-toggle { display: none; }
.menu-toggle.hide { display: none; }
@media (max-width: 720px) {
    .menu-toggle { display: inline-block; color: #fff; font-size: 22px; padding: 10px; cursor: pointer; }
    .menu-toggle.hide { display: none; }
}

#primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

#primary-menu > li > a {
    display: inline-block;
    color: #fff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

#primary-menu > li > a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
}

#primary-menu > li.current-menu-item > a,
#primary-menu > li.current_page_item > a {
    background: var(--ezwp-green);
    color: #fff;
}

#primary-menu > li.menu-item-signup > a {
    background: var(--ezwp-green);
    color: #fff;
    font-weight: 700;
}

#primary-menu > li.menu-item-signup > a:hover {
    background: var(--ezwp-green-dark);
}

#primary-menu > li.menu-item-login > a {
    border: 1px solid rgba(255,255,255,0.55);
    font-weight: 700;
}

/* ---- Hero (homepage) ---- */

.ezwp-hero {
    position: relative;
    background: var(--ezwp-blue);
    padding: 50px 0 70px;
    overflow: hidden;
}

.ezwp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(0,33,71,0.25) 0%, rgba(0,33,71,0) 60%);
    pointer-events: none;
}

.ezwp-hero-inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.ezwp-hero-card {
    max-width: 640px;
    background: var(--ezwp-navy-soft);
    color: #fff;
    padding: 36px 42px;
    border-radius: 2px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.ezwp-hero-card h2 {
    margin: 0 0 16px 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.ezwp-hero-card p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px 0;
    color: rgba(255,255,255,0.92);
}

.ezwp-hero-cta {
    display: inline-block;
    color: var(--ezwp-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-size: 14px;
}

.ezwp-hero-cta:hover {
    color: #fff;
    text-decoration: none;
}

/* ---- Entry-header banner (non-home pages) ---- */

.entry-header.ezwp-entry-header {
    background: var(--ezwp-blue);
    color: #fff;
    padding: 44px 0;
    text-align: center;
    position: relative;
}
.entry-header.ezwp-entry-header::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(0,33,71,0.22) 0%, rgba(0,33,71,0) 60%);
    pointer-events: none;
}
.entry-header.ezwp-entry-header .entry-title {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

/* ---- Pricing tier cards (col-options) ---- */

.site-page .wp-block-columns:has(.col-options) { background: var(--ezwp-bg-soft, #f3f7fb); padding: 40px 20px; border-radius: 4px; }

.site-page .col-options {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 0 !important;
    flex: 1 1 240px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.site-page .col-options h6.wp-block-heading {
    color: #fff;
    padding: 14px 10px;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-page .wp-block-columns > .col-options:nth-of-type(1) h6 { background: #3ea4e8; }  /* Lite - light blue */
.site-page .wp-block-columns > .col-options:nth-of-type(2) h6 { background: #0068b3; }  /* Pro - dark blue */
.site-page .wp-block-columns > .col-options:nth-of-type(3) h6 { background: #1ee3a8; }  /* White Label - green */
.site-page .wp-block-columns > .col-options:nth-of-type(4) h6 { background: #2a3f5f; }  /* White Label Custom - dark navy */

.site-page .col-options h2.col-pricing,
.site-page .col-options h2.wp-block-heading {
    font-size: 48px;
    color: #555 !important;
    margin: 18px 0 8px 0;
    font-weight: 300;
}

.site-page .col-options > p { padding: 0 22px; margin: 6px 0; color: var(--ezwp-muted); }

.site-page .col-options hr.wp-block-separator {
    border: 0;
    border-top: 1px solid var(--ezwp-border);
    margin: 18px 22px;
}

.site-page .col-options ul.wp-block-list {
    list-style: none;
    padding: 0 22px 14px;
    margin: 0;
    text-align: left;
    font-size: 14px;
    color: var(--ezwp-ink);
}

.site-page .col-options ul.wp-block-list li { padding: 4px 0; }

.site-page .col-options .wp-block-button {
    margin: 12px auto 20px;
    padding: 0 22px;
}

.site-page .col-options .wp-block-button__link {
    display: inline-block;
    background: var(--ezwp-green);
    color: #fff;
    padding: 10px 22px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-size: 13px;
}
.site-page .col-options .wp-block-button__link:hover { background: var(--ezwp-green-dark); color: #fff; }

/* ---- Main content / article ---- */

#content.site-content { background: #f3f7fb; }
#main.site-main { background: transparent; }

.site-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

.site-page h1, .site-page h2, .site-page h3, .site-page .wp-block-heading {
    color: var(--ezwp-blue);
    font-weight: 400;
}

.site-page h2.wp-block-heading.has-text-align-center,
.site-page .wp-block-heading.has-text-align-center {
    text-align: center;
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 40px;
}

.site-page h3 { font-size: 22px; color: var(--ezwp-navy); }

.site-page img { max-width: 100%; height: auto; }
.site-page figure { margin: 1.5em 0; text-align: center; }

.site-page blockquote {
    border-left: 4px solid var(--ezwp-blue);
    padding-left: 20px;
    color: var(--ezwp-muted);
    margin: 1.5em 0;
    font-style: italic;
}

/* WP blocks */
.site-page .wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 2em 0;
}
.site-page .wp-block-column { flex: 1 1 220px; text-align: center; }
.site-page .wp-block-group { margin: 1.5em 0; }
.site-page .wp-block-image { margin: 1em 0; }
.site-page .has-text-align-center { text-align: center; }
.site-page .has-text-align-left   { text-align: left; }
.site-page .has-text-align-right  { text-align: right; }
.site-page .has-medium-font-size  { font-size: 18px; }

/* ---- Footer ---- */

#colophon.site-footer {
    background: var(--ezwp-navy);
    color: #cfd9e4;
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
}
#colophon.site-footer a { color: #cfd9e4; }
#colophon.site-footer a:hover { color: #fff; }

/* ---- Mobile ---- */

@media (max-width: 720px) {
    #masthead.site-header .cv-container { padding-bottom: 8px; }
    #primary-menu > li > a { padding: 8px 10px; font-size: 12px; }
    .site-page { padding: 28px 16px 40px; }
    .site-page h2.wp-block-heading.has-text-align-center { font-size: 28px; }
    .ezwp-hero { padding: 30px 0 40px; }
    .ezwp-hero-card { padding: 24px 22px; }
    .ezwp-hero-card h2 { font-size: 24px; }
}
