/* ====================== MENU.CSS ====================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  background: #0f0c0a;
  color: #e8e0d8;
  line-height: 1.6;
  padding-bottom: 100px; /* space for sticky CTA */
}

/* ====================== HEADER ====================== */
header {
  text-align: center;
  padding: 60px 20px 40px;
  border-bottom: 1px solid #3c2f2a;
  margin-bottom: 60px;
  position: relative;
}

.back-to-home {
  position: absolute;
  top: 1.8rem;
  left: 2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8a37e;
  text-decoration: none;
  transition: color 0.3s;
}
.back-to-home:hover {
  color: #d4c3a8;
}

.brand {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: #b8a37e;
  margin-bottom: 8px;
  text-transform: uppercase;
}

h1 {
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #d4c3a8;
  margin-bottom: 8px;
}

.sub {
  font-size: 1.35rem;
  color: #a38a6b;
  font-style: italic;
}

/* ====================== MENU WRAP ====================== */
.menu-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 75px;
}

.section h2 {
  font-size: 2.1rem;
  color: #d4c3a8;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 1px;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #b8a37e, transparent);
}

/* ====================== DISH ====================== */
.dish {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #2a2420;
  transition: all 0.3s ease;
  gap: 20px;
}

.dish:hover {
  background: rgba(184, 163, 126, 0.05);
  padding-left: 10px;
  border-radius: 4px;
}

.dish-info {
  flex: 1;
}

.dish-name {
  font-size: 1.35rem;
  color: #f0e6d9;
  margin-bottom: 6px;
  font-weight: 500;
}

.dish-desc {
  font-size: 1.05rem;
  color: #b8a89a;
  font-style: italic;
}

.dish-price {
  font-size: 1.4rem;
  font-weight: 500;
  color: #d4c3a8;
  white-space: nowrap;
  padding-left: 15px;
}

.note {
  font-size: 1rem;
  color: #a38a6b;
  font-style: italic;
  text-align: center;
  margin-top: 25px;
  padding: 15px 0;
  border-top: 1px solid #3c2f2a;
}

/* ====================== STICKY CTA BAR ====================== */
.menu-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 10, 7, 0.97);
  border-top: 1px solid rgba(184, 163, 126, 0.25);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.menu-cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu-cta-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #d4c3a8;
  flex: 1;
}

.menu-cta-btn {
  display: inline-block;
  background: #b8976a;
  color: #0f0c0a;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition:
    background 0.3s,
    transform 0.2s;
  white-space: nowrap;
}

.menu-cta-btn:hover {
  background: #9a7040;
  transform: translateY(-1px);
}

.menu-cta-call {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #b8a37e;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: color 0.3s;
}
.menu-cta-call:hover {
  color: #d4c3a8;
}

/* ====================== FOOTER ====================== */
footer {
  text-align: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #3c2f2a;
  color: #8c7760;
  font-size: 1.05rem;
}

footer p {
  margin-bottom: 8px;
}

footer a {
  color: #b8a37e;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #d4c3a8;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  .section h2 {
    font-size: 1.85rem;
  }
  .dish {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }
  .dish-price {
    padding-left: 0;
    align-self: flex-end;
  }
  .back-to-home {
    top: 1rem;
    left: 1rem;
  }
  .menu-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .menu-cta-btn {
    width: 100%;
    text-align: center;
  }
  .menu-cta-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .menu-wrap {
    padding: 0 15px;
  }
}
