:root {
  --bg: #e9fff6;
  --bg-2: #d8f5ff;
  --card: #ffffff;
  --text: #12302a;
  --muted: #3e6b63;
  --accent: #0fba95;
  --accent-dark: #0a7e66;
  --line: #bfece2;
  --shadow: 0 18px 38px rgba(15, 104, 89, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 20%, #b8ffe7 0%, transparent 28%),
    radial-gradient(circle at 86% 10%, #b6e8ff 0%, transparent 26%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
  background-size: 100% 100%, 100% 100%, 200% 200%;
  animation: flowBg 14s ease-in-out infinite;
  min-height: 100vh;
  padding: 28px 16px 20px;
}

.bg-shape {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.bg-shape-1 {
  width: 220px;
  height: 220px;
  background: #7cf3d4;
  top: -70px;
  right: -90px;
  opacity: 0.45;
  animation: floatShape 7s ease-in-out infinite;
}

.bg-shape-2 {
  width: 200px;
  height: 200px;
  background: #78cbff;
  bottom: -70px;
  left: -80px;
  opacity: 0.35;
  animation: floatShape 9s ease-in-out infinite reverse;
}

.menu-card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px 20px 22px;
  animation: rise 650ms ease-out;
}

.header {
  text-align: center;
  margin-bottom: 18px;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.logo-badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(135deg, #10c8a0, #0a7e66);
  box-shadow: 0 10px 22px rgba(17, 134, 108, 0.34);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.brand-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-dark);
}

#title {
  margin: 8px 0 6px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
}

#tagline {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.lang-toggle {
  margin-top: 16px;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: #f2fffb;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.menu-section {
  margin-top: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

.section-chip {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent-dark);
  background: #dffff3;
  border: 1px solid #aee8d8;
  padding: 5px 10px;
  border-radius: 999px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.one-item {
  grid-template-columns: minmax(220px, 360px);
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 10px 24px rgba(24, 120, 96, 0.12);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: cardIn 500ms ease forwards;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #87dcca;
  box-shadow: 0 16px 30px rgba(15, 112, 89, 0.2);
}

.card:nth-child(2) { animation-delay: 80ms; }
.card:nth-child(3) { animation-delay: 140ms; }
.card:nth-child(4) { animation-delay: 200ms; }
.card:nth-child(5) { animation-delay: 260ms; }
.card:nth-child(6) { animation-delay: 320ms; }

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.info {
  padding: 12px;
}

.info h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.name-mr {
  margin: 0 0 6px;
  font-size: 0.86rem;
  color: #7a5e4b;
  font-weight: 700;
}

.desc {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  min-height: 34px;
}

.price {
  margin: 8px 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.contact-btn {
  margin-top: 18px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10c8a0, #0a7e66);
  box-shadow: 0 12px 24px rgba(10, 126, 102, 0.33);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(10, 126, 102, 0.4);
}

.footer {
  margin-top: 16px;
  text-align: center;
  color: #3a2f25;
  font-size: 0.92rem;
}

.footer a {
  color: #0a7e66;
}

@keyframes flowBg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatShape {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-14px) translateX(10px) scale(1.05);
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(17, 134, 108, 0.34);
  }
  50% {
    box-shadow: 0 14px 30px rgba(17, 134, 108, 0.5);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  body {
    padding: 14px 10px;
  }

  .menu-card {
    border-radius: 20px;
    padding: 16px 14px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .one-item {
    grid-template-columns: 1fr;
  }
}
