/**
 * @Author: Musa Hayta - musahayta@gmail.com
 * @Date:   2026-01-23 15:34:37
 * @Last Modified by:   Musa Hayta - musahayta@gmail.com
 * @Last Modified time: 2026-01-23 17:04:43
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Tahoma;
  background: white;
  color: #000;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.logo-section {
  text-align: center;
}

.logo-box {
  margin-bottom: 20px;
}

.logo-subtitle {
  font-size: 18px;
  margin-top: 5px;
}

.header-bar {
  display: block;
  background: #000;
  color: white;
  text-align: center;
  padding: 5px;
  font-size: 48px;
  /* font-weight: bold; */
  letter-spacing: 1px;
  margin-bottom: 30px;
}

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

.category-divider {
  border-top: 3px solid #000;
  margin: 30px 0 20px 0;
}

.accordion-header {
  cursor: pointer;
  user-select: none;
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.accordion-header:hover {
  opacity: 0.9;
}

.category-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.accordion-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-toggle.open {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-bottom 0.4s ease;
  margin-bottom: 0;
}

.accordion-content.active {
  max-height: 5000px;
  margin-bottom: 30px;
}

.menu-item {
  text-align: center;
  /* margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd; */
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.4vw;
}

.menu-item-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

.menu-item-price {
  font-weight: bold;
  font-size: 18px;
  /* text-align: right; */
}

.item-divider {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 0 20px;
  height: 2px;
  margin: 20px 0;
}
.item-divider:last-child {
  display: none;
}
.item-divider::before {
  content: "";
  display: block;
  border-top: 2px solid #ddd;
  width: 20%;
  margin-right: 20px;
}
.item-divider::after {
  content: "";
  display: block;
  border-top: 2px solid #ddd;
  margin-left: 20px;
  width: 20%;
}
.empty-state {
  text-align: center;
  padding: 40px;
  color: #999;
  font-style: italic;
}
@media (max-width: 600px) {
  .header-bar {
    font-size: 36px;
  }

  .menu-item-name {
    font-size: 18px;
    letter-spacing: 0.4vw;
  }

  .menu-item-description {
    font-size: 14px;
  }

  .menu-item-price {
    font-size: 16px;
  }
}
@media print {
  body {
    background: white;
  }

  .container {
    padding: 20px;
  }
}
