/* =========================
   TOKENS
========================= */
:root{
  --brand: #093968;
  --link: #4169E1;
  --meta: #4A545F;

  --container-left: 15%;
  --container-right: 20%;
}

/* =========================
   RESET
========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE / TYPOGRAPHY
========================= */
body{
  margin: 0;
  min-width: 300px;
  font-size: 100%;
  background-color: #fff;
}

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;
}

h2{
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  font-size: 1.5em;
  font-weight: 900;
  color: #333;
  line-height: 1.7;
  padding-top: 10px;
  padding-bottom: 0;
  margin-bottom: 10px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

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);

  /* visual indent without weird positioning */
  padding-left: 30px;

  text-align: left;
}

/* If you truly want capitalize on ALL h1/h2, keep this.
   Otherwise delete and control per-page. */
h1, h2{ text-transform: capitalize; }

p{
  font-family: "Open Sans", sans-serif;
  margin-top: 20px;
  font-size: 1em;
  font-weight: 400;
  color: #333;
  line-height: 2;
  position: relative; /* keep only if you layer elements; otherwise remove */
}

li{
  font-family: "Open Sans", sans-serif;
  line-height: 2;
  margin-left: 5px;
  font-size: 1em;
}

/* =========================
   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%;
  }
  .mobileNavSection{visibility: visible;width:90%;height:auto;position: relative;}
}

@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
========================= */
/* I’m assuming you meant .screenshot (your earlier class). If you truly use
   img.screensho or img.lime, add them explicitly. */
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: bold;
}

.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;
}

@media (max-width: 1000px){
  .top-bar h1,
  .meta-info{
    text-align: left;
  }
}

/* =========================
   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{
  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: 50;
}

.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;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) *//* Specific table style */
.menu .dropdown-content {
    position: absolute;
    z-index: 2147483647 !important; /* max possible */
}
/* promotional wall decor december 14 2022 *//*added 2025*/    /* Style for the dropdown content */      /* Style for the dropdown options */      /* Style for the dropdown options on hover */   /* Show the dropdown content on hover */
ul {margin: 20px 0px 20px 0px;border: 0;padding:0 0 0 14px;font-size: 100%;font: inherit;vertical-align: baseline;}
/* removing any additional inline-css *//* Styles for the overlay */
/* Styles for the popup */
/* Styles for the close button */
/* Styles for the signup form */
/* Styles for the email input */
/* Styles for the signup button */
/* Styles for screens up to 414px (iPhone XR screen width) */@media only screen and (max-width: 414px) {  /* Add your styles here */}
.mobileNavSection,.sidenav a{font-family: Playfair Display;}
@media screen and (max-width: 400px) {
/* Styles for the overlay */
/* Styles for the popup */
/* Styles for the close button */
/* Styles for the signup form */
/* Styles for the email input */
/* Styles for the signup button */
/* Styles for the email input */
/* Styles for the submit button */
/* Additional styles to make the popup appear on the screen */}
.mobileNavSection {font-size: 2em;padding: 10px 0px 10px 0px;}
/*hide the inputs/checkmarks and submenu*/
/*position the label*/
/*show the submenu when input is checked*/
body {background-color: green;}
/* .blog-post-row.2  */
/* Best list options in articles. */
/* any CTA is located in btn05 */
a:visited {transition: background-color 1s ease-out;}
/* phi, beta and iota */
/* -------------------------------- 
-------------------------------- */body {font-size: 100%;background-color: white;}
li a {color: white;text-decoration: none;}
a,
a:visited {text-decoration: none;color:#4169E1}
/* -------------------------------- 
Main components 
-------------------------------- */
.mobile-nav{
  color:grey;color:black;
}

header a{
  color:black;
}
a {
text-decoration: none;
font-weight: 400;

}
a:hover {
color: #555;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Article Navigation. Placement December 7th 2022 */
  
  :root{
    --bar-h: 68px;
    --accent1:#43e97b;         /* gradient left  */
    --accent2:#38f9d7;         /* gradient right */
    --text:#4b5563;            /* slate-600      */
    --text-strong:#374151;     /* slate-700      */

    --hover:#111827;           /* slate-900      */
  }
  /* ===== Top bar ===== */
  .nav26{
    height:var(--bar-h);
    display:grid;
    grid-template-columns: 1fr auto 1fr;       /* left / center / right */
    align-items:center;
    padding:0 18px;
    border-bottom:1px solid var(--border);
    background:#fff;
    position:sticky;
    top:0;
    z-index:50;
  }
 

  /* Left: logo + brand */
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
  }
  .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}


  /* Center: menu */
  .menu{
    display:flex;justify-content:center; 
    list-style:none;margin:0;padding:0;
    font-weight:600;letter-spacing:.02em;
  }
  .menu a,.brand{
    text-decoration:none;color:var(--text-strong);
    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";
  }
  .menu a:hover{ color:#54c0d7; }

  /* Right: actions */
  .actions{
    display:flex;justify-content:flex-end;align-items:center;gap:12px;
  }
  .btn{
    padding:10px 18px;border-radius:999px;font-weight:700;
    color:white;background:linear-gradient(90deg, #fd9042, #fff46d);
    border:none;cursor:pointer;

  }

  /* ===== Responsive ===== */
  @media (max-width: 1100px){
    .menu{ gap:28px; }
  }
  @media (max-width: 900px){
    .menu{ display:none; }  
        /* hide center menu on small screens */
  }
  header,ul,ul li{
  all: unset;      /* strips inherited + external styles */
  display: revert; /* but restores required browser defaults */
}
/* Header normalization */
.nav26 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  font-family: "Inter", sans-serif;
  z-index: 900;
  max-width:100%;

}



/* Ensure the right section stays aligned */
.nav26 .actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Prevent W3 or other CSS from flattening it */
.nav26 .menu li {
  display: inline-block;
}

/* Menu layout fix */
.nav26 .menu {
  display: flex;
  list-style: none;
  gap: 28px; /* restores space between items */
  margin: 0;
  padding: 0;
}

.nav26 .menu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  letter-spacing: 0.4px;
}
.actions {
  display: none !important;
}
.mobile-nav {
  background: #fff;
  padding: 12px 16px;
  position: relative;
  z-index: 150;
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.mobile-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 1.2em;
  pointer-events: none;
}

