

/* ---------- Root Variables ---------- */
:root {
--display-color: #2a2a2a;
  --heading-color: #2a2a2a;
  --body-color:    #000000;
  --bg-light:      #f5f5f5;
  --box-light:     #ccddff;
  --accent-dark:   #ff4000;
  --white:         #ffffff;
}

/* ---------- Global Resets ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--body-color);
  background: var(--bg-light);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

/* ---------- Containers ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--bg-light);
  padding: 0.5rem 0 0.25rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo + left-aligned nav */
  gap: 3rem;
}

.logo img { height: 48px; }

.main-nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  text-decoration: none;
  color: var(--display-color);
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--accent-dark); }

/* --- global other ---*/
.hero-text {
  display: flex;
  flex-direction: column;
}


.page-title {
  color: #2a2a2a;
  font-family: 'Inter', sans-serif;
  text-align: left;
}


/* --- HAMBURGER NAV --- */
/* Only show hamburger on small screens */
.nav-toggle {
  display: none; /* hide on desktop */
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001; /* keep it on top */
}

.nav-toggle .bar {
  width: 22px;
  height: 3px;
  background: var(--display-color);
}

/* Mobile Menu Label (Text + Hamburger) */
.mobile-menu-label {
  display: none; /* hidden on desktop */
  align-items: center;
  gap: 0.5rem;
}

.menu-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--display-color);
}



/* ---------- Hero Section ---------- */
.hero {
  background: var(--bg-light);
  padding: 2rem 0 1rem;
  margin-bottom: 2rem;
}

.hero-flex {
  display: flex;
 flex-wrap: wrap;
  /*flex-wrap: nowrap !important;*/
  /*flex-direction: row !important;*/
  gap: 2rem;
  align-items: center;
  /*align-items: flex-start;*/
  justify-content: space-between;
}

.hero-text {
  order: 1 !important;
    flex: 1 1 480px;
  max-width: 600px;
}


.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #2a2a2a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
  }


.hero-image {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2 !important;
  margin-bottom: 0.2rem;
}


/*.hero-image picture, .hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0.4rem;
} */

.hero-image picture {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0.4rem;
}


.hero-text::before,
.hero-text::after,
.hero-text *,
.hero-text *::before,
.hero-text *::after {
  content: none !important;
  /* display: inline !important; */
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}






/* ---------- How It Works Section ---------- */
.how-it-works {
  background: var(--bg-light);
  padding: 5rem 0 3rem;
  text-align: center;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  color: var(--display-color);
  margin-bottom: 3rem;
}

.how-steps {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.how-step {
  background: var(--box-light);
  color: var(--body-color);
  text-decoration: none;
  flex: 1 1 280px;
  max-width: 340px;
  padding: 2rem;
  border-radius: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.how-step h3 {
  font-family: serif;
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
  color: var(--heading-color);
}

.how-step p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}


.step-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
  font-family: 'Alfa Slab One', serif; /* Optional: gives more "Western" boldness */
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-light);
  text-align: center;
}

.testimonials-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 2.5rem;
}

.glider-contain {
  position: relative;
}

.testimonial-slide {
  background: var(--box-light);
  padding: 2rem;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  min-height: 180px;
  /*display: flex;*/
  /*flex-direction: column;*/
  justify-content: center;
}

.testimonial-slide p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--body-color);
}

.testimonial-slide span {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--heading-color);
}

