/* Golden Retriever konu detay sayfaları — sıcak, aile dostu, yuvarlak hatlı atmosfer.
   Sadece irklar/golden-retriever/*.html sayfalarında, style.css'e EK olarak yüklenir.
   Header/footer stilini değiştirmez — sadece .golden-detail kapsamındaki bölümleri etkiler. */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700&display=swap');

.golden-detail-hero {
  background: radial-gradient(circle at 15% 20%, #FBEFDA 0%, #FDF8F0 45%), var(--color-bg);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}

.golden-detail-hero::after {
  content: "🐾";
  position: absolute;
  right: -10px;
  top: 10px;
  font-size: 9rem;
  opacity: 0.06;
  transform: rotate(18deg);
}

.golden-detail-hero .eyebrow {
  background: var(--breed-accent-tint);
  color: var(--breed-accent-dark);
}

.golden-detail-hero h1 {
  font-family: 'Baloo 2', 'Fredoka', sans-serif;
  color: var(--breed-accent-dark);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.golden-traits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.golden-traits li {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--breed-accent-dark);
  padding: 7px 15px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.golden-detail-hero .hero-media img {
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  border: 6px solid #fff;
  height: 340px;
  box-shadow: var(--shadow-hover);
}

.golden-detail .section-head h2,
.golden-detail .article-body h2 {
  font-family: 'Baloo 2', 'Fredoka', sans-serif;
  color: var(--breed-accent-dark);
  font-size: 1.4rem;
}

.golden-steps {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 14px;
}

.golden-steps li {
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px 18px 62px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.golden-steps li strong {
  display: block;
  color: var(--breed-accent-dark);
  font-family: 'Baloo 2', 'Fredoka', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.golden-steps { counter-reset: golden-step; }

.golden-steps li::before {
  counter-increment: golden-step;
  content: counter(golden-step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--breed-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.golden-tip-box {
  background: var(--breed-accent-tint);
  border-radius: 18px;
  padding: 18px 22px;
  margin: 24px 0;
}

.golden-tip-box strong {
  color: var(--breed-accent-dark);
  font-family: 'Baloo 2', 'Fredoka', sans-serif;
  display: block;
  margin-bottom: 6px;
}

.golden-detail .topic-card,
.golden-detail .faq-accordion details,
.golden-detail .sidebar-card { border-radius: 18px; }

.golden-detail .cta-box { border-radius: 24px; }
