/*
Theme Name: AMIPRO Theme
Description: 声優プロダクション向けモダンWordPressテーマ
Author: AMIGO PRODUCTION
Version: 2.0.0
Text Domain: amipro
*/

/* ============================================================
   デザインシステム（モダン・上品配色）
   ============================================================ */
:root {
  /* 声優部門 - 上品なピンク系 */
  --voice-primary: #4A90E2;
  --voice-secondary: #A8D0FF;
  --voice-light: #F0F7FF;
  --voice-gradient: linear-gradient(135deg, #7BB3F0 0%, #A8D0FF 100%);
  --voice-shadow: 0 8px 32px rgba(74, 144, 226, 0.2);

  /* 俳優部門 - 信頼感のあるブルー系 */
  --actor-primary: #4A90E2;
  --actor-secondary: #7BB3F0;
  --actor-light: #F0F7FF;
  --actor-gradient: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%);
  --actor-shadow: 0 8px 32px rgba(74, 144, 226, 0.2);

  /* ベースカラー */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --light-gray: #F5F7FA;
  --gray: #E2E8F0;
  --dark-gray: #718096;
  --text-dark: #2D3748;
  --text-body: #4A5568;
  --text-muted: #A0AEC0;

  /* フォント */
  --font-jp: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-en: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* レイアウト */
  --container-width: 1200px;
  --header-height: 80px;
  --section-padding: 100px;

  /* デザイン要素 */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   リセット＆ベース
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-jp);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================================
   基本レイアウト
   ============================================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-padding) 0;
}

/* ============================================================
   タイポグラフィ
   ============================================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.site-logo {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  text-decoration: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--voice-light);
  color: var(--voice-primary);
}

/* ============================================================
   ボタン
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-voice {
  background: var(--voice-gradient);
  color: var(--white);
  box-shadow: var(--voice-shadow);
}

.btn-voice:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(74, 144, 226, 0.3);
}

.btn-actor {
  background: var(--actor-gradient);
  color: var(--white);
  box-shadow: var(--actor-shadow);
}

.btn-outline {
  background: transparent;
  color: var(--voice-primary);
  border: 2px solid var(--voice-primary);
}

.btn-outline:hover {
  background: var(--voice-primary);
  color: var(--white);
}

/* ============================================================
   カスタマイザー対応（重要）
   ============================================================ */
.wp-customizer .site-header {
  position: relative !important;
}

.wp-customizer body {
  padding-top: 0 !important;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --section-padding: 60px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .nav-list {
    display: none; /* モバイルメニュー実装時に調整 */
  }
}
