/* ======================================
   BODY
====================================== */

html {
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-body);
    color: var(--content-text);
    background-color: var(--content-bg);
}

/* ======================================
   HEADINGS
====================================== */

h1 {
    color: var(--color-heading);
    font-size: var(--font-size-h1);
    font-weight: 700;
}

h2 {
    color: var(--color-heading);
    font-size: var(--font-size-h2);
    font-weight: 600;
}

h3 {
    color: var(--color-heading);
    font-size: var(--font-size-h3);
    font-weight: 600;
}

/* ======================================
   HEADER
====================================== */

header {
    background-color: var(--header-bg);
    color: var(--header-text);
}

/* ======================================
   MENU
====================================== */

#mainMenu {
    background-color: var(--menu-bg);
}

    #mainMenu .k-link {
        color: var(--menu-text);
        font-family: var(--font-menu);
        font-weight: 600;
    }

/* ======================================
   BUTTONS
====================================== */

.btn-primary {
    background-color: var(--button-bg);
    border-color: var(--button-bg);
    color: var(--button-text);
}

/* ======================================
   CARDS
====================================== */

.card {
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

.service-card {
    transition: transform .25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
    }


/* ======================================
   SERVICE IMAGES
====================================== */

.service-image-wrapper {
    padding: 15px;
}

.service-image {
    width: 100%;
    height: var(--service-image-height);
    object-fit: cover;
    border-radius: var(--service-image-radius);
}

.service-image {
    width: 100%;
    height: var(--service-image-height);
    object-fit: cover;
    border-radius: var(--service-image-radius);
    transition: transform .3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.04);
}

/* ======================================
   FOOTER
====================================== */

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: var(--font-footer);
}

    footer h5 {
        font-weight: 600;
    }

/* ======================================
   LISTS
====================================== */

ol li,
ul li {
    margin-bottom: 8px;
}

/* ======================================
   PARAGRAPHS
====================================== */

p {
    line-height: 1.7;
}



/* ======================================
   PAGE TEMPLATE
====================================== */

.page-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.page-title {
    margin-bottom: 2rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.service-card {
    transition: .2s ease-in-out;
}

    .service-card:hover {
        transform: translateY(-4px);
    }

.plan-price {
    color: var(--color-heading);
    font-weight: 700;
}

.service-list {
    padding-left: 1.5rem;
}



/* ======================================
   HEADER
====================================== */

.site-header {
    background-color: var(--header-bg);
    color: var(--header-text);
}

.site-logo {
    color: var(--header-logo-color);
    font-family: var(--font-main);
    font-weight: 700;
    text-decoration: none;
}

    .site-logo:hover {
        color: var(--header-logo-color);
    }

/* ======================================
   MENU
====================================== */

#mainMenu {
    background-color: var(--menu-bg);
    border: none;
}

    #mainMenu .k-link {
        color: var(--menu-text);
        font-family: var(--font-menu);
        font-weight: 600;
    }

        #mainMenu .k-link:hover {
            color: var(--menu-hover);
        }

/* ======================================
   LANGUAGE DROPDOWN
====================================== */

.k-dropdownlist {
    background-color: var(--lang-bg);
    color: var(--lang-text);
}

/* ======================================
   FOOTER
====================================== */

.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--footer-border);
}

    .site-footer h5 {
        color: var(--footer-title);
        font-weight: 600;
    }

    .site-footer hr {
        border-color: var(--footer-border);
    }


/* =========================
   HEADER LAYOUT
========================= */

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* =========================
   HAMBURGER BUTTON
========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--header-text);
}

/* =========================
   DESKTOP NAV
========================= */

.header-nav {
    display: flex;
    align-items: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .header-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--header-bg);
        padding: 1rem;
        flex-direction: column;
        box-shadow: 0 10px 25px rgba(0,0,0,.1);
        z-index: 1000;
    }

        .header-nav.open {
            display: flex;
        }

    #mainMenu {
        flex-direction: column;
    }

        #mainMenu .k-menu {
            flex-direction: column;
        }
}





/*


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}*/