/*!
 * Additions for the trimmed 3-page build (Home / Services / Contact).
 * Everything here uses the theme's own variables so it stays on-palette.
 * Load last, after style.css and fontawesome-free-fix.css.
 */

/* ---- current page in the main menu -------------------------------------- */
.main-menu ul li.active>a,
.vs-mobile-menu ul li.active>a {
    color: var(--theme-color);
}

/* ---- inner page banner ---------------------------------------------------
   header-layout5 is position:absolute on desktop, so the banner carries the
   top padding that keeps the title clear of the overlapping header. */
.breadcumb-wrapper {
    position: relative;
}

.inner-page .breadcumb-content {
    padding: 220px 0 120px 0;
}

@media (max-width: 1199px) {
    .inner-page .breadcumb-content {
        padding: 100px 0 80px 0;
    }
}

/* ---- opening hours list (footer, side menu, contact page) ---------------- */
.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:last-child {
    font-family: var(--title-font);
    color: var(--title-color);
    white-space: nowrap;
}

.footer-widget .hours-list li {
    border-bottom-color: rgba(255, 255, 255, .15);
}

.footer-widget .hours-list li span:last-child {
    color: var(--white-color);
}

.hours-list-lg {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.hours-list-lg li {
    font-size: 18px;
    padding: 16px 0;
}

/* ---- contact detail cards ------------------------------------------------ */
.contact-box {
    height: 100%;
    padding: 45px 30px;
    text-align: center;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all ease .4s;
}

.contact-box:hover {
    border-color: var(--theme-color);
    box-shadow: 0 12px 30px -18px rgba(154, 86, 58, .55);
    transform: translateY(-5px);
}

.contact-box-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto 22px auto;
    font-size: 26px;
    color: var(--theme-color);
    background-color: var(--secondary-color);
    border-radius: 50%;
    transition: all ease .4s;
}

.contact-box:hover .contact-box-icon {
    color: var(--white-color);
    background-color: var(--theme-color);
}

.contact-box-title {
    font-size: 22px;
    margin: 0 0 12px 0;
}

.contact-box-text {
    margin: 0;
    line-height: 30px;
}

/* ---- Luma logo -----------------------------------------------------------
   The template shipped a wide wordmark (261x80). This logo is nearly square
   (367x261), so the theme's max-width rules would make it far too tall --
   size it by height everywhere instead and let the width follow. */
.header-logo img {
    height: 66px;
    width: auto;
}

.vs-menu-wrapper .mobile-logo img {
    height: 92px;
    width: auto;
    max-width: none;
}

.sidemenu-content .footer-logo img {
    height: 84px;
    width: auto;
}

.footer-widget .footer-logo img {
    height: 90px;
    width: auto;
}

@media (max-width: 575px) {
    .header-logo img {
        height: 52px;
    }
}

/* ---- misc ---------------------------------------------------------------- */
.sidemenu-content .social-style3 a {
    margin-right: 8px;
}
