import { StyleOption } from '../../../types'; export const fineDiningMenu: StyleOption = { id: 'fine-dining-menu', name: 'Fine Dining Menu', category: 'Hospitality', description: 'High-end restaurant aesthetic. Elegant scripts, centered layouts, and luxurious gold tones.', vibe: 'Elegant, Expensive, Centered', googleFontsImport: 'https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:wght@400;600&display=swap', wordConfig: { heading1: { font: "Great Vibes", size: 42, color: "C5A059", bold: false, align: 'center', spacing: { before: 500, after: 300, line: 240 } }, heading2: { font: "Cormorant Garamond", size: 14, color: "212121", bold: true, align: 'center', spacing: { before: 360, after: 180, line: 240 }, allCaps: true }, body: { font: "Cormorant Garamond", size: 12, color: "424242", align: 'center', spacing: { before: 0, after: 180, line: 300 } }, accentColor: "C5A059" }, previewCss: ` font-family: 'Cormorant Garamond', serif; background: #FFFAF0; h1 { font-family: 'Great Vibes', cursive; font-size: 42pt; color: #C5A059; text-align: center; margin-bottom: 30px; } h2 { font-size: 14pt; font-weight: 600; color: #212121; text-align: center; margin-top: 36px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 3px; border-bottom: 1px solid #C5A059; display: inline-block; padding-bottom: 5px; } p { font-size: 12pt; line-height: 1.8; color: #424242; margin-bottom: 16px; text-align: center; font-style: italic; } blockquote { border: 1px solid #C5A059; padding: 24px; margin: 30px 60px; text-align: center; } ` };