@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/League_Spartan/LeagueSpartan-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-dark: #2b2b2b;
    --bs-primary: #ad9207;
    --bs-info: #fff1ac;
    --bs-info-rgb: 255, 241, 172;
    --bs-primary-rgb: 173, 146, 7;
    --bs-link-color: #ad9207;
    --bs-link-hover-color: #8a7506;
    --bs-link-color-rgb: 173, 146, 7;
    --bs-link-hover-color-rgb: 137, 117, 13;
    --bs-primary-bg-subtle: #fdec99;
    --bs-dark-rgb: 22, 22, 22;
    --bs-light-rgb: 246, 246, 246;
    --bs-primary-text-emphasis: #ad9207;
}

.btn-primary {
    --bs-btn-bg: #e0bc09;
    --bs-btn-padding-x: 2.5rem;
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-border-color: #e0bc09;
    --bs-btn-hover-bg: #e5c736;
    --bs-btn-hover-border-color: #e5c736;
    --bs-btn-active-bg: #e5c736;
    --bs-btn-active-border-color: #e5c736;
    --bs-btn-color: #000000;
    --bs-btn-hover-color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.071rem;
    --bs-btn-font-weight: 600;
}

.pagination {
    --bs-pagination-active-bg: #ad9207;
    --bs-pagination-active-border-color: #ad9207;
}

.disabled>.page-link,
.page-link.disabled {
    --bs-pagination-disabled-bg: #f6f6f6;
}

hr {
    border-top-width: 2px;
    width: 50px;
}

h1,
h2,
.h1,
.h2 {
    font-family: 'League Spartan', Helvetica, Arial, sans-serif;
    font-weight: 700;
    --bs-heading-color: #ad9207;
}

h3,
h4,
h5,
h6,
.h3,
.h4,
.h5,
.h6 {
    font-weight: unset;
    font-family: unset;
}

.h1,
h1 {
    font-size: calc(2.75rem + 1.5vw);
}

.h2,
h2 {
    font-size: calc(2.25rem + .9vw);
}

.h4,
h4 {
    font-size: calc(1.175rem + .3vw);
}

body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
}

/* dark strip in page flow — pushes content down, matches header height */
.header-sticky-spacer {
    height: 111px;
}

.header-sticky-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: rgba(22, 22, 22, 0.92);
    transition: background-color 0.3s ease;
}

.navbar-custom {
    padding: 0 48px;
    height: 111px;
}

.navbar-brand-custom .logo-img {
    width: 493px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* mobile: logo shrinks, navbar height reduces */
@media (max-width: 764.98px) {
    .header-sticky-spacer {
        height: 79px;
    }

    .navbar-custom {
        height: 79px;
        padding: 0 16px;
    }

    .navbar-brand-custom .logo-img {
        width: 224px;
    }
}

/* tablet: hamburger visible, height reduces */
@media (min-width: 765px) and (max-width: 1021.98px) {
    .header-sticky-spacer {
        height: 79px;
    }

    .navbar-custom {
        height: 79px;
    }
}

/* =====================================================================
   RESPONSIVE OVERFLOW BEHAVIOR
     >= 1022px : desktop nav shown, hamburger hidden
     1090-1199px : last nav item moves into "More"
     1022-1089px : second-to-last item also moves into "More"
     <  1022px : desktop nav hidden, hamburger + off-canvas drawer
===================================================================== */

.desktop-nav-container {
    display: none;
}

@media (min-width: 1022px) {
    .desktop-nav-container {
        display: flex;
    }
}

.navbar-custom .nav-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

.navbar-custom .nav-link:hover {
    color: rgba(247, 247, 247, 0.5);
}

.navbar-custom .nav-link.active {
    font-weight: 800;
    color: #ffffff;
}

.nav-more {
    display: none;
}

.nav-more .dropdown-menu {
    background-color: var(--brand-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-more .dropdown-item {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.nav-more .dropdown-item:hover,
.nav-more .dropdown-item:focus {
    color: rgba(247, 247, 247, 0.5);
    background-color: transparent;
}

.nav-more .nav-link.show {
    color: rgba(247, 247, 247, 0.5);
}

.nav-more .nav-link::after {
    transition: transform 0.2s ease;
}

.nav-more .nav-link.show::after {
    transform: rotate(180deg);
}

.dropdown-item-overflow-1,
.dropdown-item-overflow-2 {
    display: none;
}

/* 1090-1199px: last item overflows into More */
@media (max-width: 1199.98px) {
    .nav-more {
        display: list-item;
    }

    .nav-item-overflow-1 {
        display: none;
    }

    .dropdown-item-overflow-1 {
        display: block;
    }
}

/* below 1090px: second-to-last item also overflows into More */
@media (max-width: 1089.98px) {
    .nav-item-overflow-2 {
        display: none;
    }

    .dropdown-item-overflow-2 {
        display: block;
    }
}

.hamburger-toggle:focus {
    box-shadow: none;
}

.hamburger-icon {
    color: #ffffff;
    transition: color 0.2s ease;
}

.hamburger-toggle:hover .hamburger-icon {
    color: var(--bs-primary);
}

@media (min-width: 1022px) {
    .hamburger-toggle {
        display: none;
    }
}

/* mobile off-canvas drawer */
.offcanvas-custom {
    background-color: var(--brand-dark);
    width: 100vw !important;
    max-width: 100vw !important;
}

.offcanvas-custom .nav-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0;
}

.offcanvas-custom .nav-link:hover {
    color: var(--bs-primary);
}

.offcanvas-custom .nav-link.active {
    font-weight: 800;
    color: #ffffff;
}

.offcanvas-close-btn {
    transition: color 0.2s ease;
}

.offcanvas-close-btn:hover {
    color: var(--bs-primary);
}

.offcanvas-close-btn:focus {
    outline: none;
}

/* footer */
.site-footer-link {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.site-footer-link:hover {
    color: rgba(247, 247, 247, 0.5);
}

.site-footer-copyright {
    font-size: 14px;
}

/* =====================================================================
   HERO SECTION
===================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: var(--brand-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(35, 34, 34, 0.36);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 2rem 1.5rem;
    max-width: 900px;
}

.hero-heading {
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.hero-subheading {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* =====================================================================
   BLOG LISTING PAGE
===================================================================== */

.blog-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13) !important;
}

.blog-card-img {
    height: 320px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

.blog-body h2,
.blog-body h3,
.blog-body h4 {
    margin: 2rem 0 0 0 !important;
}

.blog-body h2 {
    font-size: calc(1.8rem + .9vw);
}

.recent-post img {
    width: 125px;
    height: 125px;
    object-fit: cover;
}

.service-grid img {
    border-radius: 15px;
}

.vertical-section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .vertical-section-columns {
        position: relative;
    }

    .vertical-section-columns::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-left: 1px solid var(--bs-border-color);
        pointer-events: none;
    }

    .vertical-section-columns-3 {
        position: relative;
    }

    .vertical-section-columns-3::before,
    .vertical-section-columns-3::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        border-left: 1px solid var(--bs-border-color);
        pointer-events: none;
    }

    .vertical-section-columns-3::before {
        left: 33.3333%;
    }

    .vertical-section-columns-3::after {
        left: 66.6667%;
    }
}

