/*
Theme Name: GeneratePress Child
Theme URI: https://bagsignal.com
Author: Bag Signal Research
Author URI: https://bagsignal.com
Description: A child theme for GeneratePress
Template: generatepress
Version: 1.0.0
*/
/* ==========================
   Custom Wrapper Reference
   ==========================

   .about-page-wrapper
     → Used on About page
     → Centers content, limits width, improves mobile readability

   .home-hero-banner
     → Used on Homepage (Hero section)
     → Full width banner with background image and CTA

   .blog-post-wrapper
     → Used for individual blog posts
     → Adds spacing and adjusts typography

*/
/* =Custom Styles
-------------------------------------------------- */

/* 🌑 Global Dark Theme Reset */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
  color: #e6e6e6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* 🔧 Centered Container Layout */
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 💬 Hero Section */
header.hero {
  background: linear-gradient(145deg, #121212, #1e1e1e);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.05);
  padding: 3rem 1rem;
  margin-bottom: 2rem;
}

header.hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

header.hero .tagline {
  font-size: 1.25rem;
  color: #bbbbbb;
  margin-bottom: 1.5rem;
}

/* 🔘 Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #4da6ff;
  color: #0d0d0d;
}

.btn.primary:hover {
  background-color: #82cfff;
}

.btn.secondary {
  background-color: transparent;
  border: 1px solid #4da6ff;
  color: #4da6ff;
}

.btn.secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* 🧱 Intro Section */
section.intro {
  background-color: #161616;
  padding: 2rem;
  border-radius: 10px;
  line-height: 1.8;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
  width: 100%;
  margin-bottom: 2rem;
}

section.intro h2 {
  color: #ffffff;
  margin-top: 0;
}

/* 🌐 Link Styling */
a {
  color: #4da6ff;
}

a:hover {
  color: #82cfff;
}

/* Hide the entire "Built with GeneratePress" line */
.site-info {
  display: none !important;
}

/* 🏠 Header + Navigation Bar */
.site-header,
.main-navigation,
.main-navigation ul ul {
  background-color: #0d0d0d !important;
  border-bottom: 1px solid #1a1a1a;
  padding: 0 !important;
  margin: 0 !important;
}

.main-navigation .inside-navigation {
  padding: 10px 20px !important;
}

.main-navigation a {
  color: #e6e6e6 !important;
  font-weight: 500;
  font-size: 15px;
}

.main-navigation a:hover {
  color: #4da6ff !important;
}

/* 🔻 Blog Post Area & Content Wrappers */
.site,
#page,
.site-content,
.content-area,
.site-main,
.inside-article,
.entry-content,
.wp-block-group {
  background: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* 🧼 Footer Cleanup */
footer,
#colophon {
  background: transparent !important;
  color: #888;
  text-align: center;
  padding: 1rem 0;
  margin: 0;
  border: none;
}
/* 🧹 Hide all scrollbars (cross-browser) but keep vertical scrolling */
html, body {
  overflow-x: hidden !important;
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE/Edge */
}

body::-webkit-scrollbar {
  display: none;                 /* Chrome/Safari */
}
/* 🧼 Blog Page Cleanup */
.byline, /* Hides "by Bag Signal" */
.cat-links, /* Hides post categories like 'Uncategorized' */
.comments-link, /* Hides "1 Comment" or similar */
#comments, /* Hides the comment section on single posts */
.comment-respond, /* Hides comment form on single posts */
.entry-meta, /* Optional: hides the entire meta bar if needed */
.logged-in-as { 
  display: none !important;
}
/* 🎯 Change mobile hamburger icon lines to white */
.menu-toggle {
  color: #ffffff !important;
}

.menu-toggle:before,
.menu-toggle:after {
  background-color: #ffffff !important;
}
/* 🧭 Center About page content area on wide screens */
.page .inside-article {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 0 1rem;
}
/*ABOUT PAGE CSS - Center content on both desktop and mobile for about page
.about-page-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .about-page-wrapper {
    padding: 2rem 1rem;
    text-align: center;
  }
}
/* === Bullet alignment fix for About page on mobile === */
.page-id-72 .about-page-wrapper ul {
  padding-left: 1.5rem;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
/*BLOG POST CSS/ affects all blog posts that use the custom html block
.blog-post-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
}

.blog-post-wrapper h1 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
}

.blog-post-wrapper h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-wrapper .intro {
  font-style: italic;
  opacity: 0.9;
}

.blog-post-wrapper ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.callout {
  background: #222;
  border-left: 4px solid #ff4444;
  padding: 1rem;
  margin: 2rem 0;
  font-weight: 600;
}

.callout.green {
  border-left-color: #44ff44;
  background: #1a1a1a;
}

.blog-post-wrapper .disclaimer {
  font-size: 0.8em;
  opacity: 0.6;
  text-align: center;
  margin-top: 3rem;
}