/* ============================================================
   VEXON7 — Template 3: Outdoors & Adventure
   Full bleed photography, warm earthy tones, bold typography
   Forest #2d4739 / Coral #e76f51 / Cream #fafaf5
   ============================================================ */

:root {
  --primary:    #2d4739;
  --primary-lt: #3d6b54;
  --accent:     #e76f51;
  --accent-dk:  #c95a3d;
  --cream:      #fafaf5;
  --warm:       #f4f0e8;
  --white:      #ffffff;
  --text:       #2a2a2a;
  --text-lt:    #6b6b6b;
  --border:     #e0d9cd;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(45,71,57,0.1);
  --shadow-lg:  0 12px 40px rgba(45,71,57,0.16);
  --font-head:  'Bebas Neue', 'Arial Black', sans-serif;
  --font-sub:   'Raleway', Arial, sans-serif;
  --font-body:  'Lato', Arial, sans-serif;
  --max-w:      1160px;
  --header-h:   70px;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:wght@400;600;700;800&family=Lato:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; }
.section-warm { background: var(--warm); }

/* ── HEADER ── */
.site-header {
  background: rgba(45,71,57,0.97);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); letter-spacing: 1px; line-height: 1; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { color: rgba(255,255,255,0.82); font-family: var(--font-sub); font-size: 0.875rem; font-weight: 600; padding: 7px 14px; border-radius: 6px; transition: all 0.2s; }
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.main-nav .nav-cta { background: var(--accent); color: var(--white) !important; padding: 8px 20px; border-radius: 7px; margin-left: 8px; font-weight: 700; }
.main-nav .nav-cta:hover { background: var(--accent-dk); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; background: var(--primary); padding: 12px 28px 20px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 600; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: var(--font-sub); }
.mobile-nav .nav-cta { background: var(--accent); color: var(--white); text-align: center; padding: 12px; border-radius: 8px; margin-top: 12px; border-bottom: none; }

/* ── HERO — Full Bleed ── */
.hero {
  position: relative; min-height: 580px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 60px;
  max-width: 700px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--white);
  font-family: var(--font-sub); font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); letter-spacing: 2px;
  line-height: 1.05; margin-bottom: 16px;
}
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.65; margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; background: var(--accent); color: var(--white); padding: 13px 26px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; font-family: var(--font-sub); box-shadow: 0 4px 16px rgba(231,111,81,0.4); transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); color: var(--white); }
.btn-primary.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-outline { display: inline-block; background: transparent; color: var(--white); padding: 13px 26px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; font-family: var(--font-sub); border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-outline-dark { display: inline-block; background: transparent; color: var(--primary); padding: 10px 22px; border-radius: var(--radius); font-weight: 700; font-size: 0.88rem; font-family: var(--font-sub); border: 2px solid var(--primary); transition: all 0.2s; }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--primary); padding: 16px 28px; display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); font-size: 0.84rem; font-weight: 600; font-family: var(--font-sub); }
.trust-icon { color: var(--accent); font-size: 1.1rem; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-label { display: inline-block; font-family: var(--font-sub); font-size: 0.72rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); letter-spacing: 1px; }
.section-header p { color: var(--text-lt); margin-top: 8px; font-size: 0.97rem; }

