/*
Theme Name: Geldverdienenmitgold Premium
Theme URI: https://geldverdienenmitgold.de
Author: Geldverdienenmitgold.de
Description: Professionelles Gold-Ratgeber Theme – DSGVO-konform, keine externen Ressourcen.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: geldverdienenmitgold
*/

/*
  DSGVO-Hinweis Schriften:
  Keine Google Fonts oder andere externe Schriftquellen.
  Es werden ausschließlich systemseitig verfügbare Schriften verwendet.
  Für optionales Self-Hosting: Playfair Display und Lato können über
  google-webfonts-helper.herokuapp.com heruntergeladen und lokal
  im Ordner /assets/fonts/ eingebunden werden.
*/

/* =============================================
   CSS VARIABLES & RESET
   ============================================= */
:root {
  --gold-primary:   #c9a227;
  --gold-light:     #f0c84a;
  --gold-dark:      #8a6e1a;
  --bg-dark:        #0d0d0d;
  --bg-card:        #161616;
  --bg-card2:       #1e1e1e;
  --text-primary:   #f0ede6;
  --text-muted:     #9a9080;
  --text-light:     #c8c0b0;
  --border:         rgba(201,162,39,0.18);
  --shadow-gold:    0 4px 32px rgba(201,162,39,0.12);
  --radius:         8px;
  --radius-lg:      16px;
  /* Systemschriften – kein externer Abruf, DSGVO-konform */
  --font-heading:   Georgia, 'Times New Roman', serif;
  --font-body:      'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width:      1140px;
  --transition:     0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1.2rem; color: var(--text-light); }
ul, ol { padding-left: 1.4rem; margin-bottom: 1.2rem; color: var(--text-light); }
li { margin-bottom: 0.4rem; }

.gold-text { color: var(--gold-primary); }
.lead { font-size: 1.15rem; color: var(--text-light); line-height: 1.8; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.5);
  color: #0d0d0d;
}
.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}
.btn-outline:hover {
  background: var(--gold-primary);
  color: #0d0d0d;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(201,162,39,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* =============================================
   SECTION LABELS / TAGS
   ============================================= */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* =============================================
   DIVIDERS
   ============================================= */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 32px;
}
.gold-divider.centered { margin: 16px auto 32px; }

/* =============================================
   DISCLAIMER BOX
   ============================================= */
.disclaimer-box {
  background: rgba(201,162,39,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 40px 0;
}
.disclaimer-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.disclaimer-box strong { color: var(--gold-primary); }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
#site-header.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}
.logo-text span { color: var(--gold-primary); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

/* Desktop Nav */
.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
  align-items: center;
}
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a,
.main-nav ul li.current_page_item a {
  color: var(--gold-primary);
  background: rgba(201,162,39,0.08);
}
.main-nav ul li.menu-cta a {
  background: var(--gold-primary);
  color: #0d0d0d;
  font-weight: 700;
  margin-left: 8px;
}
.main-nav ul li.menu-cta a:hover {
  background: var(--gold-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    padding: 24px;
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul li a { padding: 14px 16px; font-size: 1rem; }
  .main-nav ul li.menu-cta a { margin-left: 0; margin-top: 12px; text-align: center; }
}

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(201,162,39,0.04) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 28px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold-primary); }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Page Hero (für Unterseiten) */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201,162,39,0.07) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-primary); }
.breadcrumb-sep { opacity: 0.4; }

/* =============================================
   AFFILIATE PRODUCT BOXES
   ============================================= */
.affiliate-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.affiliate-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
}
.affiliate-box:hover {
  border-color: rgba(201,162,39,0.5);
  box-shadow: var(--shadow-gold);
}
.affiliate-box-emoji { font-size: 2.5rem; flex-shrink: 0; }
.affiliate-box-content { flex: 1; }
.affiliate-box h4 { margin-bottom: 8px; color: var(--text-primary); }
.affiliate-box p { font-size: 0.9rem; margin-bottom: 16px; }
.affiliate-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.affiliate-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* =============================================
   TABLE OF CONTENTS
   ============================================= */
