/* =============================
   Responsive Styles
   ============================= */

/* --------- Large Tablets & Small Desktops --------- */
@media (max-width: 992px) {
    .nav-list {
        gap: 30px;
    }

    .header-logo img {
        height: 50px;
    }

    .nav-item a {
        font-size: 16px;
    }
}

/* --------- Tablets / Medium Screens --------- */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-hours,
    .footer-info {
        width: 100%;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* --------- Mobile Devices --------- */
@media (max-width: 768px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .info-sectionwhite {
        padding: 40px 16px;
    }

    .info-content {
        padding: 0 16px;
    }

    .home-order-cta {
        padding: 0 16px;
    }

    .home-image-row {
        padding: 0 16px 40px;
    }



    .header-logo {
        visibility: hidden;
    }

    .mobile-menu-btn {
        display: block;
    }

    .map-wrapper {
        height: 300px;
    }

    .subhero-background img {
        content: url("../images/SubHeroBannerImageMobile.jpg");
        object-position: center top;
    }

    .about-section {
        max-height: 400px;
    }

    .about-background img {
        content: url("../images/Banner2Mobile.jpg");
        object-position: center;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .nav-item a {
        font-size: 20px;
    }

    .header-social {
        margin: 30px 0 0 0;
    }

    .header-inner {
        gap: 20px;
    }

    .hero-section,
    .about-section {
        height: 90vh;
        min-height: 500px;
    }

    .info-content h2 {
        font-size: 28px;
    }

    .hours p,
    .location p {
        font-size: 18px;
    }

    .hours-weekdays,
    .hours-weekends {
        font-size: 22px !important;
    }

    .store-info-section {
        flex-direction: column;
    }

    .store-info-left,
    .store-info-right {
        width: 100%;
    }

    .store-info-right {
        text-align: left;
        margin-top: 30px;
    }

    .store-address-divider {
        margin-left: 0;
    }

    .home-image-row {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 16px 40px;
    }

    .home-image-row img {
        max-width: 100%;
        height: auto;
    }

    .footer-inner {
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-hours,
    .footer-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-divider {
        margin: 0 auto;
    }


    .site-footer {
        position: relative;
        z-index: 10;
        /* Ensure footer is above other content */
    }

    .hero-section {
        overflow: hidden;
        /* Prevent image overflow */
        position: relative;
    }
}

/* --------- Small Mobile Devices --------- */
@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }

    .map-wrapper {
        height: 240px;
    }

    .header-logo img {
        height: 40px;
    }

    .hero-section,
    .about-section {
        height: 70vh;
        min-height: 400px;
    }

    .info-content h2 {
        font-size: 24px;
    }

    .hours p,
    .location p {
        font-size: 16px;
    }

    .hours-weekdays,
    .hours-weekends {
        font-size: 20px !important;
    }
}