/* ==========================================
   FULL MENU MODAL — Restoran Menü Kartı
   ========================================== */

.full-menu-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.full-menu-modal.active {
  display: flex;
}

.full-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 5, 0.92);
  cursor: pointer;
}

/* ---- Menü Kartı ---- */
.full-menu-card {
  position: relative;
  background: #f9f4e8;
  width: 100%;
  max-width: 740px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  animation: menuFadeIn 0.4s ease;

  /* Çerçeve — fiziksel menü görünümü */
  border: 1px solid #c9a96e;
  box-shadow:
    0 0 0 6px #f9f4e8,
    0 0 0 8px #c9a96e,
    0 0 40px rgba(0,0,0,0.6);
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scrollbar */
.full-menu-card::-webkit-scrollbar { width: 4px; }
.full-menu-card::-webkit-scrollbar-track { background: #f0e8d0; }
.full-menu-card::-webkit-scrollbar-thumb { background: #c9a96e; border-radius: 2px; }

/* ---- Kapat Butonu ---- */
.full-menu-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: #8b6914;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2;
  font-family: 'Cabin', sans-serif;
}

.full-menu-close-btn:hover {
  color: #262526;
}

/* ---- Kart İçi Padding ---- */
.full-menu-inner {
  padding: 40px 48px 52px;
}

/* ---- Başlık ---- */
.full-menu-brand {
  text-align: center;
  margin-bottom: 8px;
}

.full-menu-brand .brand-name {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-size: 72px;
  color: #8b6914;
  line-height: 1;
  margin: 0;
  font-weight: normal;
}

.full-menu-brand .brand-sub {
  font-family: 'Cabin', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #8b6914;
  margin: 2px 0 0;
}

/* ---- Süslemeli Ayraç ---- */
.menu-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #c9a96e;
}

.menu-ornament::before,
.menu-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a96e);
}

.menu-ornament::after {
  background: linear-gradient(to left, transparent, #c9a96e);
}

.menu-ornament i {
  font-size: 9px;
  color: #c9a96e;
}

/* ---- Kategori Başlığı ---- */
.menu-category {
  margin-bottom: 32px;
}

.menu-category-title {
  text-align: center;
  font-family: 'Cabin', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #8b6914;
  margin: 0 0 20px;
  position: relative;
}

.menu-category-title::before,
.menu-category-title::after {
  content: '— ';
  color: #c9a96e;
}

.menu-category-title::after {
  content: ' —';
}

/* ---- Menü Kalemi ---- */
.menu-entry {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.menu-entry-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #ddd5b8;
  flex-shrink: 0;
}

.menu-entry-body {
  flex: 1;
  border-bottom: 1px dashed #ddd5b8;
  padding-bottom: 18px;
}

.menu-entry:last-child .menu-entry-body {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-entry-name {
  font-family: 'Cabin', sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #262526;
  margin: 0 0 5px;
}

.menu-entry-desc {
  font-family: 'Cabin', sans-serif;
  font-size: 13px;
  color: #6b5c3a;
  line-height: 19px;
  margin: 0;
}

/* ---- Büyük Ayraç (Kategoriler arası) ---- */
.menu-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px 0;
  color: #c9a96e;
}

.menu-divider::before,
.menu-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #c9a96e;
}

.menu-divider span {
  font-size: 14px;
  letter-spacing: 4px;
  color: #c9a96e;
}

/* ---- Footer ---- */
.full-menu-footer {
  text-align: center;
  margin-top: 16px;
  font-family: 'Cabin', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #b09050;
  text-transform: uppercase;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 600px) {
  .full-menu-modal {
    padding: 0;
  }

  .full-menu-card {
    max-height: 100vh;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }

  .full-menu-inner {
    padding: 28px 20px 40px;
  }

  .full-menu-brand .brand-name {
    font-size: 52px;
  }

  .menu-entry-img {
    width: 56px;
    height: 56px;
  }
}