/* ── ARTICLES ── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; border: 1px solid var(--border); }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { height: 210px; overflow: hidden; position: relative; background: var(--warm); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .card-img img { transform: scale(1.06); }
.card-cat { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--white); font-size: 0.68rem; font-weight: 700; font-family: var(--font-sub); padding: 3px 10px; border-radius: 20px; text-transform: uppercase; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-family: var(--font-sub); font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.35; }
.card-body h3 a { color: var(--primary); transition: color 0.2s; }
.card-body h3 a:hover { color: var(--accent); }
.card-body p { font-size: 0.87rem; color: var(--text-lt); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.card-meta { font-size: 0.76rem; color: var(--text-lt); margin-bottom: 12px; display: flex; gap: 12px; }
.read-more { color: var(--accent); font-weight: 700; font-size: 0.84rem; font-family: var(--font-sub); }
.view-all-wrap { text-align: center; margin-top: 36px; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.col-title { font-family: var(--font-sub); font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.live-dot { color: var(--accent); font-size: 0.75rem; }
.youtube-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.youtube-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.rss-feed { display: flex; flex-direction: column; gap: 14px; }
.rss-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: box-shadow 0.2s; }
.rss-item:hover { box-shadow: var(--shadow); }
.rss-thumb { width: 64px; height: 64px; flex-shrink: 0; border-radius: 8px; background: var(--warm); border: 1px solid var(--border); }
.rss-content h4 { font-family: var(--font-sub); font-size: 0.87rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; line-height: 1.35; }
.rss-content p { font-size: 0.8rem; color: var(--text-lt); line-height: 1.5; margin-bottom: 6px; }
.rss-content a { color: var(--accent); font-size: 0.78rem; font-weight: 700; font-family: var(--font-sub); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%); padding: 72px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url('/images/cta-bg.jpg') center/cover; opacity: 0.12; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); letter-spacing: 1px; margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1rem; position: relative; }
.cta-banner .btn-primary { position: relative; }

/* ── FOOTER ── */
.site-footer { background: #1a2a22; color: rgba(255,255,255,0.55); padding: 48px 0 28px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); margin-bottom: 8px; letter-spacing: 1px; }
.footer-brand p { font-size: 0.87rem; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; align-content: flex-start; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.84rem; font-family: var(--font-sub); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.footer-bottom p { font-size: 0.78rem; margin-bottom: 4px; }
.footer-disclaimer { color: rgba(255,255,255,0.3) !important; }

/* ── ARTICLE ── */
.article-hero { height: 460px; overflow: hidden; position: relative; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55)); }
.article-main { padding: 44px 0 64px; }
.article-container { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.breadcrumb { font-size: 0.82rem; color: var(--text-lt); margin-bottom: 24px; }
.breadcrumb a { color: var(--accent); }
.article-cat-badge { display: inline-block; background: var(--accent); color: var(--white); font-size: 0.7rem; font-weight: 700; font-family: var(--font-sub); padding: 3px 12px; border-radius: 20px; margin-bottom: 14px; text-transform: uppercase; }
.article-header h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); letter-spacing: 1px; margin-bottom: 16px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: var(--text-lt); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.article-body { font-size: 1.02rem; line-height: 1.85; }
.article-body h2 { font-family: var(--font-sub); font-size: 1.45rem; font-weight: 700; color: var(--primary); margin: 36px 0 14px; }
.article-body h3 { font-family: var(--font-sub); font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body ul, .article-body ol { margin: 14px 0 18px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.93rem; }
.article-body th { background: var(--primary); color: var(--white); padding: 11px 14px; text-align: left; font-family: var(--font-sub); font-weight: 600; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.article-body tr:nth-child(even) td { background: var(--warm); }
.article-body blockquote { border-left: 4px solid var(--accent); background: var(--warm); padding: 16px 20px; margin: 24px 0; font-style: italic; color: var(--primary); border-radius: 0 var(--radius) var(--radius) 0; }
.share-bar { display: flex; align-items: center; gap: 10px; margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--border); flex-wrap: wrap; }
.share-bar span { font-weight: 700; font-family: var(--font-sub); font-size: 0.9rem; }
.share-btn { padding: 7px 16px; border-radius: 6px; font-size: 0.82rem; font-weight: 700; font-family: var(--font-sub); color: var(--white); transition: opacity 0.2s; }
.share-btn:hover { opacity: 0.85; color: var(--white); }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-pin { background: #e60023; }
.related-section { background: var(--warm); padding: 56px 0; }
.related-title { font-family: var(--font-head); font-size: 2rem; color: var(--primary); margin-bottom: 28px; text-align: center; letter-spacing: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { min-height: 420px; }
  .hero-content { padding: 0 24px 40px; }
  .hero h1 { font-size: 2.5rem; }
  .two-col { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── SHARE BUTTONS (updated) ── */
.share-bar { display: flex; align-items: center; gap: 10px; margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--border); flex-wrap: wrap; }
.share-bar > span { font-weight: 700; font-size: 0.9rem; color: var(--primary); margin-right: 4px; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 8px; font-size: 0.84rem; font-weight: 700; color: var(--white); transition: all 0.2s; text-decoration: none; }
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); color: var(--white); }
.share-btn svg { flex-shrink: 0; }
.share-fb  { background: #1877f2; }
.share-fb:hover  { background: #1464d8; }
.share-tw  { background: #000000; }
.share-tw:hover  { background: #333333; }
.share-pin { background: #e60023; }
.share-pin:hover { background: #c0001e; }
.share-wa  { background: #25d366; }
.share-wa:hover  { background: #1ebe5a; }
