﻿.drawer-logo-container {
    padding: 16px 0;
    text-align: center;
}

.drawer-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 0 auto;
}

.background-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.call-now-btn:hover {
    background-color: #FDDC01; /* exact hover yellow */
    color: #ffffff;
    border-color: #FDDC01;
}

/* DLG header */
/*——————————————————
  1. Base layout & containers
——————————————————*/

.site-header.header-main-layout-1 {
    position: relative;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.ast-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ast-flex {
    display: flex !important;
}

.ast-builder-grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 1rem;
}

.site-header-section {
    align-items: center;
    display: flex;
}

/*——————————————————
  2. Above‐header bar
——————————————————*/

.ast-above-header-bar {
    background-color: #f8f9fa; /* light grey default */
    padding: 0.5rem 0;
}

.ast-header-button-1 .ast-builder-button-wrap {
    display: inline-flex;
    align-items: center;
}

.ast-custom-button-link .ast-custom-button {
    background-color: #0073e6;
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.ast-header-button-1 .menu-link {
    margin-left: 1rem;
    font-size: 0.875rem;
    color: #0073e6;
    text-decoration: none;
}

/*——————————————————
  3. Primary header bar (desktop)
——————————————————*/

.ast-main-header-wrap {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.ast-primary-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo-img img.custom-logo {
    max-height: 4rem;
    width: auto;
    display: block;
}

.ast-has-mobile-header-logo .ast-mobile-header-logo {
    display: none;
}

/* desktop menu */
.main-header-bar-navigation {
    display: flex;
}

.main-header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

    .main-header-menu .menu-item {
        margin-left: 1.5rem;
    }

    .main-header-menu .menu-link {
        text-decoration: none;
        color: #333;
        font-size: 0.95rem;
        font-weight: 500;
    }

/*——————————————————
  4. Mobile header toggle & menu
——————————————————*/

#ast-desktop-header {
    display: block;
}

#ast-mobile-header {
    display: none;
}

@media (max-width: 768px) {
    #ast-desktop-header {
        display: none;
    }

    #ast-mobile-header {
        display: block;
    }
}

/* mobile bar */
.ast-mobile-header-wrap .ast-primary-header-bar {
    padding: 0.75rem 1rem;
}

/* toggle button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

    .menu-toggle .ast-menu-svg {
        display: inline;
    }

    .menu-toggle .ast-close-svg {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .ast-menu-svg {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .ast-close-svg {
        display: inline;
    }

/* the slide‐down mobile menu */
.ast-mobile-header-content {
    display: none;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.menu-toggle[aria-expanded="true"] ~ .ast-mobile-header-content {
    display: block;
}

#ast-hf-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
}

    #ast-hf-mobile-menu .menu-item {
        margin-bottom: 0.5rem;
    }

    #ast-hf-mobile-menu .menu-link {
        text-decoration: none;
        color: #333;
        font-size: 1rem;
    }

/*——————————————————
  5. Utility & spacing tweaks
——————————————————*/

.submenu-with-border .menu-link {
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.submenu-with-border .menu-item:hover .menu-link {
    border-color: #0073e6;
}

.stack-on-mobile {
    /* on mobile, menu items stack vertically (already covered above) */
}
