/* ===========================
   CSS THEME CUSTOMIZATION
   Modify these variables to customize the entire site
   =========================== */

:root {
    /* Primary Colors */
    --color-primary: #8a84dd;
    
    /* Accent Colors */
    --color-accent: #8a84dd;
    
    /* Secondary Colors */
    --color-secondary: #e74c3c;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #ecf0f1;
    --color-gray: #95a5a6;
    --color-gray-dark: #7f8c8d;
    --color-background: #fafafa;
    --color-text: #1e1e1e;
    --color-text-light: #7f8c8d;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
    --font-mono: 'Courier New', Courier, monospace;
    
    --font-size-base: 16px;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --font-size-h1: 3rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
    --font-size-h4: 1rem;
    --font-size-h5: 1rem;
    --font-size-h6: 1rem;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    --line-height-base: 1.6;
    --line-height-tight: 1.2;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --container-padding: 2rem;
    --border-radius: 8px;
    --border-radius-small: 4px;
    --border-radius-large: 16px;
    --nav-height: 64px;
    --nav-height-mobile: 56px;
    
    /* Shadows */
    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index layers */
    --z-nav: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
    
    /* Publication Button Colors & Text */
    --color-button-paper: #d7dbe3;    /* 灰色 - ペーパーらしい色 */
    --color-button-poster: #e64848;   /* PDFっぽい赤 */
    --color-button-slide: #1484e6;    /* PowerPointっぽいオレンジ */
    --color-button-github: #7C3AED;   /* GitHubっぽい紫 */
    --color-button-code: #7C3AED;     /* コードも紫系 */
    --color-button-demo: #9C27B0;     /* デモ用紫 */
    
    /* Individual Text Colors for Each Button Type */
    --color-button-paper-text: #393939;   /* 薄い灰色背景には黒文字 */
    --color-button-poster-text: #ffffff;  /* 赤背景には白文字 */
    --color-button-slide-text: #ffffff;   /* オレンジ背景には白文字 */
    --color-button-github-text: #ffffff;  /* 紫背景には白文字 */
    --color-button-code-text: #ffffff;    /* 紫背景には白文字 */
    --color-button-demo-text: #ffffff;    /* 紫背景には白文字 */
    
    /* Hero visuals removed */
}
/* Dark mode disabled */