.social-links .facebook-icon {
    width: 52px;
    height: 52px;
}

.social-links .facebook-icon i {
    font-size: 42px;
    padding: 10px;
}

.social-links .linkedin-icon i {
    font-size: 36px;
}

.social-links .linkedin-icon {
    padding: 8px 3px;
    vertical-align: middle;
    line-height: 1rem;
}

.social-links .yelp-icon i {
    font-size: 36px;
}

.social-links .yelp-icon {
    padding: 8px 3px;
    vertical-align: middle;
    line-height: 1rem;
}

.social-links .whatsapp-link {
    background-color: #3d4f5c;
}

.social-links .whatsapp-link>span {
    width: 20px;
    height: 20px;
    background-color: #43c553;
}

.social-links .whatsapp-link>span>i {
    font-size: 24px;
}


.facebook-icon,
.facebook-icon:hover,
.facebook-icon:active {
    background-color: rgb(24, 119, 242) !important;
    color: #fff !important;
}

.linkedin-icon,
.linkedin-icon:hover,
.linkedin-icon:active {
    background-color: #0072b1 !important;
    color: #fff !important;
}

.yelp-icon,
.yelp-icon:hover,
.yelp-icon:active {
    background-color: rgb(211, 35, 35) !important;
    color: #fff !important;
}

.accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
}

.accordion {
    --bs-accordion-btn-padding-y: 1.35rem;
    --bs-accordion-active-bg: unset;
    --bs-accordion-btn-focus-box-shadow: unset;
    --bs-accordion-bg: unset;
}

.accordion-button {
    font-size: 1.45rem;
}

.policy-body {
    font-size: 16px !important;
    max-width: 840px;
    color: #5e5e5e
}

.policy-body h2 {
    margin: 2.5rem auto !important;
    font-weight: 400 !important;
}

.policy-body li>p {
    margin-bottom: 0 !important;
}

.text-bg-dark .text-muted {
    color: #d7d7d7 !important;
}

.text-bg-dark {
    --bs-link-color-rgb: 255, 193, 7;
    --bs-link-hover-color-rgb: 255, 215, 95;
    color: #959595 !important
}

.text-bg-dark h2,
.text-bg-dark .h2 {
    --bs-heading-color: #ffc107;
}

.text-bg-dark h3,
.text-bg-dark .h3 {
    color: #fff !important;
}

.py-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.blog-body .rte-infromation h1,
.blog-body .rte-infromation h2,
.blog-body .rte-infromation h3,
.blog-body .rte-infromation h4 {
    margin: 1rem 0 1.25rem 0 !important;
}

.hours-summary-toggle:not(.collapsed) {
    display: none !important;
}

.text-with-image-wrapper h2,
.text-with-image-wrapper h3,
.text-with-image-wrapper h4 {
    margin: 2rem 0 0.8rem 0 !important;
}


.text-with-side-image {
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .text-with-side-image {
        min-height: 420px;
    }
}

pre {
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 1.5em 0;
}

pre code {
    font-family: inherit;
    white-space: pre;
}

/* inline `code` snippets outside <pre> */
p code,
li code,
td code {
    background: #f1f1f1;
    color: #c7254e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* used to highlight code snippet */
.word-hl {
    background: #4b4a16;
    border-radius: 3px;
    padding: 0 3px;
}

.blog-body figure p {
    margin: 0;
}

.blog-body figcaption {
    text-align: center;
    background-color: gainsboro;
    padding: 0.4rem 0;
}

blockquote {
    margin-left: 0.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid #bfbfbf;
}

.umb-embed-holder {
    display: block;
    max-width: 100%;
}

.umb-embed-holder iframe {
    display: block;
    max-width: 100%;
}