/* ── GigToRiches Custom Theme CSS ── */
:root {
  --navy:     #0f2244;
  --navy2:    #1a3a6e;
  --gold:     #c9a84c;
  --gold2:    #e8c97a;
  --white:    #ffffff;
  --offwhite: #f8f7f4;
  --gray:     #6b7280;
  --lightgray:#e8e8e8;
  --text:     #1a1a2e;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif !important; color: var(--text); overflow-x: hidden; }

/* NAV */
.gtr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,34,68,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 40px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.gtr-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; }
.gtr-logo span { color: var(--gold); }
.gtr-nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.gtr-nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.gtr-nav-links a:hover { color: var(--gold); }
.gtr-nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 8px 20px !important; border-radius: 4px; }
.gtr-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }
@media (max-width: 768px) {
  .gtr-nav { padding: 0 20px; }
  .gtr-nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px; gap: 16px; }
  .gtr-nav-links.open { display: flex; }
  .gtr-menu-btn { display: block; }
}

/* HERO */
.gtr-hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}
.gtr-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.gtr-hero-line {
  position: absolute; top: 0; right: 180px; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3), transparent);
}
.gtr-hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1;
}
.gtr-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 14px; border-radius: 100px;
  animation: gtrFadeUp 0.5s ease both;
}
.gtr-hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.gtr-hero h1 {
  font-family: 'Playfair Display', serif !important; font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px;
  animation: gtrFadeUp 0.6s 0.1s ease both;
}
.gtr-hero h1 em { font-style: italic; color: var(--gold); }
.gtr-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 40px; font-weight: 300; animation: gtrFadeUp 0.6s 0.2s ease both; }
.gtr-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: gtrFadeUp 0.6s 0.3s ease both; }
.gtr-btn-primary {
  background: var(--gold); color: var(--navy); padding: 14px 32px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-decoration: none;
  text-transform: uppercase; transition: all 0.2s; display: inline-block;
}
.gtr-btn-primary:hover { background: var(--gold2); transform: translateY(-2px); color: var(--navy); }
.gtr-btn-secondary {
  border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 32px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-decoration: none;
  text-transform: uppercase; transition: all 0.2s; display: inline-block;
}
.gtr-btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.gtr-hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1); animation: gtrFadeUp 0.6s 0.4s ease both;
}
.gtr-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.gtr-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* HERO CARD */
.gtr-hero-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; padding: 36px; position: relative;
  animation: gtrFadeUp 0.7s 0.3s ease both;
}
.gtr-hero-card::before {
  content: 'Latest Post'; position: absolute; top: -12px; left: 24px;
  background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.gtr-card-category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.gtr-card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; line-height: 1.4; margin-bottom: 16px; }
.gtr-card-excerpt { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.gtr-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.gtr-card-avatar { width: 32px; height: 32px; background: linear-gradient(135deg, var(--gold), var(--navy2)); border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; color: white; font-weight: 700; }
.gtr-read-link { color: var(--gold); text-decoration: none; font-size: 0.8rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; transition: gap 0.2s; }
.gtr-read-link:hover { gap: 10px; }

/* TRUST BAR */
.gtr-trust-bar { background: var(--offwhite); border-bottom: 1px solid var(--lightgray); padding: 18px 40px; }
.gtr-trust-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.gtr-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; }

/* SECTIONS */
.gtr-posts-section, .gtr-about-section { padding: 90px 40px; background: #fff; }
.gtr-categories-section { padding: 90px 40px; background: var(--navy); }
.gtr-section-inner { max-width: 1100px; margin: 0 auto; }
.gtr-section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.gtr-section-title { font-family: 'Playfair Display', serif !important; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.gtr-section-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.7; max-width: 500px; font-weight: 300; margin-bottom: 0; }
.gtr-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }

/* POSTS GRID */
.gtr-posts-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.gtr-post-card { border: 1px solid var(--lightgray); border-radius: 12px; overflow: hidden; transition: all 0.25s; background: #fff; }
.gtr-post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(15,34,68,0.1); border-color: var(--navy); }
.gtr-post-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.gtr-post-img--big { height: 240px; }
.gtr-post-body { padding: 22px; }
.gtr-post-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.gtr-post-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.gtr-post-card--big .gtr-post-title { font-size: 1.2rem; }
.gtr-post-excerpt { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.gtr-post-footer { display: flex; align-items: center; justify-content: space-between; font-size: 0.72rem; color: var(--gray); border-top: 1px solid var(--lightgray); padding-top: 12px; }
.gtr-post-read { color: var(--navy); font-weight: 700; text-decoration: none; font-size: 0.75rem; }
.gtr-post-read:hover { color: var(--gold); }
.gtr-empty-posts { text-align: center; padding: 60px; color: var(--gray); font-size: 1.1rem; background: var(--offwhite); border-radius: 12px; }

/* CATEGORIES */
.gtr-cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.gtr-cat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); border-radius: 12px; padding: 28px 24px; text-align: center; transition: all 0.2s; text-decoration: none; display: block; }
.gtr-cat-card:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); transform: translateY(-3px); }
.gtr-cat-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.gtr-cat-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.gtr-cat-count { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* ABOUT */
.gtr-about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gtr-about-img-box { position: relative; }
.gtr-about-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), var(--navy2)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.gtr-about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy); border-radius: 12px; padding: 16px 20px; text-align: center; font-weight: 700; box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.gtr-badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; display: block; line-height: 1; }
.gtr-badge-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.gtr-about-text p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.gtr-about-text p strong { color: var(--navy); font-weight: 700; }

/* NEWSLETTER */
.gtr-newsletter-section { background: var(--navy); padding: 80px 40px; position: relative; overflow: hidden; }
.gtr-newsletter-section::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%); pointer-events: none; }
.gtr-newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.gtr-newsletter-form { display: flex; border-radius: 6px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.gtr-newsletter-form input { flex: 1; padding: 16px 20px; border: none; font-family: 'Lato', sans-serif; font-size: 0.9rem; outline: none; }
.gtr-newsletter-form button { background: var(--gold); color: var(--navy); border: none; padding: 16px 28px; font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.gtr-newsletter-form button:hover { background: var(--gold2); }
.gtr-newsletter-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 14px; }

/* FOOTER */
.gtr-footer { background: #080f1e; padding: 60px 40px 30px; }
.gtr-footer-inner { max-width: 1100px; margin: 0 auto; }
.gtr-footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.gtr-footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; }
.gtr-footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.gtr-footer-col ul { list-style: none; padding: 0; margin: 0; }
.gtr-footer-col ul li { margin-bottom: 10px; }
.gtr-footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.gtr-footer-col ul a:hover { color: #fff; }
.gtr-footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.gtr-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.gtr-footer-copy span { color: var(--gold); }

/* ANIMATIONS */
@keyframes gtrFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .gtr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .gtr-posts-grid { grid-template-columns: 1fr; }
  .gtr-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .gtr-about-inner { grid-template-columns: 1fr; }
  .gtr-footer-top { grid-template-columns: 1fr 1fr; }
  .gtr-hero { padding: 100px 20px 60px; }
  .gtr-posts-section, .gtr-categories-section, .gtr-about-section { padding: 60px 20px; }
}
