@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');
body, html { margin: 0; padding: 0; font-family: 'Lato', sans-serif; color: #4a4a4a; background: #faf8f5; display: flex; min-height: 100vh; }
.sidebar { width: 280px; background: #e67e22; color: white; display: flex; flex-direction: column; padding: 40px 20px; box-shadow: 2px 0 10px rgba(0,0,0,0.1); z-index: 10; font-family: 'Playfair Display', serif; }
.logo { font-size: 2.5rem; font-weight: 700; text-align: center; }
.tagline { text-align: center; font-style: italic; opacity: 0.8; margin-bottom: 50px; }
nav { display: flex; flex-direction: column; gap: 15px; }
nav a { color: white; text-decoration: none; padding: 12px 20px; border-radius: 4px; border: 1px solid transparent; cursor: pointer; transition: all 0.3s; font-family: 'Lato', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
nav a:hover, nav a.active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.sidebar-footer { margin-top: auto; text-align: center; font-size: 0.8rem; font-family: 'Lato', sans-serif; opacity: 0.7; }
.sidebar-footer a { color: white; }
.main-content { flex: 1; overflow-y: auto; }
.page { display: none; }
.page.active { display: block; animation: fade 0.5s; }
.hero { height: 45vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero h1 { position: relative; color: white; font-family: 'Playfair Display', serif; font-size: 4rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.content { max-width: 800px; padding: 60px; }
h2 { font-family: 'Playfair Display', serif; color: #d35400; font-size: 2.5rem; margin-top: 0; }
.menu-list { display: flex; flex-direction: column; gap: 30px; }
.menu-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed #eecd99; padding-bottom: 15px; }
.menu-item h3 { font-family: 'Playfair Display', serif; margin: 0 0 5px 0; font-size: 1.5rem; }
.menu-item p { margin: 0; font-size: 0.9rem; color: #7f8c8d; }
.price { font-weight: bold; font-size: 1.2rem; color: #d35400; }
.styled-form { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 5px solid #e67e22; display: flex; flex-direction: column; gap: 15px; max-width: 400px; }
.styled-form input { padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: 'Lato', sans-serif; }
.styled-form button { background: #e67e22; color: white; border: none; padding: 12px; font-weight: bold; border-radius: 4px; cursor: pointer; text-transform: uppercase; transition: background 0.3s; }
.styled-form button:hover { background: #d35400; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
