/* ─────────────────────────────────────────────────────────────
 * iloveshoppingforyou.com — warm coral/gold theme
 * Per docs/SNS/iloveshoppingforyou_*_plan_v1.md §의사결정 #7
 * ───────────────────────────────────────────────────────────── */

:root {
  --primary-color: #d97757;       /* warm coral */
  --primary-dark:  #b85d3e;
  --accent-color:  #f9a825;       /* warm gold */
  --accent-dark:   #c97e00;
  --bg-cream:      #faf6f2;
  --text-dark:     #2c2420;
  --text-muted:    #786b65;
  --border-soft:   #e8e0db;
}

* { box-sizing: border-box; }

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.lead { color: var(--text-muted); }

a { color: var(--primary-color); }
a:hover { color: var(--primary-dark); }

/* ── Bootstrap button overrides ─────────────────────────────── */
.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 500;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-warning {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 600;
}
.btn-warning:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}

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

/* ── Navbar ──────────────────────────────────────────────────── */
.ilsfy-navbar {
  background: white;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ilsfy-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.ilsfy-logo .logo-heart {
  font-size: 1.2rem;
}
.ilsfy-logo .logo-text em {
  font-style: italic;
  color: var(--primary-color);
}

.ilsfy-navbar .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.ilsfy-navbar .nav-link:hover {
  color: var(--primary-color);
}

/* ── Hero ───────────────────────────────────────────────────── */
.ilsfy-hero {
  background: linear-gradient(135deg, rgba(217,119,87,0.08) 0%, rgba(249,168,37,0.08) 100%);
}

/* ── Persona cards (homepage grid) ──────────────────────────── */
.persona-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 12px;
  overflow: hidden;
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

/* ── Persona landing page ──────────────────────────────────── */
.persona-hero {
  background: white;
}

.persona-avatar {
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── Blog post ──────────────────────────────────────────────── */
.blog-post .blog-content {
  font-size: 1.08rem;
  line-height: 1.75;
}
.blog-post .blog-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.blog-post .blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.blog-post .blog-content p {
  margin-bottom: 1.25rem;
}
.blog-post .blog-content ul, .blog-post .blog-content ol {
  margin-bottom: 1.5rem;
}
.blog-post .blog-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}
.blog-post .blog-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.affiliate-products .card-img-top {
  background: white;
}

.adsense-sidebar {
  position: fixed;
  right: 20px;
  top: 100px;
  width: 300px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.ilsfy-footer {
  background: white;
  border-top: 1px solid var(--border-soft);
}

.ilsfy-footer .footer-brand {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.ilsfy-footer a { color: var(--text-muted); }
.ilsfy-footer a:hover { color: var(--primary-color); }

/* ── Legal pages (privacy, terms) ──────────────────────────── */
.ilsfy-legal h1 {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}
.ilsfy-legal h2 {
  color: var(--primary-dark);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .display-4 { font-size: 2rem; }
  .display-5 { font-size: 1.75rem; }
  .lead { font-size: 1.05rem; }

  .persona-avatar {
    width: 180px !important;
    height: 180px !important;
  }
}
