:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --accent-color: #e74c3c;
  --text-color: #333;
  --background-dark: #040404;
  --background-light: #0f0f0f;
  --default-border-color: #6c6c6c;
}

body {
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    background-color: var(--background-dark);
    background: linear-gradient(180deg, var(--background-dark), var(--background-light));
    color: var(--text-color);
}

body, * {
  font-family: "Raleway", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  
  font-family: "ZCOOL XiaoWei", sans-serif !important;
  font-style: normal;
}

header {
    background: transparent;
    color: gold;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: #00000085;
}

.search-container {
    text-align: center;
    margin: 15px;
    margin: 0px;
    display: flex;
    justify-content: center;
}

#searchBar {
    width: 100%;
    padding: 8px 10px 10px 10px;
    font-size: 16px;
    border-radius: 50px;
    background-color: #2a2a2a99;
    color: #888;
    border: 1px solid #6c6c6c85;
    color: white;
}

#searchBar:focus,#searchBar:focus-visible,#searchBar:active {
    
    border: 1px solid gold;
    outline: none;
    color: gold;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 10px 0px 10px;
    background-color: var(--background-dark);
    display: block;
    /*! flex-direction: column; */
    /*! flex-wrap: wrap; */
    background-color: #00000085;
}

.category-tabs {
    display: flex;
    background: transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    
    overflow-x: auto; /* Enables scrolling */
    white-space: nowrap; /* Prevents wrapping */
    
}

.category-tab {
    flex: none;
    background-color: transparent;
    color: gold;
    border: none;
    padding: 10px 15px;
    margin: 0px 10px;
    /*! border-radius: 6px; */
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: bold;
}

.category-tab:hover {
    color: gold;
}

.menu-container {
    padding: 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: #fff;
}

.category-section {
    margin-bottom: 20px;
}

.category-section h2 {
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.menu-item {
    display: flex;
  align-items: center;
  background: #28212173;
  color: #fff;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f3f3b2;
  background: #f9f9f991;
  box-shadow: none;
}

.menu-item:hover 
{
    cursor: pointer;
}

.menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    margin-right: 15px;
    
}

.menu-item h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #000;
    font-weight: 900;
}

.menu-item p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #666;
    color: var(--text-color);
}

.menu-item .variations 
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    padding-top: 7px;
    color: var(--text-color);
}

.menu-item .spice-icons {
    padding-left: 5px;
}

.category-section h2 
{
    color: gold;
    font-weight: normal;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1;
}

.info-container 
{
    background-color: #fff;
    padding: 10px;
    color: #000 !important;
}

.info-container p 
{
    color: #000 !important;
}

.modal 
{
    z-index: 99999;
}



@media (min-width: 993px) 
{
    .modal {
        width: 40%; /* Adjust size */
        max-width: 500px;
        height: auto;
        min-height: 200px;
        left: 50%;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        border-radius: 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .modal.show {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 992px) {
 
 .category-tabs 
 {
     scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    
    /* Hide scrollbar for Webkit (Chrome, Safari) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer & Edge */
    
    justify-content: start;
    
    scrollbar-width: 0px;
 }
    
    #menuContainer 
    {
        padding: 10px 0px;
    }
    
    .category-section h2 
    {
        padding-left: 10px;
    }
    
    .menu-item {
    
      border-radius: 0px;
   }
   
   
   .modal {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease-in-out;
    border-radius: 30px 30px 0 0;
}

    .modal-content {
        padding: 20px;
        text-align: center;
    }
    
    .modal.show {
        bottom: 0;
    }
    
    #closeModal {
        font-size: 24px;
        font-weight: bold;
        position: absolute;
        right: 20px;
        top: 10px;
        cursor: pointer;
    }


}

.modal, .modal-content
{
    padding: 0px;
    overflow: hidden;
}

.modalImageContainer 
{
    max-height: 200px;
    overflow: hidden;
    padding: 0px;
}

#modalItemName 
{
    text-align: center;
}

.modalContent 
{
    padding: 0px;
}



.review-container 
{
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 20px 10px;
}

.google-review-btn {
    display: inline-block;
    background-color: #4285F4;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.google-review-btn:hover {
    background-color: #357ae8;
}

