/* ==============================================
   puppy-page.css — 子犬ページ共通スタイル
   ============================================== */

/* パンくず */
.breadcrumb { background: #faf8f4; padding: 0.8rem 0; border-bottom: 1px solid rgba(184,150,12,0.1); }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #888; font-family: 'Noto Sans JP', sans-serif; }
.breadcrumb a { color: #B8960C; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #ccc; }

/* ヒーロー */
.puppy-page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.puppy-hero-img-wrap { position: absolute; inset: 0; }
.puppy-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.puppy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.8) 0%, rgba(10,8,6,0.3) 50%, rgba(10,8,6,0.05) 100%);
}
.puppy-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 900px;
  margin: 0 auto; padding: 0 2rem;
  text-align: center; color: #fff;
}
.puppy-hero-en {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #D4B86A; line-height: 1; margin-bottom: 0.5rem;
}
.puppy-hero-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300; letter-spacing: 0.3em;
}

/* ステータスバナー */
.status-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-radius: 4px;
  border-left: 4px solid;
}
.status-planned {
  background: rgba(80,100,60,0.07);
  border-color: #6a8a50;
}
.status-available {
  background: rgba(184,150,12,0.07);
  border-color: #B8960C;
}
.status-wait {
  background: rgba(100,100,100,0.07);
  border-color: #888;
}
.status-icon { font-size: 2rem; flex-shrink: 0; }
.status-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3a3228;
  margin-bottom: 0.5rem;
}
.status-detail {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: #6b5e4f;
  line-height: 1.9;
}

/* 子犬リスト（空の状態） */
.puppy-list-empty {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed rgba(184,150,12,0.3);
  border-radius: 4px;
  background: rgba(184,150,12,0.02);
}
.puppy-list-empty p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: #7a6e64;
  line-height: 2;
}

/* 子犬リスト（実際の子犬情報 ※将来用） */
.puppy-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.puppy-item {
  background: #fff;
  border: 1px solid rgba(184,150,12,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.puppy-item-img { aspect-ratio: 1; overflow: hidden; }
.puppy-item-img img { width: 100%; height: 100%; object-fit: cover; }
.puppy-item-info { padding: 1rem; }
.puppy-item-label { font-family: 'Noto Serif JP', serif; font-size: 0.95rem; color: #3a3228; font-weight: 600; }
.puppy-item-color { font-size: 0.8rem; color: #7a6e64; margin: 0.3rem 0; }
.puppy-item-status {
  display: inline-block; padding: 2px 10px;
  border-radius: 100px; font-size: 0.72rem; margin-top: 0.5rem;
}
.puppy-item-status.available { background: rgba(184,150,12,0.15); color: #8B7355; }
.puppy-item-status.reserved  { background: rgba(100,100,100,0.1); color: #777; }

/* 申し込みステップ */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.apply-step {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.apply-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: rgba(184,150,12,0.3);
  line-height: 1;
  font-weight: 300;
}
.apply-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem; font-weight: 600; color: #3a3228;
}
.apply-step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem; color: #7a6e64; line-height: 1.9;
}

/* CTA */
.puppy-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #faf6ef 0%, #f5efe3 100%);
  border-top: 1px solid rgba(184,150,12,0.15);
  border-bottom: 1px solid rgba(184,150,12,0.15);
}
.puppy-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: #3a3228; margin-bottom: 1rem;
}
.puppy-cta p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem; color: #7a6e64; margin-bottom: 2rem;
}

/* 他の犬種リンク（breed-pageと共有） */
.other-breeds { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 4rem; }
.other-breed-card {
  background: #fff; border: 1px solid rgba(184,150,12,0.2);
  border-radius: 4px; padding: 1.2rem 2rem;
  text-align: center; text-decoration: none;
  transition: all 0.3s ease; min-width: 150px;
}
.other-breed-card:hover { border-color: #B8960C; box-shadow: 0 4px 16px rgba(184,150,12,0.15); transform: translateY(-2px); }
.other-breed-card .en { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #B8960C; display: block; }
.other-breed-card .jp { font-family: 'Noto Sans JP', sans-serif; font-size: 0.75rem; color: #888; display: block; margin-top: 0.2rem; }