.nav-toggle {
  margin-left: auto;
}

.nav-toggle span {
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
}
.nav26 .menu li a:hover {
  color: #0078ff;
}
@media (max-width: 1000px) {
    .nav26,.brand,.logo{display:none;width: 0px;height: 0;}
    .nav26 .menu{display:none}
      .actions {
    display: none;
  }
  }
  @media (min-width: 1000px) {
.mobile-nav{display:none;width: 0px;height: 0;padding:0px;}

  }
/*Update October 15, June 04 24 */ /* Styles for the newsletter popup */
/* Styles for the close container */
/* Styles for the close label */
/* Styles for the newsletter form */
  .menu a{
    text-decoration:none;color:var(--text-strong);
    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";
  }
/* Styles for the email input */
/* Styles for the signup button */
/* Styles for the confirmation message */
/* Call to Action for ChoosePhotoshoot , Pill Blue is btn012, this shares the hover property*/
/* Use .question.active .answer to target the answer within the active question */@media only screen and (max-width: 1000px) {/* Your CSS rules for iPhones go here */}
/* Highlight */
/*  padding:100px 0px 100px 0px;*/
/* for call to action buttons */  /* Media Query for screens smaller than 600px (adjust as needed) */

.package-features li::marker {
          /* same cyan as your Choose button */
  font-size: 18px;             /* slightly larger bullet for style */
}   /* Container for the dropdown *//* Circle button *//* Dropdown content (hidden by default) *//* Links inside the dropdown *//* Change color of dropdown links on hover *//* Show the dropdown menu on hover *//* Style for the flags */
.dropdown-content a{display: block;margin: 8px 0px 0px 5px;}
/* #4169E1 main color only */

.dropdown-content a:hover {color: #4169E1;}
/* article category links */
.dropdown {position: relative;display: inline-block;color: black;}
/* GLOBAL GREY */
/* Footer aherf Links */
.dropdown-content {display: none;text-align: left;padding-top: 20px;position: absolute;background-color: white;color: black;min-width: 125px;box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);padding: 4px 15px 5px 9px;}
.dropdown:hover .dropdown-content {display: block;}
/* updated blog section october 30 */
header{z-index:150}
.dropdown-content,.sidenav{z-index:200}
, header {    z-index: 3; }     
.logo{z-index:50}  .sidenav{z-index: 5;}
.dropdown-content{z-index:25}
body {margin: 0;background-color: white;min-width: 300px;}
/* image prints is used for 100% m-w-100 is the max width for all these */
/* inlineblocks */
/* Placeholder styling */
/* Hover effect for button */
    /* Product container styling *//* Product image styling */
    /* Product details *//* Price styling *//* Product features */ .mobileNavSection {max-width: 100%;font-weight:200;overflow: hidden;} li a {-moz-transform: matrix(1.72454894535864, 0, 0, 1.72475621897857, 0, 0);-ms-transform: matrix(1.72454894535864, 0, 0, 1.72475621897857, 0, 0);}
/* Intial Wall Decor Part *//* Paragraph and Main Font */
li, .logo, .mobile-logo{font-family: 'Open Sans', sans-serif;}/* Style for the wrapper *//* Style for the dropdown container */
.dropdown {position: relative;cursor: pointer;}/* Style for the share span */
/* Style for the dropdown content */
/* Style for the dropdown options */
/* Style for the dropdown options on hover */
/* Show the dropdown content on hover */
ul {
    padding-left: 0px; /* Adjust this value as needed */
  }
  
  ul li {
    font-family: 'Open Sans', sans-serif;
    margin-left: 30px; /* This moves the bullet closer to the text */
  }
li {line-height: 2;margin-left:5px;font-size: 1em;}
.logo {text-decoration: none;color: rgba(255, 255, 255, 0.7);}
.logo {text-decoration: none;color: rgba(255, 255, 255, 0.7);}
/* Clean universal table styles */
/* Wall decor*/
/* Style the button that is used to open and close the collapsible content */
/* Style the collapsible content. Note: hidden by default */
/* p, #list li a {font-size: 1.20em;padding-bottom:1em;} Dog*/
/* Column-w for Product photographs */
/* used in commercial photography gallery */

/* Container for slideshow */

/* Hide all slides by default */


