@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
:root {
  --primary-color: #ff6b6b; --secondary-color: #f7d794; --bg-color: #ffffff;
  --text-color: #2d3436; --card-bg: rgba(255, 255, 255, 0.9);
  --header-bg: linear-gradient(135deg, #ff6b6b, #ee5253); --section-title: #ff6b6b;
}
[data-theme="dark"] {
  --bg-color: #1a1a1a; --text-color: #f5f6fa; --card-bg: rgba(45, 52, 54, 0.9);
  --header-bg: linear-gradient(135deg, #2d3436, #000000); --section-title: #f7d794;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif; background-color: var(--bg-color);
  color: var(--text-color); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.6; overflow-x: hidden;
}
header {
  background: var(--header-bg); color: white; text-align: center; padding: 80px 20px;
  position: relative; overflow: hidden; clip-path: ellipse(150% 100% at 50% 0%);
}
header h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 10px; text-shadow: 2px 2px 10px rgba(0,0,0,0.2); }
#toggleTheme {
  position: absolute; top: 20px; right: 20px; background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px; border-radius: 30px; color: white; cursor: pointer; font-weight: 600;
}
.container { max-width: 1100px; margin: -50px auto 40px; padding: 0 20px; position: relative; z-index: 2; }
.menu-section { margin-bottom: 60px; }
h2 { font-size: 2rem; color: var(--section-title); margin-bottom: 30px; text-align: center; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.menu-item {
  background: var(--card-bg); border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column;
}
.menu-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.item-image { width: 100%; height: 200px; overflow: hidden; }
.item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-item:hover .item-image img { transform: scale(1.1); }
.item-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.price { font-size: 1.5rem; font-weight: 700; color: #ff6b6b; }
.add-btn { background: #ff6b6b; color: white; border: none; width: 40px; height: 40px; border-radius: 12px; cursor: pointer; }
footer { background: var(--header-bg); color: white; text-align: center; padding: 40px 20px; margin-top: 80px; clip-path: ellipse(150% 100% at 50% 100%); }
