/* =============================== */
/* 📱 Mobile Navigation */
/* =============================== */

.nav-menu-mobile {
    display: none;
}




@media (max-width: 768px) {

    .logo img { 
        max-width: 160px !important; /* or whatever size you want */ 
        height: auto; }

   .float-left { 
    max-width: 100% !important; 
    margin-right: 10px; 
    height: auto; }

    img { 
        max-width: 100% !important; 
        height: auto; }

    /* Fix the header in place */

    .header-top{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
body {
    padding-top: 80px; /* adjust to match your header height */
}



    /* Mobile call icon */
.mobile-call-icon {
    display: inline-block;
    font-size: 1.8rem;
    color: #fff;
    margin-left: 12px;
    text-decoration: none;
}

.mobile-call-icon:active {
    opacity: 0.7;
}


    /* Hide desktop menu */
    .nav-menu {
        display: none !important;
    }

    /* Reduce the logo size */
    .logo img {
    max-width: 160px;
    height: auto;
}


/* Tighten the pjone block */
.header-phone .call-now {
    font-size: 0.8rem;
}

.header-phone .phone-number {
    font-size: 1.4rem;
}

.header-phone .phone-hours {
    font-size: 0.8rem;
}



    /* Show hamburger */
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--color-primary);
        cursor: pointer;
        z-index: 9999;
    }

    /* Mobile menu */
    .nav-menu-mobile {
        display: none;
        flex-direction: column;
        background-color: var(--color-primary);
        width: 100%;
        padding: 0;
        margin: 0;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        z-index: 10000;
    }

    .nav-menu-mobile.show {
        display: flex;
    }

    .nav-menu-mobile li {
        text-align: center;
        width: 100%;
    }

    .nav-menu-mobile li a {
        padding: 1rem;
        color: #fff;
        display: block;
    }
    .header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-toggle,
.mobile-call-icon,
.header-phone {
    order: 2;
}

.logo {
    order: 1;
}





    /* Hide purple bar */
    .header-nav {
        display: none;
    }
}