.glider-prev, .glider-next {
  background: var(--accent-dark);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.glider-prev:hover, .glider-next:hover {
  background: #b52b00;
}
/*.glider-prev,
.glider-next {
  display: none !important;
}*/

/* ---------- Final CTA Row ---------- */
.cta {
  margin-bottom: 3rem;  /* adds breathing room above footer */
}

.cta-box {
  background:  #3366cc;
  color: var(--white);
  flex: 1 1 280px;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.cta-box:hover {
  transform: translateY(-6px);
}

.cta-box h3 {
  font-family: serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-box p {
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Accordion ---------- */
.samples-accordion-wrapper {
  max-width: 700px;
  margin: 4rem auto;
  background: var(--box-light);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* ---------- BLOG ---------- */
.blog-header {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  text-align: center;
  color: #2a2a2a;
  font-family: 'Inter', sans-serif;
}

.blog-category-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.category-card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.category-card picture img {
  width: 100%;
  height: auto;
  display: block;
}

.category-btn {
  display: block;
  background-color: #3366cc; /*var(--accent-dark, #cc3300);*/
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.category-blurb {
  font-size: 0.95rem;
  padding: 1rem;
  color: #2a2a2a;
  flex-grow: 1;
}

.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-card-link:hover .category-btn {
  text-decoration: underline;
}

/*-------RESOURCES BLOG ----------*/
/* Outer container for resource pages */
.resource-wrapper {
  background: var(--box-light);
  padding: 2rem 1rem;
  border-radius: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Inner content box */
.resource-article-box {
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/*----IMG BOXES RESOURVES -----*/
.img-side-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  align-items: flex-start;
}

/* Default mobile-first: stack image and text */
.img-side-split .image-col,
.img-side-split .text-col {
  flex: 1 1 100%;
}

.img-side-split .text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-side-split .text-col h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.img-side-split .text-col p {
  margin-bottom: 1rem;
}

.img-side-split .text-col .button {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
}

@media (min-width: 768px) {
  .img-side-split {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin: 2rem 0;
  }

  .img-side-split .image-col,
  .img-side-split .text-col {
    flex: 1 1 0;
  }

  .img-side-split .image-col,
  .img-side-split .text-col {
    max-width: calc(50% - 1rem); /* 2rem gap / 2 = 1rem per side */
  }
}




/*------------SERVICES ----------*/

.services-wrapper {
  background: var(--box-light); /* same light brown tone */
  padding: 2rem 1rem;
  border-radius: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-box {
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-block + hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid #ccc;
}

.service-block ul {
  padding-left: 1.2rem;
  list-style-type: none;
}

.service-block ul li::before {
  content: "• ";
  color: var(--accent-dark);
  font-weight: bold;
  margin-right: 0.3rem;
}

.service-block a.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
}

.other-services hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #ccc;
}

.services-nav {
  font-weight: bold;
  font-size: 0.95rem;
  margin: 1rem 0 2rem;
  text-align: center;
  line-height: 1.6;
}

.services-box .services-nav a {
  color: var(--accent-dark);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
}

.services-box .services-nav a:hover {
  text-decoration: underline;
}

.back-to-top {
  text-align: right;
  font-size: 0.85rem;
  margin-top: 1em;
  margin-bottom: 1em;
}

.back-to-top a {
  text-decoration: none;
  color: var(--accent-dark);
}

.back-to-top a:hover {
  text-decoration: underline;
}



/* ---------- Footer ---------- */
.site-footer {
  background: #000033;
  border-top: 1px solid #ccc;
  padding: 2rem 0;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Button Styles */

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 0.35rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

/* General Purpose Buttons (non-purchase) */
.btn-primary {
  background: var(--accent-dark); /* #cc3300 */
  color: var(--white);
  transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #b22d00;
}

.btn-secondary {
  background: #ffcc00;
  color: var(--body-color);
  transition: transform 0.2s, background 0.2s;
}

.btn-secondary:hover {
  transform: scale(1.05);
  background: #e6b800;
}



/* Purchase-Related Buttons (Amazon Orange) */
.btn-purchase {
  background: #ff9900;
  color: var(--body-color);
  transition: transform 0.2s, background 0.2s;
}

.btn-purchase:hover {
  transform: scale(1.05);
  background: #e88b00;
}


/* --- BLOG ARTICLES --- */
.blog-wrapper {
  background: var(--box-light);
  padding: 2rem 1rem;
  border-radius: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.blog-article-box {
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.blog-intro-text {
  color: #2a2a2a;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

/* CALLOUT BOXES */

.callout-box {
  background-color: #ccddff;
  color: #2a2a2a;
  padding: 1rem 1.25rem;
  border-left: 4px solid #5577cc;
  margin: 1.5rem 0;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 6px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);

}

.callout-box::before {
  content: "❝ ";
  font-size: 2rem;
  top: 0.5rem;
  left: 0.75rem;
  color: #5577cc;
}

.callout-box::after {
  content: "❞";
  font-size: 2rem;
  bottom: 0.5rem;
  right: 0.75rem;
  color: #5577cc;
}

.callout-box.no-quotes::before,
.callout-box.no-quotes::after {
  content: none !important;
  display: none !important;
}

.callout-box.no-italics {
  font-style: normal !important;
}

/* --- PRIVACY STYLES --- */
.legal-section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.legal-wrapper {
  max-width: 1200px;
  margin-inline: auto;
  font-family: Arial, sans-serif;
  color: #333;
}

.legal-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-subheading {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  color: #000;
}

.legal-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}


/* --- Footers --- */
.site-footer,
.payment-footer {
  background: #000033;
  /*border-top: 1px solid #ccc;*/
  padding:3rem 0 2rem;
  font-size: 0.95rem;
  color: var(--white);
  a:link { color: var(--white); text-decoration: none;}
  a:visited {color: var(--accent-dark);}
  a:hover {color: var(--white); text-decoration: underline;}
  a:active {color: var(--accent-dark); text-decoration: underline;}
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


/* ---------- Responsive Tweaks ---------- */
/* ---------- Media Queries ---------- */
/*---640---*/
@media (max-width: 640px) {
  .nav-wrapper { gap: 1.2rem; }
  .main-nav ul { gap: 1rem; }
  .main-nav li { font-size: 0.9rem; }
  .hero { padding: 1.5rem 0 0; }

  .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .how-step {
    max-width: 100%;
  }
}

/* ---------- Media Queries ---------- */
/* ≤768 px : mobile & small-tablet */

/* -- HERO -- */

@media (max-width: 768px) {
  .hero-text {
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
    flex: 0 1 auto !important;
    order: 1;
  }

  .hero-text * {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
  }

  .hero-text p.intro-text {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-text p.intro-text:last-of-type {
    margin-bottom: 0 !important;
  }

  .hero-image {
    order: 2;
  }

  .hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }


  .hero-text h1 {
    margin-bottom: 1rem !important;  /* was 0.5rem */
  }

  .intro-text {
    line-height: 1.4;
  }

    .tile-grid {
    padding-top: 2rem !important;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
  }

  /* ----- CTA ROW ----- */
  .cta-row {                     /* formerly .cta-flex duplication removed */
    flex-direction: column;
    align-items: center;
  }
}

  /* ----- NAVIGATION (hamburger) ----- */
  @media (max-width: 768px) {
  .nav-toggle  { display: flex; }          /* show button */

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    padding: 4rem 2rem;
    background: var(--bg-light);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .main-nav.open { right: 0; }             /* slide-in */

  .main-nav ul  { flex-direction: column; gap: 1.5rem; }

  .mobile-menu-label {
    display: flex;
    margin-left: auto;
  }
}


/*---1024---*/
@media (min-width:1024px){
  .hero-flex { flex-direction:row-reverse;}
}

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
    line-height: 1.5;
  }

  .services-wrapper {
    background: none !important;
    padding: 0;
    margin: 0 auto;
    box-shadow: none !important;
    border: none !important;
  }

  .services-box {
    background: #fff !important;
    color: #000 !important;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  nav, header, footer, .back-to-top {
    display: none; /* Hide navigational stuff */
  }
}


