.menu-section-one {
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
  position: relative;
}

.menu-header {
  text-align: center;
  margin-bottom: 10px;
}

.menu-header h1 {
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(228, 223, 223);
}

.menu-header p {
  font-size: 20px;
  letter-spacing: 2px;
  color: #42dcc0;
}
.menu-poster {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 25px);
  flex-wrap: nowrap;       
  overflow-x: auto;        
  white-space: nowrap;     
}
.big-number,
.big-symbol {
  font-size: clamp(60px, 12vw, 150px);  
  font-weight: bold;
  color: #fffdfd;
  flex-shrink: 0;
}
.menu-images {
  display: flex;
  gap: clamp(10px, 3vw, 40px);
  flex-wrap: nowrap;       
}
.circle {
  width: clamp(70px, 10vw, 120px);
  height: clamp(70px, 10vw, 120px);
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.menu-bottom {
  margin-top: 15px;
  font-size: 20px;
  text-align: center;
}
.menu-bottom p {
  letter-spacing: 2px;
}
.menu-section {
  background-color: rgb(109, 32, 32);
  padding: 50px 60px;
  text-align: left;
}
.menu-section h2 {
  color: #d4af37;
  text-align: center;
  letter-spacing: 1px;
}
.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}
.menu-controls input[type="text"] {
  padding: 10px 15px;
  width: 250px;
  border: 2px solid #ddd;
  border-radius: 20px;
  outline: none;
  transition: 0.3s;
}
.menu-controls input[type="text"]:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
}
.menu-controls select {
  padding: 10px 15px;
  border: 2px solid #ddd;
  border-radius: 20px;
  background-color: #e3e0e0;
  cursor: pointer;
  transition: 0.3s;
}
.menu-controls select:hover {
  border-color: #ff6b6b;
}
.menu-grid1,
.menu-grid5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.menu-grid1:empty,
.menu-grid5:empty,
.menu-grid1.no-results,
.menu-grid5.no-results {
  display: none !important;
}

.menu-item {
  background: #010800;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.menu-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-item h3 {
  font-size: 1.4rem;
  margin: 15px;
  color: #fff;
}

.menu-item p {
  font-size: 0.95rem;
  color: #bbb;
  margin: 0 15px 15px;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 20px;
}

.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffc107;
}

.top-label {
  color: #fff;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
}

.menu-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: transparent;
  border: 1px solid #d4af37;
  border-radius: 150px 150px 20px 20px;
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.4s ease-in-out;
}

.card img:hover {
  transform: rotate(45deg) scale(1.05);
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #d1d1d1;
}

.card p {
  font-size: 14px;
  color: #d1d1d1;
  margin: 10px 0 15px;
}

.badge {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.spl-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.spl-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #F0B462;
  transition: transform 0.6s ease;
}

.spl-item img:hover {
  transform: rotate(180deg);
}

.spl-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spl-item .new {
  background-color: #F0B462;
  color: #13201D;
  font-size: 12px;
  padding: 2px 5px;
  margin-left: 10px;
  border-radius: 3px;
  font-weight: 700;
}

.spl-item p {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

.menu-image {
  padding-top: 20px;
}

.image-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.timing {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #F0B462;
}

.combo-section h1 {
  text-align: center;
  font-size: 2rem;
  margin: 30px 0 40px 0;
  color: #d4af37;
}

.combo-block {
  background: #000;
  border-radius: 40px;
  padding: 20px;
  margin: 30px auto;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.combo-block:nth-child(even) {
  flex-direction: row-reverse;
}

.combo-img {
  flex: 1;
  padding-left: 60px;
}

.combo-img img {
  width: 250px;
  border-radius: 20px;
  animation: fadeInZoom 1s ease forwards;
}

.combo-text {
  flex: 1;
  padding: 20px;
}

.combo-text h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-align: justify;
  color: #42dcc0;
}

.combo-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #aba9a9;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .menu-section {
    padding: 30px 20px;
  }

  .menu-box {
    padding: 25px;
  }

  .menu-container {
    flex-direction: column;
    gap: 30px;
  }

  .menu-items,
  .combo-block {
    width: 100%;
    flex-direction: column !important;
    text-align: center !important;
  }

  .spl-item {
    flex-direction: row;
    gap: 15px;
  }

  .spl-item img {
    width: 65px;
    height: 65px;
  }

  .spl-item h3 {
    font-size: 16px;
  }

  .spl-item p {
    font-size: 13px;
    line-height: 1.4;
  }

  .combo-img {
    padding-left: 0 !important;
  }

  .combo-img img {
    width: 200px;
  }

  .combo-text h3 {
    font-size: 1.6rem;
  }

  .combo-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .spl-item {
    flex-direction: column;
    text-align: center;
  }

  .spl-item img {
    width: 80px;
    height: 80px;
  }

  .spl-item h3 {
    font-size: 15px;
  }

  .image-frame {
    max-width: 240px;
  }

  .combo-img img {
    width: 170px;
  }

  .combo-text h3 {
    font-size: 1.3rem;
  }

  .combo-text p {
    font-size: 0.85rem;
  }
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 10px;
  text-align: center;
}

.footer-content h3 { font-size: 1.8rem; margin-bottom: 10px; color: #d4a44c; }
.footer-content p { margin-bottom: 20px; color: #ccc; }

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: 0.3s;
}

.footer-links a:hover { color: #d4a44c; }
