/* mujun.cafe - Colors: #F5F0E5, #6A5030, #E8E4D8, #708060, #2A1F14 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #F5F0E5; color: #2A1F14; font-family: 'Inter', sans-serif; }
#hero { min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; background: #2A1F14; }
.title { font-family: 'Merriweather', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem); color: #F5F0E5; margin-bottom: 1rem; }
.sub { font-size: 1rem; color: #E8E4D8; max-width: 400px; line-height: 1.6; }
#menu { max-width: 700px; margin: 0 auto; padding: 3rem 2rem; }
.item { margin-bottom: 3rem; padding: 1.5rem; border-bottom: 1px solid #E8E4D8; opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.item.visible { opacity: 1; transform: translateY(0); }
.item-title { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1.5rem; color: #6A5030; margin-bottom: 0.75rem; }
.item-text { font-size: 1rem; line-height: 1.8; color: #708060; }
