@import url("https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Kantumruy Pro;
  scroll-behavior: smooth;
}
body {
  background-color: #fffaf3;
  color: #333;
}
header {
  background-color: #d4af37;
  padding: 1rem;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}
.hero {
  width: 100%;
  height: 250px;
  background: url("https://images.unsplash.com/photo-1583778179785-89ef16d14b69")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}
.categories {
  position: sticky;
  top: 60px;
  z-index: 999;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #fff;
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
  gap: 0.5rem;
  scrollbar-width: none;
}
.categories::-webkit-scrollbar {
  display: none;
}
.categories button {
  flex: 0 0 auto;
  background-color: #fff;
  border: 2px solid #d4af37;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: medium;
  color: #000;
}
.categories button.active {
  background-color: #d4af37;
  color: white;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
.item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-style: dashed;
  border-color: pink;
  border-width: 1px;
}
.item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.item-info {
  padding: 0.5rem;
  text-align: center;
}
.item-info h3 {
  font-size: 1.1rem;
}
.item-info p {
  color: #d4af37;
  font-weight: bold;
}
.categories {
  position: sticky;
  top: 60px;
  z-index: 999;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #fff;
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
  gap: 0.5rem;
  scrollbar-width: none; /* Firefox */
}
.categories::-webkit-scrollbar {
  display: none; /* Chrome */
}
.categories button {
  flex: 0 0 auto;
  background-color: #fff;
  border: 2px solid #d4af37;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.categories button.active {
  background-color: #d4af37;
  color: white;
}
header {
  position: sticky;
  top: 0;
  background-color: #d4af37;
  padding: 1rem;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .hero {
    height: 150px;
    font-size: 1.5rem;
  }
  header {
    font-size: 1.4rem;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  color: white;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 10px;
}

.lightbox-title {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: rgb(255, 0, 191);
}
footer {
  font-family: Kantumruy Pro, Arial, sans-serif;
  justify-items: center;
  margin-top: 15px;
  font-size: 20px;
}
#kampu {
  color: #1100ff;
}
/*------------------------------------------------------------------*/
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background-color: #f8f8f8;
  box-sizing: border-box;
  margin: 0;
}

.hero-text {
  flex: 1;
  padding: 20px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.hero-text button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #c70039;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.hero-img {
  flex: 1;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .button {
    font-size: 14px;
    margin-top: 8px;
  }
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
  padding: 5px 5px;
  border-radius: 50%;
  background: none;
}

.carousel-button.left {
  left: 5px;
}

.carousel-button.right {
  right: 5px;
}

.carousel-nav {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.dot.active {
  background-color: #ff70b8;
}
