@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');
:root {
    --md-primary-fg-color: #111111;
    --md-primary-fg-color--light: #2f2f2f;
    --md-primary-fg-color--dark: #000000;

    --md-accent-fg-color: #e99233;
    --md-accent-fg-color--transparent: rgba(233, 146, 51, 0.12);

    --md-typeset-a-color: #c97119;
}

/* =========================================================
   Global layout and FieldOps branding
   ========================================================= */

/* =========================================================
   Header and navigation
   ========================================================= */

.md-header {
    background-color: #ffffff;
    color: #111111;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: none;
}

/* Site title */
.md-header__title,
.md-header__topic {
    color: #111111;
}

/* Header icons */
.md-header .md-icon {
    color: #111111;
}

/* Search icon and input */
.md-search__icon {
    color: #111111;
}

.md-search__input {
    color: #111111;
}

.md-search__input::placeholder {
    color: #666666;
}

/* Navigation tabs, if enabled */
.md-tabs {
    background-color: #ffffff;
    color: #111111;
    border-bottom: 1px solid #eeeeee;
}

.md-tabs__link {
    color: #333333;
    opacity: 1;
}

.md-tabs__link:hover,
.md-tabs__link--active {
    color: #e99233;
}

/* Mobile navigation button */
.md-header__button {
    color: #111111;
}

/* GitHub or external source link */
.md-source {
    color: #111111;
}
/* Search field */
.md-search__form {
    background-color: transparent;
    box-shadow: none;
}

.md-search__input {
    background-color: transparent;
    color: #111111;
}

.md-search__input:hover,
.md-search__input:focus {
    background-color: transparent;
}

.md-search__input::placeholder {
    color: #666666;
    opacity: 1;
}

/* =========================================================
   Footer
   ========================================================= */

.md-footer {
    background-color: #fafafa;
    color: #555555;
    border-top: 1px solid #e8e8e8;
}

.md-footer-meta {
    background-color: #fafafa;
}

.md-copyright {
    color: #666666;
}

.md-footer a {
    color: #555555;
}

.md-footer a:hover {
    color: #e99233;
}

/* Previous / Next navigation */
.md-footer__link {
    color: #111111;
}

.md-footer__title {
    color: #111111;
}

