:root{
  --brand: #093968;
  --link: #4169E1;
  --meta: #4A545F;

  --container-left: 15%;
  --container-right: 20%;

  /* Nav tokens */
  --bar-h: 68px;
  --border: #f2f2f2;
  --text-strong: #374151;
  --nav-hover: #0078ff;
}

/* =========================
   RESET
========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE / TYPOGRAPHY
========================= */
body{
  margin: 0;
  min-width: 300px;
  font-size: 100%;
  background: #fff;
  position: relative;
  opacity: 1;
  transition: opacity 1s;
}

h1{
  font-family: "Playfair Display", serif;
  font-size: 2em;
  line-height: 1.2;
  font-weight: 500;
  margin: 10px;
  color: #000;
  max-width: 100%;
  overflow: hidden;
  text-transform: capitalize;
}
:root {
    --brand: #004a99; /* Updated to match the blue in your image */
    --text-dark: #333333;
}

h2 {
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    font-size: 1.5em;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.7;
    padding-top: 10px;
    margin-bottom: 20px; /* Increased margin for better spacing */
    position: relative;
    display: inline-block; /* Allows the underline to match text width */
}

/* Creating a cohesive "Accent Bar" for the H2 */
h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%; /* Short accent bar style */
    height: 4px;
    background-color: var(--brand);
}

h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    text-transform: none;
    color: var(--brand);
    padding-left: 0; /* Removed 30px padding to align with the H2 bar */
    text-align: left;
    margin-top: 25px;
}
p{
  font-family: "Open Sans", sans-serif;
  margin-top: 20px;
  font-size: 1em;
  font-weight: 400;
  color: #333;
  line-height: 2;
}
/* Fix the stacking in the CMS version */
#mySidenav .mobileNavSection {
    position: relative !important; 
    height: auto !important; /* Stops the overlap */
    display: block !important;
    clear: both;
}

#mySidenav a {
    color: #fff !important;
    text-decoration: none !important;
    line-height: 1.5 !important; /* Adds breathing room */
}

/* Fix that blue logo text */
.mobile-logo a {
    color: #fff !important;
    text-decoration: none !important;
}
li{
  font-family: "Open Sans", sans-serif;
  line-height: 2;
  margin-left: 5px;
  font-size: 1em;
}/* Show only on mobile devices */
@media screen and (max-width: 768px) {
    .mobile-nav {
        display: flex !important; /* Overrides the hidden state */
        background: #000;
        padding: 15px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .mobile-nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%; /* Ensures it spans the full width */
    }
}

