/* Hide the template/host promo chrome that the runtime injects.
   (Framer badge + the template's "Get Template" purchase CTA.) */
#__framer-badge-container,
[id*="framer-badge"],
a[href*="framer.com"][target="_blank"],
a[href*="lemonsqueezy.com"],
[data-framer-name="Get Template"]{
  display:none !important;
}

/* Brand logo: swap the template wordmark for Tuğçe Udum's own logo.
   The text keeps its layout box (visibility, not display) so nothing shifts;
   the SVG rides on top as a background. Applies to every breakpoint + footer. */
[data-framer-name="Logo"]{
  background-image:url("/assets/brand/logo-tugce-udum.svg");
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
  min-width:150px;
}
[data-framer-name="Logo"] *{
  visibility:hidden !important;
}

/* Prices is not part of this site — hide every link to it.
   (Done in CSS rather than by editing the bundled JS, so nothing breaks.) */
a[href="/prices"],
a[href="./prices"],
a[href$="/prices"]{
  display:none !important;
}

/* --- Prices: not offered on this site -------------------------------- */
[data-framer-name="Prices"],
[data-framer-name="Price"],
[data-framer-name="Preffix + Price"],
[data-framer-name="Price Prefix"],
[data-framer-name="Price Suffix"]{
  display:none !important;
}

/* --- Unverified template content, hidden until real data arrives ------ */
[data-placeholder-hidden]{ display:none !important; }

/* --- Pentograf footer credit + backlink ---------------------------- */
#pento-credit{
  display:inline-flex;align-items:center;gap:9px;
  text-decoration:none;opacity:.75;transition:opacity .25s ease;
}
#pento-credit:hover{opacity:1;}
#pento-credit span{
  font-family:"Figtree",sans-serif;font-size:13px;color:rgba(31,32,33,.55);
}
#pento-credit img{height:15px;width:auto;display:block;}
