/*
Theme Name: fragrantcustom
Author: Charlotte Laskowski
Author URI: https://fragrant.garden
Description: custom theme for fragrant.garden based on blankslate
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2025
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: fragrant.garden
*/
:root {
  --primary: lightblue;
  --secondary: rgb(212, 221, 246);
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

body {
  background: linear-gradient(to top, #000000, #000000, #333333, #333333);
  background-size: cover;
  background-size: 100% 1px;
  color:var(--primary);
  font-family: monospace;
  text-shadow: 0px 0px 3px var(--primary);
  font-size: 0.9rem;
  height: 100vh;
  width: 100vw;
}

@media (max-width: 700px) {
  body {
    max-width: 100%;
    margin-top: 10px;
    font-size:unset;
  }
}

body {
  margin: auto;
  margin-top: 10px;
  max-width: 75vw
}

html {
  position: sticky;
  margin: auto;
}
html::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
html::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

h1, h2 {
  text-shadow: 0.06rem 0 0.06rem #f20000, -0.125rem 0 0.06rem #f20000;
  animation-duration: 0.01s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  max-width: fit-content;
}

p {
  margin-bottom: 10px;
}

@keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.90626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.83891;
  }
  30% {
  opacity: 0.65583;
  }
  35% {
  opacity: 0.67807;
  }
  40% {
  opacity: 0.26559;
  }
  45% {
  opacity: 0.84693;
  }
  50% {
  opacity: 0.96019;
  }
  55% {
  opacity: 0.08594;
  }
  60% {
  opacity: 0.20313;
  }
  65% {
  opacity: 0.71988;
  }
  70% {
  opacity: 0.53455;
  }
  75% {
  opacity: 0.37288;
  }
  80% {
  opacity: 0.71428;
  }
  85% {
  opacity: 0.70419;
  }
  90% {
  opacity: 0.7003;
  }
  95% {
  opacity: 0.36108;
  }
  100% {
  opacity: 0.24387;
  }
}
a {
    color:var(--secondary);
    text-decoration: none;
}

#site-title { 
  text-shadow: 0.06rem 0 0.06rem #f20000, -0.125rem 0 0.06rem #f20000;
  animation-duration: 0.01s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  max-width: fit-content;
  z-index: 100;
}

@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #ea36af, -1px 0 0 #75fa69;
  }
  to {
    text-shadow: 1px 0.5px 1px #ea36af, -1px -0.5px 0.75px #75fa69;
  }
}

@keyframes bgflicker {
  from {
    box-shadow: 1px 0 0 #ea36af, -1px 0 0 #75fa69;
  }
  to {
    box-shadow: 1px 0.5px 1px #ea36af, -1px -0.5px 0.75px #75fa69;
  }
}

#search {
  max-width: fit-content;
  float: right;
  z-index: 100;
}

.menu {
  max-width: fit-content;
  float: left;
  margin-bottom: 10px;
  display: flex;
  z-index: 100;

}

#content {
  clear: both;
  margin-top: 30px;
  margin-bottom: 30px;
}

::-webkit-scrollbar {
  background-color: var(--secondary);
}

.post {
  margin-bottom: 10px;
}

#content header {
  max-width: fit-content;
}

.entry-summary {
  max-width: fit-content;
}

.entry-content {
  margin-top: 10px;
}

.page_item {
  margin-bottom: 3px;
  margin-left: -2px;
  background-color: var(--secondary);
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0.06rem 0 0.06rem #f20000, -0.125rem 0 0.06rem #f20000;
  animation-duration: 0.01s;
  animation-name: bgflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  display: inline-block;
}

.page_item a {
  color: black;
}

.post-edit-link::before {
  content: "> "
}

#sidebar {
  margin-top: 30px;
  display: flex;
}

#footer {
  bottom: 0;
  position: sticky;
}

.wp-block-latest-posts__post-title::before {
  content: "┠"
}

ul.wp-block-latest-posts:last-child::after {
  content: "┖coming soon..."
}

.wp-block-heading::before {
  content: "┍";
}


:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
}

#container {
  clear: both;
  display: grid;
  grid-template-areas:
    "sidebar posting";
  gap: 3px;
  padding: 5px;
}

.wp-block-rss {
  margin-bottom: 10px;
}