 @import url('https://fonts.googleapis.com/css2?family=Poppins: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');
    body {
      background-color: #fff;
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
    }

   .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;

}

.logo img {
  height: 40px;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #f2f5f8;
  padding: 10px 15px;
  border-radius: 15px;
}

.search-box i {
  color: #29abe2; /* light blue */
  font-size: 20px;
  margin-right: 8px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #909aa5;
}




/*categories*/
.categories-section {
  padding: 20px 0px;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.categories-header h3 {
  font-size: 22px;
  color: #1e1e1e;
  margin: 0;
}

.see-all-btn {
  border: 1px solid #ccc;
  background-color: transparent;
  color: #888;
  border-radius: 10px;
  padding: 5px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.see-all-btn:hover {
  background-color: #f0f0f0;
}

.categories-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
 /* flex-wrap: nowrap;
  overflow-x: auto;*/
}

.category {
  width:100%;
  background-color: #f4f4f6;
  border-radius: 20px;
  padding: 20px 25px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;  /* Stack icon above text */
  align-items: center;     /* Center horizontally */
  justify-content: center; /* Center vertically if needed */

}


.category i {
  font-size: 28px;
  color: #1c1c28;
  margin-bottom: 8px;
}

.category span {
  display: block;
  font-weight: 500;
  color: #1c1c28;
  font-size: 14px;
}

/* Active Category */
.category.active {
  background-color: #000;
}

.category.active i,
.category.active span {
  color: #fff;
}

/* Hover Effect */
.category:hover {
  background-color: #aba7a7;
}

.category:hover i,
.category:hover span {
  color: #fff;
}




/*nearby*/
.nearby-section{margin-top: 20px;}
.nearby-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.nearby-section .card-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.nearby-section .place-card, .nearby-section  .explore-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 240px;
  min-width: 240px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nearby-section .place-card:hover, .nearby-section  .explore-card:hover {
  transform: translateY(-5px);
}

.nearby-section .place-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.nearby-section .card-body {
  padding: 15px;
}

.nearby-section .card-body h3 {
  font-size: 18px;
  margin: 0 0 5px;
}

.nearby-section .stars {
  color: #f6b100;
  font-size: 14px;
  margin: 5px 0;
}

.nearby-section .rating {
  color: #333;
  font-weight: 400;
}

.nearby-section .status {
  font-weight: bold;
  margin: 5px 0;
}

.nearby-section .status.open {
  color: green;
}

.nearby-section .status.closed {
  color: red;
}

.nearby-section .distance {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nearby-section .explore-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.nearby-section .explore-card p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.nearby-section .circle-arrow {
  background: #000;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.bottom{background: #000; padding:50px 0; margin-top:80px; }
.footer{text-align: center;}
.footer ul{display: block;margin: 20px 0 0 0; padding: 0;}
.footer ul li{display: inline-block;}
.footer ul li a{color: #fff; display: inline-block; margin: 0 14px; font-size: 22px;}

.footer-content {
  margin-top: 30px;
  border-top: #ccc solid 1px;
  padding: 12px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  margin-bottom: 10px;
}

.footer-right a {
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
}

.footer-right a:hover {
  text-decoration: underline;
}


.restaurant-list {
  padding: 0px 13px 16px 13px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.restaurant-card {
  border: 1.5px solid #E6E6E6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.restaurant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.restaurant-name {
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}

.restaurant-info {
  margin-top: 8px;
}

.restaurant-info p {
  margin: 4px 0;
  font-size: 15px;
  color: #555;
}

.restaurant-info i {
  margin-right: 6px;
  color: #666;
}

.badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid;
}

.status-clear {
  color: #2e7d32;
  border-color: #2e7d32;
}

.status-busy {
  color: #f9a825;
  border-color: #f9a825;
}

.status-event {
  color: #7b1fa2;
  border-color: #7b1fa2;
}

.status-booked {
  color: #d32f2f;
  border-color: #d32f2f;
}

.status-active {
  color: #1976d2;
  border-color: #1976d2;
}





.filter-sidebar {

  background: #fff;
  border: 1px solid #ccc;
  border-radius: 24px;
  overflow: hidden;
}

.filter-sidebar__header {
  background: #000;
  color: #fff;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-sidebar__section {
  padding: 20px;
  border-top: 1px solid #ccc;
}

.filter-sidebar__section h4 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.filter-sidebar__input-box {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.filter-sidebar__input-box i {
  margin-right: 10px;
  color: #aaa;
}

.filter-sidebar__input-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #777;
  width: 100%;
}

.filter-sidebar__checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.filter-sidebar__checkbox-row label {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #111;
}

.filter-sidebar__checkbox-row input[type="checkbox"] {
  margin-right: 10px;
}

.filter-sidebar__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.filter-sidebar__dot.green { background: green; }
.filter-sidebar__dot.orange { background: orange; }
.filter-sidebar__dot.purple { background: purple; }
.filter-sidebar__dot.red { background: red; }
.filter-sidebar__dot.blue { background: blue; }

.filter-sidebar label {
  font-size: 15px;
  display: block;
  margin: 8px 0;
  color: #111;
}



/*carousal*/
.carousel-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 40px;
}

.carousel-box__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 40px;
}

/* Top-right icons */
.carousel-box__icons {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.carousel-box__icon-btn {
  background: white;
  border: none;
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}

.carousel-box__icon-btn:hover {
  background: #f1f1f1;
}

/* Dots pagination */
.carousel-box__dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-box__dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.carousel-box__dots .dot.active {
  background: #fff;
}

.restaurant-info {
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.restaurant-info__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.restaurant-info__description {
  color: #777;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

.restaurant-info__details p {
  font-size: 15px;
  color: #666;
  margin: 5px 0;
}

.restaurant-info__details i {
  margin-right: 8px;
  color: #999;
}

.restaurant-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.restaurant-info__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #444;
}

.restaurant-info__icon i {
  font-size: 22px;
  background: #f0f0f0;
  color: #222;
  padding: 10px 16px;
  border-radius: 50%;
  margin-bottom: 8px;
  transition: background 0.3s;
}

.restaurant-info__icon:hover i {
  background: #e0e0e0;
}

.restaurant-info__book-btn {
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 18px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.restaurant-info__book-btn:hover {
  background: #111;
}
.restaurant-info__cta{margin-left: auto;}

  .nav-tabs {
      border-bottom: 1px solid #ddd;
    }
    .nav-tabs .nav-link {
      border: none;
      font-weight: 500;
      color: #999;
    }
    .nav-tabs .nav-link.active {
      color: #000;
      border-bottom: 2px solid #000;
    }
        .gallery_img {
  display: flex;
  margin-top: 30px ;
  flex-wrap: wrap;
  gap: 10px; /* space between images */
}

.gallery_img img {
  width: calc(33% - 5px); /* two per row with gap */
  box-sizing: border-box;
}


@media (max-width: 768px) {

.categories-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;   /* Enables horizontal scrolling */
  scroll-snap-type: x mandatory; /* Smooth snapping effect */
  padding: 10px 0;
}

.categories-list::-webkit-scrollbar {
  display: none; /* Hide scrollbar for cleaner look */
}



/* Parent: horizontal, swipeable list */
.categories-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 16px;
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
}

/* hide default scrollbar (optional) */
.categories-list::-webkit-scrollbar { height: 8px; }
.categories-list::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 8px; }

/* Child: fixed-size, stacked icon + label, won't stretch */
.categories-list > .category {
  flex: 0 0 auto;           /* do not grow or shrink; keep given width */
  scroll-snap-align: start;
  width: 132px;             /* change to desired size */
  height: 132px;            /* change to desired size */
  box-sizing: border-box;
  padding: 14px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

/* icon + label styles */
.category i { font-size: 34px; line-height: 1; }
.category span {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}
.footer-content{color: #fff; text-align: center; width: 100%;}
.footer-left{ text-align: center; width: 100%;}
.top-bar{display: block;}
.search-box{margin-top: 20px;}
.logo{text-align: center;}
.gallery_img img {
    width: calc(32% - 5px);
    box-sizing: border-box;
}
.restaurant-list{padding: 0; margin-top: 20px;}
}




 .categories-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .category-box {
        background-color: #f7f7f8;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 120px;
        flex-shrink: 0;
    }
    .category-box.active {
        background-color: #000;
        color: #fff;
    }
    .category-box i {
        font-size: 30px;
        margin-bottom: 10px;
        display: block;
    }
    .category-box.active i {
        color: #fff;
    }
    .category-box span {
        font-weight: 500;
    }
    .see-all-btn {
        border: 1px solid #ccc;
        border-radius: 10px;
        padding: 5px 15px;
        font-size: 14px;
        background: transparent;
        transition: all 0.3s ease;
    }
    .see-all-btn:hover {
        background-color: #000;
        color: #fff;
    }
    .categories-list2 {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 10px 0;
    }

    .categories-list_box {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* exactly 5 per row */
    gap: 20px;
}

/* Tablet: 3 per row */
@media (max-width: 992px) {
    .categories-list_box {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile: 2 per row */
@media (max-width: 576px) {
    .categories-list_box {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-section {
    margin: 0px auto  40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    border: 1px solid #f0f0f0;
}

.content-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2a4d69; /* deep blue */
    margin-bottom: 20px;
    border-bottom: 3px solid #ffd15c; /* accent yellow underline */
    display: inline-block;
    padding-bottom: 5px;
}

.content-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #4a6fa5;
}

.content-section p {
    margin-bottom: 15px;
}

.content-section ul {
    background: #f9fbfd;
    padding: 15px 20px;
    border-radius: 12px;
    list-style: none;
    border: 1px solid #e4ebf3;
}

.content-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #444;
}

.content-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #27ae60; /* green tick */
    font-size: 14px;
    font-weight: bold;
}

.content-section a {
    color: #0077ff;
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}


.terms-section {
    margin: 0px auto 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    border: 1px solid #f0f0f0;
}

.terms-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3d59;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff6f61;
    display: inline-block;
    padding-bottom: 5px;
}

.terms-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #3a6ea5;
}

.terms-section p {
    margin-bottom: 15px;
}

.terms-section ul {
    background: #f9fbfd;
    padding: 15px 20px;
    border-radius: 12px;
    list-style: none;
    border: 1px solid #e4ebf3;
}

.terms-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #444;
}

.terms-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6f61;
    font-size: 14px;
    font-weight: bold;
}

.terms-section a {
    color: #0077ff;
    text-decoration: none;
    font-weight: 500;
}

.terms-section a:hover {
    text-decoration: underline;
}