/* Hide on desktop devices */
@media screen and (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-logo a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.nav-toggle span {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* 2. Sidenav Drawer Styles */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
}

.closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* 3. Navigation Sections & Links */
.mobileNavSection {
    border-bottom: 1px solid #222;
}

.mobileNavSection a {
    padding: 18px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #999;
    display: block;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

.mobileNavSection a:hover {
    color: #fff;
}

/* 4. The Collapsible Logic & SubNav */
.mobileSubNav {
    display: none; /* Controlled by JS */
    background: #080808; /* Slightly darker for depth */
    padding-bottom: 15px;
}

.mobileSubNav a {
    font-size: 14px !important;
    padding: 12px 48px !important; /* Deeper indent */
    color: #555 !important;
    text-transform: none; /* Keep titles readable */
    letter-spacing: 1px;
    border-bottom: none;
}

.mobileSubNav a:hover {
    color: #fff !important;
    background: #111;
}

/* 5. Active Pillar & Caret Animation */
.pillar-parent {
    position: relative;
    color: #bbb;
}

.pillar-parent .caret {
    float: right;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.active-pillar {
    color: #fff !important;
    background: #1a1a1a;
}

.active-pillar .caret {
    transform: rotate(180deg);
}
/* =========================
   LINKS
========================= */
a,
a:visited{
  text-decoration: none;
  color: var(--link);
  font-weight: 400;
}

a:hover{ color: #555; }

/* Accent links (dark backgrounds) */
a.accent{ color: #fff; }
a.accent:hover{ color: rgb(238, 238, 238); }

/* =========================
   META / TAGS
========================= */
.meta-info{
  margin-right: 12px;
  padding-left: 15px;
  line-height: 1.5;
  color: var(--meta);
  display: block;
  text-align: left;
}

.topic-tags .tag{
  color: var(--link);
  text-decoration: underline;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  margin-right: 12px;
  cursor: default;
}

/* =========================
   LAYOUT
========================= */
.container{
  display: block;
  margin-left: var(--container-left);
  margin-right: var(--container-right);
  margin-top: 0;
  padding-right: 2%;
  padding-bottom: 0;
  overflow: hidden;
}

/* Responsive container */
@media (max-width: 900px){
  .container{
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (min-width: 768px){
  .container{ padding-left: 0; }
}

@media (min-width: 1170px){
  .container{ padding-left: 0; }
}

@media (max-width: 414px){
  .container{ padding-left: 0; }
}

/* Store-only container modifier (don’t override global .container) */
.container--store{
  padding-right: 10%;
  overflow: hidden;
}

/* Article full-width on mobile */
@media (max-width: 768px){
  .article{ width: 100%; }
}

/* =========================
   LISTS
========================= */
ol,
ul{
  margin: 20px 0;
  padding: 0 0 0 14px;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* If you want bullets closer to text */
ul{ padding-left: 0; }
ul li{ margin-left: 30px; }

/* Scoped list link color inside container */
.container li a{ color: #214DCA; }

/* Feature list marker size */
.package-features li::marker{ font-size: 18px; }

/* =========================
   MEDIA / IMAGES
========================= */
img.screenshot{
  display: block;
  margin: 40px auto;
  height: auto;
  max-width: 100%;
}

/* =========================
   ADS
========================= */
.ad-top-bar{
  padding-left: 2%;
  width: 100%;
  max-width: 600px;
  max-height: 350px;
  height: 250px;
  aspect-ratio: 6 / 2.5;
  box-sizing: border-box;
}

@media (min-width: 768px){
  .ad-top-bar{
    margin-left: 0;
    padding-left: 0;
  }
}

.adsbygoogle{
  max-width: 100%;
  overflow: hidden;
}

/* =========================
   SIDEBAR (TOC / RELATED)
========================= */
.sidebarg{
  position: fixed;
  right: 0;
  top: 150px;
  width: 250px;
  background-color: #f2f2f2;
  padding: 20px;
}

.sidebarg h3{
  font-size: 18px;
  font-weight: 700;
}

.sidebarg ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebarg ul li{ margin-bottom: 10px; }

.sidebarg ul li a{
  text-decoration: none;
  color: #333;
}

.sidebarg ul li a:hover{ color: var(--link); }

@media (max-width: 768px){
  .sidebarg{
    position: static;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
  }

  .sidebarg h3{ font-size: 16px; }
  .sidebarg ul li{ margin-bottom: 5px; }
}

/* =========================
   TOP BAR SOCIAL
========================= */
.top-bar h1,
.meta-info{
  text-align: left;
  margin: 0;
}

.social-container{
  padding-left: 10px;
  display: inline-block;
  vertical-align: bottom;
}

.x-wrapper,
.link-wrapper,
.email-wrapper,
.facebook-wrapper{
  display: inline-block;
  border-radius: 100%;
  margin: 2px;
  border: 2px #eeee solid;
}

.si{
  width: 26px;
  height: 26px;
  padding: 5px;
  transition: transform 0.3s ease-in-out;
}

/* =========================
   STOREFRONT / WALL DECOR
========================= */
.storeFront{
  margin: 0 0 0 5%;
  display: inline-block;
  border-radius: 23px;
}

.store-left,
.store-right{
  display: inline-block;
  vertical-align: top;
}

.store-left{
  width: 48%;
  max-height: 100%;
}

.store-right{ max-width: 50%; }

.wall-decor-child{
  width: 50%;
  float: left;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
}

#paypal-button-container{ display: inline-block; }

/* Slideshow (scoped) */
.storeFront .mySlides{
  display: none;
  width: 100%;
  border-radius: 4px;
  transition: opacity 0.6s ease;
}

/* =========================
   LOGO GRID
========================= */
.logo-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  justify-items: center;
}

.logo-grid img{
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
}

/* =========================
   HERO IMAGE + TEXT OVERLAY
========================= */
.lolllll{
  position: relative;
  text-align: center;
}

.image{
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay-2{
  color: #fff;
  font-size: 30px;
}

/* Desktop/tablet overlay */
@media (min-width: 769px){
  .text-overlay-2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .text-overlay-2:nth-child(2){
    top: 65%;
    font-size: 20px;
  }
}

/* Mobile: stack text */
@media (max-width: 768px){
  .text-overlay-2{
    position: static;
    transform: none;
    color: #000;
    margin-top: 10px;
  }

  .text-overlay-2:nth-child(2){
    padding: 10px;
    font-size: 20px;
  }
}

/* =========================
   VIEW MORE BUTTON
========================= */
.view-more-button{
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 26px;
  border-radius: 30px;
  background-color: #3498db;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.view-more-button:hover{
  background-color: #2980b9;
  color: #fff;
}

.button-view-more{ text-align: center; }

/* =========================
   SHARE DROPDOWN (component)
========================= */
.share-dropdown{
  position: relative;
  display: inline-block;
}

.share-trigger{
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.share-menu{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 220px;
  padding: 8px 0;
  z-index: 250;
}

.share-dropdown.open .share-menu{ display: block; }

.share-link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
}

.share-link:hover{ background: #f5f5f5; }

.share-link img.si{
  width: 18px;
  height: 18px;
  padding: 0;
}

/* =========================
   NAVBAR (DESKTOP) + DROPDOWN
========================= */
header{
  position: relative;

}

/* Desktop top bar */
.nav26{
  height: var(--bar-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-family: "Inter", sans-serif;
}

/* Brand block */
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: var(--text-strong);
}

.logo{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.brand b{ color: #54c0d7; }

/* Menu */
.nav26 .menu{
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  letter-spacing: .02em;
}

.nav26 .menu li{ display: inline-block; }

.nav26 .menu a{
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: color .15s ease;
  white-space: nowrap;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

.nav26 .menu a:hover{ color: var(--nav-hover); }

/* Actions (right side) */
.nav26 .actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn{
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: black;
  border: none;
  cursor: pointer;
}

/* Dropdown (desktop) */
.dropdown{
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #000;
}

.dropdown-content{
  display: none;
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  min-width: 125px;
  padding: 12px 15px 10px 9px;
  background: #fff;
  color: #000;
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
  z-index: 200;
}

.dropdown-content a{
  display: block;
  margin: 8px 0 0 5px;
  color: #000;
}

.dropdown-content a:hover{ color: var(--link); }

.dropdown:hover .dropdown-content{ display: block; }

/* =========================
   MOBILE NAV (BAR + SIDENAV)
========================= */

.blog-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}
.blog-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card h2 {
  font-size: 1.2rem;
  margin:0px;
  padding: 10px 0px 0px 0px;
  left:15px;
  color: #333;
}
.blog-card p {
  font-size: 1em;
  color: #555;
  margin: 0 10px 15px;
}
.blog-card a {
  display: inline-block;
  margin-bottom: 15px;

  text-decoration: none;
  font-weight: bold;
}
.blog-card a:hover {
  text-decoration: underline;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 10% 0% 10%;
}



/* Desktop vs mobile visibility */
@media (max-width: 1000px){
  .nav26{ display: none !important; }
}





/* Mobile nav section helper (if you use it) */
@media (max-width: 1000px){


  b{
    font-weight: 800;
    padding-bottom: 10px;
    font-size: 1em;
    color: #000;
  }
}

/* =========================
   BUTTON BASE
========================= */
button{
  margin: 0;
  border: 0;
  background-repeat: no-repeat;
}
