@charset "UTF-8";
/*
Theme Name: Desktop (Sprout)
Author: Studio Ancla
Author URI: https://studioancla.com
Description: Start date: ###
Version: 1.0
*/
/* Typography ------------------------- */
/* Colors ----------------------------- */
/* Animations ------------------------- */
/* ======================================================================== */
/* =                   _animista-custom.scss – v2                        = */
/* = All animations only run when .anim--run is present                  = */
/* ======================================================================== */
/* =Variables & CSS Variables for Duration/Ease =========================== */
:root {
  --anim-duration: 0.15s;
  --anim-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =Helper – initial state + runtime flag ================================= */
[data-anim] {
  opacity: 0;
}

.anim--run {
  opacity: 1;
}

/* ======================================================================== */
/* =                             Keyframes                                = */
/* ======================================================================== */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes rotate-in-center {
  0% {
    transform: rotate(-360deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes swirl-in-fwd {
  0% {
    transform: rotate(-540deg) translateY(-100%) scale(0);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: rotate(0) translateY(0) scale(1);
    transform-origin: 50% 50%;
    opacity: 1;
  }
}
@keyframes flip-in-diag-2-br {
  0% {
    transform: rotate3d(1, 1, 0, 90deg);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: rotate3d(0, 0, 0, 0);
    transform-origin: 50% 50%;
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
/* ======================================================================== */
/* =                           Animation Rules                            = */
/* ======================================================================== */
.anim--run.anim-fade-in {
  animation: fade-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-up {
  animation: fade-in-up var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-down {
  animation: fade-in-down var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-left {
  animation: fade-in-left var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-right {
  animation: fade-in-right var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-up, .anim--run.slide-in-up {
  animation: slide-in-up var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-left, .anim--run.slide-in-left {
  animation: slide-in-left var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-right, .anim--run.slide-in-right {
  animation: slide-in-right var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-zoom-in {
  animation: zoom-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-scale-up-center {
  animation: scale-up-center var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-tracking-in-expand {
  animation: tracking-in-expand var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-text-focus-in {
  animation: text-focus-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-rotate-in-center {
  animation: rotate-in-center var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-swirl-in-fwd {
  animation: swirl-in-fwd var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-flip-in-diag-2-br {
  animation: flip-in-diag-2-br var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-fwd {
  animation: fade-in-fwd var(--anim-duration) var(--anim-ease) both;
}

/* =Aliases for slide-in (optional)======================================= */
/* =Duration Helper Classes================================================
   Use in admin CSS Class(es):
     anim-dur-05 → 0.5s
     anim-dur-10 → 1.0s
     anim-dur-15 → 1.5s
     anim-dur-20 → 2.0s
=========================================================================== */
.anim-dur-05 {
  --anim-duration: 0.5s !important;
}

.anim-dur-10 {
  --anim-duration: 1.0s !important;
}

.anim-dur-15 {
  --anim-duration: 1.5s !important;
}

.anim-dur-20 {
  --anim-duration: 2.0s !important;
}

/* =Accessibility – reduced motion========================================= */
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    animation: none !important;
    transform: none !important;
  }
}
/* Resets ----------------------------- */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  box-sizing: border-box;
  height: 100%;
}

body {
  margin: 0 auto;
  padding: 0;
  background: #FAFBFB;
  height: 100%;
  background: url("https://team.bluesprucecg.com/wp-content/uploads/2025/10/connor-mcsheffrey-osI4A3pojO8-unsplash.jpg") no-repeat;
  background-position: center center !important;
  background-size: cover !important;
  background-attachment: fixed;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 251, 251, 0.7);
  z-index: -1;
}

h1, h2, h3, h4, h5 {
  display: block;
  text-align: center;
  color: #3F547B;
  font-family: "komet", serif;
  margin: 10px 0;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.8em;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

.clear {
  clear: both;
}

p {
  margin: 20px 0;
}

/* Main Settings ---------------------- */
#wrapper {
  height: 100%;
}

#container {
  max-width: 90vw;
  min-height: 80vh;
  margin: 0 auto;
  padding: 50px 0 150px 0; /* bottom padding = taskbar height */
}

#content {
  font-family: "pacaembu", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  color: #252525;
  hyphens: auto;
}

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

#taskbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3F547B;
  padding: 20px;
  z-index: 1000;
}

/* Taskbar Settings ----------------------- */
/* Taskbar Settings ----------------------- */
nav#main {
  display: block;
}

nav#main ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav#main ul > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  flex: 1 1 0;
  text-align: center;
  margin: -50px auto 0 auto;
  min-width: 90px;
}

nav#main ul > li i { /* icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto 5px auto;
  color: #3F547B;
  background: #FAFBFB;
  border: 3px solid #3F547B;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

nav#main ul > li > a {
  display: block;
  padding: 5px;
  font-family: "pacaembu", sans-serif;
  font-size: 15px;
  color: #FAFBFB;
  text-decoration: none;
  white-space: normal;
  line-height: 1.2;
}
nav#main ul > li > a:hover i {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(37, 37, 37, 0.2);
}

/* Page Specific Settings ------------- */
/* Form settings ---------------------- */
.forminator-label {
  font-size: 18px !important;
}

label {
  font-family: "komet", serif;
}

input[type=text], input[type=email], input[type=password], input[type=tel], input[type=search], textarea {
  padding: 4px 8px;
  background-color: #FAFBFB;
  border: 1px solid #d0cecf;
  font-family: monospace;
  font-size: 15px;
  line-height: 1em;
  color: #252525;
  outline: none;
  border-radius: 8px;
  box-shadow: none;
  position: relative;
  top: -1.5px;
}

textarea {
  height: 90px;
}

input[type=submit] {
  padding: 4px 8px;
  background: #3F547B;
  font-family: "pacaembu", sans-serif;
  color: #FAFBFB;
  outline: none;
  border-radius: 8px;
  box-shadow: none;
}

/* Image Settings --------------------- */
/* Miscellaneous Settings ------------- */
div[id*=kt],
div[class*=kt],
div[id*=kadence],
div[class*=kadence] {
  z-index: auto !important; /* remove explicit z-index */
}

.post-edit-link {
  display: block;
  position: fixed;
  left: 0;
  bottom: 50%;
  padding: 4px 10px;
  line-height: 1em;
  background: goldenrod;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  z-index: 1;
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 1024px) and (orientation: portrait) { /* 600px is fine */
  #taskbar {
    padding: 14px 10px;
  }
  nav#main ul {
    gap: 3px;
  }
  nav#main ul > li {
    min-width: 50px;
  }
  nav#main ul > li i { /* icon */
    font-size: 15px;
    padding: 5px;
    width: 30px;
    height: 30px;
  }
  nav#main ul > li > a {
    font-size: 9px;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
} /* End of file */

/*# sourceMappingURL=style.css.map */
