import { StyleOption } from '../../../types'; export const luxuryEditorial: StyleOption = { id: 'luxury-editorial', name: 'Luxury Editorial', category: 'Editorial', description: 'High-fashion magazine inspired design. Elegant serifs with sophisticated spacing and premium feel for upscale content.', vibe: 'Fashion, Premium, Sophisticated', googleFontsImport: 'https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;700&family=Montserrat:wght@300;400;500&display=swap', wordConfig: { heading1: { font: "Cormorant", size: 36, color: "1C1C1C", bold: false, align: 'center', spacing: { before: 480, after: 280, line: 240 } }, heading2: { font: "Montserrat", size: 11, color: "1C1C1C", bold: true, align: 'left', spacing: { before: 360, after: 180, line: 240 } }, body: { font: "Montserrat", size: 10, color: "3A3A3A", align: 'left', spacing: { before: 0, after: 180, line: 300 } }, accentColor: "B8860B" }, previewCss: ` font-family: 'Montserrat', sans-serif; h1 { font-family: 'Cormorant', serif; font-size: 36pt; font-weight: 500; color: #1C1C1C; text-align: center; margin-bottom: 32px; letter-spacing: 2px; } h2 { font-size: 11pt; font-weight: 500; color: #1C1C1C; margin-top: 36px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 3px; } p { font-size: 10pt; line-height: 1.7; color: #3A3A3A; margin-bottom: 16px; font-weight: 300; } blockquote { border-top: 1px solid #B8860B; border-bottom: 1px solid #B8860B; padding: 24px 0; margin: 32px 0; text-align: center; font-family: 'Cormorant', serif; font-size: 14pt; font-style: italic; } ` };