.toc-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.toc-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 16px;
}
.toc-box ol {
  margin: 0;
  padding-left: 1.2rem;
}
.toc-box ol li { margin-bottom: 8px; }
.toc-box ol li a { color: var(--text-light); font-size: 0.92rem; }
.toc-box ol li a:hover { color: var(--gold-primary); }

/* =============================================
   CONTENT PROSE (Artikel)
   ============================================= */
.prose-content {
  max-width: 780px;
}
.prose-content h2 {
  margin-top: 52px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.prose-content h3 { margin-top: 36px; margin-bottom: 14px; }
.prose-content p { font-size: 1.02rem; line-height: 1.85; }
.prose-content ul li, .prose-content ol li { line-height: 1.7; }
.prose-content .highlight-box {
  background: rgba(201,162,39,0.07);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.prose-content .highlight-box p { margin: 0; color: var(--text-primary); }

/* =============================================
   STEP BOXES
   ============================================= */
.steps-list { list-style: none; padding: 0; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,0.1);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 1rem;
}
.steps-list li .step-content h4 { margin-bottom: 6px; }
.steps-list li .step-content p { margin: 0; font-size: 0.95rem; }

/* =============================================
   INFO TABLE
   ============================================= */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.95rem;
}
.info-table th {
  background: rgba(201,162,39,0.1);
  color: var(--gold-primary);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--border);
}
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,0.02); }

/* =============================================
   PROS / CONS
   ============================================= */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.pros-box { border-top: 3px solid #4caf50; }
.cons-box { border-top: 3px solid #ef5350; }
.pros-box h4 { color: #4caf50; margin-bottom: 16px; }
.cons-box h4 { color: #ef5350; margin-bottom: 16px; }
.pros-box ul li::marker { color: #4caf50; }
.cons-box ul li::marker { color: #ef5350; }
@media (max-width: 640px) { .pros-cons-grid { grid-template-columns: 1fr; } }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { margin: 28px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  transition: all var(--transition);
}
.faq-question:hover { background: var(--bg-card2); }
.faq-question::after {
  content: '+';
  color: var(--gold-primary);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--bg-card);
}
.faq-answer p { margin: 0; font-size: 0.95rem; }
.faq-item.open .faq-answer { display: block; }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(201,162,39,0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-card2) 0%, rgba(201,162,39,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,13,13,0.6) 100%);
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text-primary); }
.blog-card h3 a:hover { color: var(--gold-primary); }
.blog-card p { font-size: 0.88rem; flex: 1; margin-bottom: 16px; }
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  margin-top: auto;
}

/* =============================================
   SIDEBAR
   ============================================= */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) { .content-with-sidebar { grid-template-columns: 1fr; } }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-link-list { list-style: none; padding: 0; margin: 0; }
.sidebar-link-list li { border-bottom: 1px solid var(--border); }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.sidebar-link-list li a:hover { color: var(--gold-primary); padding-left: 4px; }

/* =============================================
   TRUST / BADGES SECTION
   ============================================= */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item span:first-child { font-size: 1.4rem; }

/* =============================================
   NEWSLETTER / CTA SECTIONS
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, transparent 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 12px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--gold-primary); }

.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 28px;
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.78rem; color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--gold-primary); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold-primary);
  color: #0d0d0d;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top:hover { transform: translateY(-3px); background: var(--gold-light); }
.scroll-top.visible { display: flex; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-in { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* =============================================
   SINGLE POST / PAGE
   ============================================= */
.post-content {
  padding: 80px 0;
}
.entry-header { margin-bottom: 40px; }
.entry-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.entry-meta .cat-tag {
  background: rgba(201,162,39,0.1);
  color: var(--gold-primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-top: 40px; margin-bottom: 16px; }
.entry-content p,
.entry-content ul,
.entry-content ol { color: var(--text-light); font-size: 1.02rem; line-height: 1.85; }
.entry-content a { color: var(--gold-primary); }
.entry-content blockquote {
  border-left: 4px solid var(--gold-primary);
  padding: 16px 24px;
  background: rgba(201,162,39,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-primary);
}

/* =============================================
   404 & MISC
   ============================================= */
.not-found-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}
.not-found-number {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -20px;
}

/* =============================================
   WP ALIGNMENT CLASSES
   ============================================= */
.wp-block-image { margin: 28px 0; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.clearfix::after { content: ''; display: table; clear: both; }
