/* Custom Page Styles for T-Menu Theme (Light Mode) */

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --card: #ffffff;
    --text: #000000;
    /* Black */
    --muted: #4b5563;
    /* Gray-600 */
    --brand: #f97316;
    --brand2: #ea580c;
    --border: #e5e7eb;
    /* Gray-200 */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --radius: 16px;
    --max: 1120px;
    --pad: 24px;
    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* Base Body Style */
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

/* --- FORCE WHITE BACKGROUND (override theme dark wrappers) --- */
html,
body {
    background: #fff !important;
    color: #000 !important;
}

/* common WordPress theme wrappers that often carry the dark background */
#page,
.site,
.site-content,
.content-area,
.entry-content,
main {
    background: #fff !important;
}

/* ensure your sections stay white even if parent has dark bg */
.hero,
.section {
    background: #fff !important;
}

/* --- FORCE HEADER BLACK --- */
header,
.site-header {
    background-color: #000000 !important;
    background: #000000 !important;
}

a {
    color: inherit;
    text-decoration: none
}

a:hover {
    opacity: .85
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

/* Hero & Typography */
.hero {
    padding: 60px 0 40px;
}

@media (min-width: 640px) {
    .hero {
        padding: 70px 0 50px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 0 60px;
    }
}

.kicker {
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    margin-bottom: 16px;
}


.h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (max-width: 520px) {
    .h1 {
        font-size: 36px
    }
}

.lede {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    max-width: 62ch;
}

@media (min-width: 640px) {
    .lede {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .lede {
        font-size: 18px;
    }
}

/* Buttons */
.ctaRow {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap
}

.row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px
}

/* Alias */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fdfdfd;
    color: var(--text);
    font-weight: 650;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

@media (min-width: 640px) {
    .btn {
        padding: 12px 14px;
        font-size: 15px;
    }
}

.btn.primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.btn.ghost {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Badges & Tags */
.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f3f4f6;
    /* Gray-100 */
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f3f4f6;
    color: var(--muted);
}

/* Grids & Layouts */
.heroGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .heroGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .heroGrid {
        gap: 20px;
    }
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

@media (max-width: 900px) {
    .grid3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .grid3 {
        gap: 16px;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width:900px) {
    .grid {
        grid-template-columns: 1fr
    }
}

.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

@media (max-width:900px) {
    .two {
        grid-template-columns: 1fr
    }
}

/* Cards & Placeholders */
.card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    /* Very subtle border */
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    /* Soft shadow */
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
    .card {
        padding: 28px;
    }
}

@media (min-width: 1024px) {
    .card {
        padding: 32px;
    }
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.card p {
    margin: 0;
    color: #6b7280;
    /* Gray-500 for better matching the image */
    font-size: 15px;
    line-height: 1.6;
}

/* If we want to support icons in the future or via classes */
.card-icon {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
    /* Space between icon and title */
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.placeholder {
    border-radius: var(--radius);
    border: 2px dashed var(--border);
    background: #f9fafb;
    /* Gray-50 */
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phText {
    position: relative;
    text-align: center;
    padding: 18px;
    color: #9ca3af;
    /* Gray-400 */
    font-weight: 650;
}

.smallPh {
    min-height: 210px
}


/* Sections & Utilities */
.section {
    padding: 40px 0;
}

@media (min-width: 640px) {
    .section {
        padding: 48px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 56px 0;
    }
}

.sectionTitle {
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 700;
}

@media (min-width: 640px) {
    .sectionTitle {
        font-size: 26px;
    }
}

@media (min-width: 1024px) {
    .sectionTitle {
        font-size: 28px;
    }
}

.sectionDesc {
    color: var(--muted);
    max-width: 80ch;
    margin: 0 0 24px;
    font-size: 18px;
}

.section h2 {
    margin: 0 0 12px;
    font-size: 24px;
    color: var(--text);
    font-weight: 700;
}

.hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

.mini {
    font-size: 13px
}

.breadcrumb {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 10px;
    font-weight: 500
}

.breadcrumb a {
    color: var(--muted)
}

.breadcrumb a:hover {
    color: var(--text);
    text-decoration: underline;
}

/* Callout */
.callout {
    border-radius: var(--radius);
    border: 1px solid var(--brand);
    /* Orange border for callout */
    background: #fff7ed;
    /* Orange-50 */
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.callout h3 {
    margin: 0 0 6px;
    color: var(--text);
    font-weight: 700;
}

.callout p {
    margin: 0;
    color: var(--brand2);
    max-width: 80ch
}

/* Darker orange text */

/* Lists */
.metaList {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--muted)
}

.metaList li {
    margin: 8px 0;
    list-style-type: disc;
}

.list {
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--muted)
}

.list li {
    margin: 8px 0;
    list-style-type: disc;
}

/* FAQ */
.faq details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 16px 20px;
    margin: 12px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq summary {
    cursor: pointer;
    font-weight: 650;
    color: var(--text);
}

.faq p {
    margin: 12px 0 0;
    color: var(--muted)
}