/*
Theme Name: PostCard Art Gallery
Theme URI: https://postcardartgallery.com
Author: PostCard Art Team
Author URI: https://postcardartgallery.com
Description: ポップでカラフルな、はがきアート作品を展示するギャラリーサイト用WordPressテーマ。誰の目にも触れずに消えていくはずだった「名もなき個人の本音、妄想、密かな衝動、そして行き場を失った心の感情の爆発」を展示します。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: postcardart
Tags: gallery, art, colorful, custom-post-types

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #00a6ff;
  --color-secondary: #ff6ba0;
  --color-accent-yellow: #ffd700;
  --color-accent-green: #00e676;
  --color-accent-orange: #ff6b35;
  --color-accent-purple: #9c27b0;
  --color-bg: #fff9f0;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --font-main:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-display: "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --border-radius: 16px;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wide-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
