/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
  padding: 10px;
}

/* Preloader Background */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f1eb; /* beige / chikoo tone */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.logo-loader {
    width: 120px;
    animation: fade 1.2s ease-in-out infinite;
}

@keyframes fade {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Loader Animation */
.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #d3c2a5;
    border-top: 4px solid #8b6f4e;
    border-radius: 50%;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}


/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== STORY RING ===== */
.story-ring {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #ff0057, #ff7d00, #ffb800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.story-ring.viewed {
  background: grey;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: white;
}

.title {
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* ===== STORY POPUP ===== */
.story-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.story-popup.active {
  display: flex;
}

.story-image {
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: contain;
}

/* ===== 3-DOT MENU ===== */
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centers vertically */
  align-items: center;      /* centers horizontally */
  height: 18px;
  cursor: pointer;
  gap: 4px;                 /* space between dots */
}

.menu-icon span {
  display: block;
  width: 4px;
  height: 4px;
  background-color: #666;
  border-radius: 50%;
}


/* ===== SEARCH BAR ===== */
.search-bar {
  margin-top: 15px;
}

.search-bar input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  background-color: #e6e6e6;
  font-size: 0.95rem;
  color: #333;
}

.search-bar input::placeholder {
  color: #999;
}

/* ===== IMAGE SLIDER ===== */
.swiper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 15px;
}

.slideimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .swiper {
    height: 160px;
  }
}

/* ===== IMAGE GALLERY ===== */
.image-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.image-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-img {
  width: 170px;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== WHITE CONTENT BOX ===== */
.content-box {
  background-color: white;
  border-radius: 15px;
  margin-top: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #a45a2a;
  padding: 15px;
}

/* ===== INFO POINTS ===== */
.info-points {
  list-style-type: disc;
  padding-left: 25px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.info-points li {
  margin-bottom: 6px;
}

/* ===== MENU SECTION ===== */
.menu-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.menu-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* ===== MENU ITEM ===== */
.menu-item {
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  cursor: pointer;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-circle {
  background-color: #9a5840;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.menu-circle img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.menu-item p {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

/* ===== ACTIVE ITEM ===== */
.menu-item.active .menu-circle {
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.menu-item.active {
  border-bottom: 3px solid #9a5840;
  padding-bottom: 5px;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
}

@media (max-width: 768px) {
  .menu-section h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .menu-circle {
    width: 90px;
    height: 90px;
  }

  .menu-circle img {
    width: 45px;
    height: 45px;
  }

  .menu-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 25px 10px;
  }

  .menu-section h2 {
    font-size: 1.2rem;
  }

  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 10px;
  }

  .menu-circle {
    width: 75px;
    height: 75px;
  }

  .menu-circle img {
    width: 35px;
    height: 35px;
  }

  .menu-item p {
    font-size: 0.8rem;
  }
}
/* MENU CONTENT */
.menu-content {
  display: none;
  background: #fff;
  margin: 20px auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 800px;
  text-align: left;
}

.menu-content.active {
  display: block;
}

.menu-content h3 {
  color: #9a5840;
  font-weight: 700;
  margin-bottom: 15px;
}

.menu-content ul {
  list-style: none;
}

.menu-content ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
}
.menu-category {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.menu-category.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ===== MENU SECTION STYLING ===== */
/* Menu Block Styling */
.menu-block {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.08);
  margin: 20px 0;
  overflow: hidden;
}

/* Header Layout */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-header:hover {
  background: #faf9f4;
}

.menu-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-icon {
  width: 70px;
  height: 70px;
  background-color: #f5efdf;
  border-radius: 50%;
  object-fit: contain;
  padding: 10px;
}

.menu-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 5px;
}

.menu-info p {
  color: #7a7a7a;
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.menu-info .item-count {
  color: #466;
  font-size: 0.9rem;
}

.arrow {
  font-size: 1.2rem;
  color: #444;
  transition: transform 0.3s ease;
}

.menu-header.active .arrow {
  transform: rotate(180deg);
}

/* Menu Items Section */
.menu-items {
  display: none;
  border-top: 1px solid #eee;
  padding: 20px 25px;
  background: #fff;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.menu-items .menu-item {
  margin-bottom: 25px;
}

.menu-items .menu-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.menu-items .menu-item .price {
  color: #c74900;
  font-weight: 600;
  font-size: 1rem;
}

.menu-items .menu-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}
