@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
</style>


/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background: #222;
    color: white;
    position: fixed;
    padding-top: 20px;
}
.sidebar a {
    color: white;
    padding: 15px;
    display: block;
    text-decoration: none;
}
.sidebar a:hover {
    background: #333;
}
.content {
    margin-left: 250px;
    padding: 20px;
}


.mobile-nav i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .content {
        margin-left: 0;
        padding: 10px;
    }
   
}

        /* Basic styling for the flipbook slider container */
        .swiper {
            width: 90%;
            max-width: 450px!important;
            margin: 20px auto;
            border: 1px solid #ddd;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            background: #fff;
        }
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        /* Style for flipbook images */
        .flipbook-img {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain;
            cursor: pointer;
        }
        /* Lightbox scroll-blocking using :has() (supported in Chrome, Safari, Opera) */
        body:has(#lightboxOverlay[style*="display: block"]) {
            overflow: hidden;
        }

    
    
        /* Modern styling for Google Translate Widget */
        #google_translate_element {
           
            top: 10px;
            right: 10px;
            z-index: 2;
            background: white;
            padding: 4px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
        }

        /* Hide Google branding and unnecessary elements */
        .goog-te-gadget {
            font-family: 'Arial', sans-serif !important;
            font-size: 0 !important; /* Hide all text */
        }

        .goog-te-gadget span {
            display: none !important;
        }

        .goog-te-gadget .goog-te-combo {
            color: #333;
            border: 1px solid #e0e0e0;
            padding: 6px 24px 6px 12px;
            border-radius: 8px;
            font-size: 14px;
            line-height: 1.5;
            height: 36px;
            background: white;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
            background-size: 16px;
            transition: all 0.2s ease;
        }

        .goog-te-gadget .goog-te-combo:hover {
            border-color: #999;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .goog-te-gadget .goog-te-combo:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
        }

        /* Hide Google Translate top bar */
        .goog-te-banner-frame {
            display: none !important;
        }

        body {
            top: 0 !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            #google_translate_element {
                top: 5px;
                right: 5px;
            }

            .goog-te-gadget .goog-te-combo {
                font-size: 13px;
                padding: 4px 20px 4px 8px;
                height: 32px;
            }
        }

        /* Animation for widget appearance */
        @keyframes slideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        #google_translate_element {
            animation: slideIn 0.3s ease-out;
        }
    

/* ========== Modern, Soft Tabs Styling ========== */

/* Remove the default border under the tab list */
.nav-tabs {
  border-bottom: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem; /* For spacing between tabs if supported in your Bootstrap version */
}

/* 
   Base tab styles:
   - Soft background
   - Slightly rounded corners
   - Subtle text color
*/
.nav-tabs .nav-link {
  background-color: #f8f9fa;    /* Light grey background */
  border: 1px solid transparent;
  border-radius: 0.375rem;      /* Slightly rounded corners (6px) */
  color: #495057;               /* Medium-dark text */
  font-weight: 500;
  padding: 0.6rem 1rem;         /* Comfortable spacing */
  transition: 
    background-color 0.3s ease, 
    box-shadow 0.3s ease, 
    border-color 0.3s ease, 
    color 0.3s ease;
  margin-bottom: -1px;          /* Ensures the active tab's border transitions smoothly */
}

/* Hover State: subtle background shift */
.nav-tabs .nav-link:hover {
  background-color: #eef2f6;
  text-decoration: none; /* Remove any underline from anchor hover */
}

/* Active State:
   - Slight shadow around the tab 
   - More pronounced border 
   - White background to "pop"
*/
.nav-tabs .nav-link.active {
  background-color: #ffffff;    
  border: 1px solid #d7dae0;    /* Light border around active tab */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #0d6efd;               /* (Optional) use the Bootstrap primary color for text */
  position: relative;
  z-index: 1;                   /* Ensures active tab is on top of adjacent tabs */
}

/* Focus State: highlight tab outline for accessibility (keyboard tabbing) */
.nav-tabs .nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25); /* Use a faint outline in the primary color */
}

/* ========== Responsive Adjustments ========== */
/* For screens under 576px, allow tabs to wrap or scroll horizontally */
@media (max-width: 575.98px) {
  .nav-tabs {
    flex-wrap: nowrap;       /* Keep them on one line but allow horizontal scrolling */
    overflow-x: auto;        /* Horizontal scroll if too many tabs */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .nav-tabs .nav-item {
    flex: 0 0 auto; /* Let each tab keep its natural width */
  }

  .nav-tabs .nav-link {
    white-space: nowrap; /* Prevent text from wrapping */
    margin-bottom: 0;    /* Remove negative bottom margin on mobile */
  }
}
body.business-type-restaurant.template-template2 section#hero {
    height: 100vh !important;
}

@media screen and (max-width:768px) {
div#google_translate_element {
    width: 65px;
    text-align: center;
    padding: 10px;
    backdrop-filter: unset;
}
	.t2-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 300px!important;
}
}