@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A8860A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #FFFFFF;
  --white-80: rgba(255,255,255,0.8);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.3);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.25; }
h1 { font-size: clamp(24px, 5vw, 44px); }
h2 { font-size: clamp(20px, 3.5vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 18px; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 14px 24px;
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: var(--gold); }
.nav-logo span { color: var(--white); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 13px;
  padding: 10px 22px; border-radius: 50px;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: var(--transition);
}
.btn-gold:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

/* HERO BLOG */
.blog-hero {
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 60%), var(--dark);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 64px 24px;
  text-align: center;
}
.blog-hero .tag {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.blog-hero h1 { margin-bottom: 16px; }
.blog-hero p.lead { max-width: 680px; margin: 0 auto 28px; font-size: 18px; }
.blog-meta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; color: var(--white-80); font-size: 14px; }
.blog-meta span { display: flex; align-items: center; gap: 6px; }

/* ARTICLE */
article.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px;
}
article.post-body h2 { color: var(--white); margin: 40px 0 16px; padding-top: 8px; border-top: 1px solid rgba(212,175,55,0.15); }
article.post-body h3 { color: var(--gold); margin: 28px 0 12px; font-size: 20px; }
article.post-body strong { color: var(--gold); font-weight: 700; }
article.post-body ul { padding-left: 0; margin-bottom: 18px; }
article.post-body ul li { padding: 8px 0 8px 28px; position: relative; font-size: 16px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.05); }
article.post-body ul li::before { content: '✅'; position: absolute; left: 0; }

/* CTA BOX */
.cta-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin: 44px 0;
}
.cta-box h3 { margin-bottom: 12px; }
.cta-box p { margin-bottom: 20px; }
.btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 16px;
  padding: 16px 36px; border-radius: 50px;
  min-height: 52px; width: 100%; max-width: 360px;
  transition: var(--transition);
}
.btn-primary-lg:hover { transform: scale(1.04); box-shadow: var(--shadow-gold); }

/* RELATED POSTS */
.related-posts {
  background: var(--dark-2);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 60px 24px;
}
.related-posts h2 { text-align: center; margin-bottom: 32px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.related-card {
  background: var(--dark-3);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.related-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.related-card .rtag { font-size: 11px; color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.related-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--white); }
.related-card p { font-size: 14px; margin: 0 0 12px; }
.related-card a.read-more { color: var(--gold); font-size: 13px; font-weight: 700; font-family: 'Montserrat', sans-serif; }

/* FOOTER */
footer {
  background: var(--dark-3);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 32px 24px;
  text-align: center;
}
.footer-links-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.footer-links-row a { font-size: 13px; color: var(--white-80); transition: color 0.2s; }
.footer-links-row a:hover { color: var(--gold); }
.footer-links-row span { color: rgba(255,255,255,0.2); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-copy span { color: var(--gold); }

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 44px 20px; }
  article.post-body { padding: 40px 20px; }
}