.md-footer__direction {
    color: #666666;
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4,
.md-typeset h5,
.md-typeset h6 {
    font-family: 'Sora', sans-serif;
    color: #111111;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.md-typeset h1 {
    margin-bottom: 1.5rem;
}

.md-typeset a {
    color: #c97119;
}

.md-typeset a:hover {
    color: #e99233;
}

.md-typeset code {
    border-radius: 4px;
}

.md-typeset .admonition,
.md-typeset details {
    border-radius: 6px;
}

/* =========================================================
   Homepage introductory content
   ========================================================= */

.md-typeset > p:first-of-type {
    max-width: 48rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #454545;
}

/* =========================================================
   Homepage action buttons
   ========================================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 3rem;
}

.hero-actions p {
    display: contents;
}

.hero-actions .md-button {
    margin: 0;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1.2;
}

/* Primary orange button */
.hero-actions .md-button--primary {
    background-color: #e99233;
    border-color: #e99233;
    color: #ffffff !important;
}

.hero-actions .md-button--primary:hover,
.hero-actions .md-button--primary:focus {
    background-color: #d98025;
    border-color: #d98025;
    color: #ffffff !important;
}

/* Secondary outlined button */
.hero-actions .md-button:not(.md-button--primary) {
    background-color: transparent;
    border-color: #e99233;
    color: #d97817;
}

.hero-actions .md-button:not(.md-button--primary):hover,
.hero-actions .md-button:not(.md-button--primary):focus {
    background-color: rgba(233, 146, 51, 0.08);
    border-color: #e99233;
    color: #111111;
}

/* =========================================================
   Homepage feature cards
   ========================================================= */

.md-typeset .grid.fieldops-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.md-typeset .grid.fieldops-cards > ul {
    display: contents;
}

/* Individual card */
.md-typeset .grid.fieldops-cards > ul > li {
    min-height: 230px;
    margin: 0;
    padding: 1.75rem;

    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: none;

    /* Keep card content left aligned */
    text-align: left;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Card hover */
.md-typeset .grid.fieldops-cards > ul > li:hover {
    border-color: rgba(233, 146, 51, 0.65);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   Large orange card icons
   ========================================================= */

/*
 * MkDocs Material renders the icon as a span containing an SVG.
 * Center only the icon — not the card text.
 */
.md-typeset .fieldops-card-icon {
    display: block;
    width: 4.5rem !important;
    height: 4.5rem !important;
    margin: 0 auto 1.25rem !important;
    color: #e99233 !important;
}

/* Explicitly size the generated SVG */
.md-typeset .fieldops-card-icon svg {
    display: block;
    width: 4.5rem !important;
    height: 4.5rem !important;
    fill: currentColor !important;
}

/* =========================================================
   Card typography
   ========================================================= */

/* Card titles */
.md-typeset .fieldops-cards strong {
    display: block;
    margin: 0 0 0.5rem;

    font-family: 'Sora', sans-serif;
    color: #111111;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;

    text-align: left;
}

/* Card paragraphs */
.md-typeset .fieldops-cards p {
    margin: 0.5rem 0;
    color: #3f3f3f;
    line-height: 1.6;

    text-align: left;
}

/* Card links */
.md-typeset .fieldops-cards a {
    color: #d97817;
    font-weight: 500;
    text-decoration: none;

    text-align: left;
}

.md-typeset .fieldops-cards a:hover {
    color: #e99233;
}

/* Remove list markers */
.md-typeset .fieldops-cards li::marker {
    content: "";
}

/* =========================================================
   Note blocks
   ========================================================= */

.md-typeset .admonition.note,
.md-typeset details.note {
    border-color: rgba(233, 146, 51, 0.45);
}

.md-typeset .note > .admonition-title,
.md-typeset .note > summary {
    background-color: rgba(233, 146, 51, 0.1);
}

.md-typeset .note > .admonition-title::before,
.md-typeset .note > summary::before {
    background-color: #e99233;
}

/* =========================================================
   Responsive behaviour
   ========================================================= */

@media screen and (max-width: 760px) {

    .hero-actions {
        gap: 0.65rem;
        margin-bottom: 2.25rem;
    }

    .hero-actions .md-button {
        width: 100%;
        text-align: center;
    }

    /* One card per row */
    .md-typeset .grid.fieldops-cards {
        grid-template-columns: 1fr;
    }

    .md-typeset .grid.fieldops-cards > ul > li {
        min-height: auto;
        padding: 1.5rem;
    }

    /* Slightly smaller, but still prominent, icons on mobile */
    .md-typeset .fieldops-card-icon,
    .md-typeset .fieldops-card-icon svg {
        width: 3.75rem !important;
        height: 3.75rem !important;
    }

    .md-typeset .fieldops-card-icon {
        margin-bottom: 1rem !important;
    }
}
a.md-button.md-button--primary.fieldops{
    background-color: #e99233;
    border-color: #e99233;
    color: #ffffff !important;
}
/* Hide the logo/book icon in the header */
.md-header__button.md-logo {
    display: none;
}
/* Increase header height */
.md-header {
    min-height: 4rem;
}

/* Match the inner header container */
.md-header__inner {
    min-height: 4rem;
}

/* Larger responsive site title */
.md-header__title,
.md-header__topic {
    font-family: 'Sora', sans-serif;
    font-weight: 800 !important;
}

.md-header__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
	margin-left:12px!important;
}
.md-header__title .brand-accent {
    color: #E99233;
}
/* Hide the logo on desktop and mobile */
.md-header__button.md-logo,
.md-nav__button.md-logo {
    display: none !important;
}

/* Keep the responsive header white */
.md-header,
.md-header[data-md-state="shadow"] {
    background-color: #ffffff !important;
    color: #111111 !important;
}

/* Mobile menu and header buttons */
.md-header__button,
.md-header__button.md-icon {
    color: #111111 !important;
}

/* Remove dark mobile navigation header */
.md-nav--primary .md-nav__title {
    background-color: #ffffff !important;
    color: #111111 !important;
    box-shadow: none !important;
}

/* Hide logo inside the mobile navigation drawer */
.md-nav--primary .md-nav__title .md-logo {
    display: none !important;
}

/* Keep mobile drawer title area light */
.md-nav--primary .md-nav__title[for="__drawer"] {
    background-color: #ffffff !important;
    color: #111111 !important;
}

/* Remove any inherited dark overlay behind the mobile title */
.md-nav--primary .md-nav__title::before {
    background: none !important;
}

/* Keep search and menu icons dark */
.md-header .md-icon,
.md-search__icon {
    color: #111111 !important;
}
@media screen and (max-width: 76.234375em) {
    .md-header__button.md-logo,
    .md-nav__button.md-logo,
    .md-nav--primary .md-logo {
        display: none !important;
        width: 0 !important;
        min-width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .md-header__title {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .md-header__inner {
        gap: 0.4rem;
    }

    .md-nav--primary .md-nav__title {
        min-height: auto !important;
        padding: 1.6rem 1rem !important;
    }
}