@charset "UTF-8";
/* Modern normalize */
@import "node_modules/modern-normalize/modern-normalize.css";

/* Fonts */

@font-face {
  font-family: fonda;
  src:
    url(assets/fonts/Fondamento-Regular.woff2),
    url(assets/fonts/Fondamento-Regular.woff);
  font-display: swap;
}
@font-face {
  font-family: nightone;
  src: url(assets/fonts/TheNightOne.woff2), url(assets/fonts/TheNightOne.woff);
  font-display: swap;
}

@font-face {
  font-family: bugdings;
  src:
    url(assets/fonts/CreepyCrawlies.woff2),
    url(assets/fonts/CreepyCrawlies.woff);
  font-display: swap;
}

@font-face {
  font-family: kiwi;
  src: url(assets/fonts/KiwiSoda.woff2), url(assets/fonts/KiwiSoda.woff);
  font-display: swap;
}

@font-face {
  font-family: nokia;
  src: url(assets/fonts/nokiafc22.woff2), url(assets/fonts/nokiafc22.woff);
  font-display: swap;
}

:root {
  background-color: #454559;
  color: #282833;
  font-family: "Courier New", Courier, monospace;
  image-rendering: pixelated;
}
/* All pages general styling */

body {
  background-color: #e1ffd1;
  margin: 3% 5% auto 5%;
  border-radius: 5px;
  box-shadow: 0px 0px 20px #282833;
  min-height: 95vh;
}

a {
  color: inherit;
}
a:hover {
  font-weight: bold;
  font-style: italic;
}
h1 a {
  font-family: inherit;
  text-decoration: none;
}

h1 a:hover {
  font-style: normal;
}

ul li::marker {
  content: "✦ ";
}

ul ul li::marker {
  content: "✧ ";
}

/* button */
button {
  margin: 10px 10px;
  padding: 5px 15px;
  background-color: #454559;
  border: 3px solid #fccc99;
  color: #fccc99;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: #282833 0px 2px 2px;
  font-size: 1.4rem;
  font-family: fonda;
}
button:hover {
  background-color: #fccc99;
  color: #454559;
  border: 3px solid #454559;
}

button:active {
  border: groove #454559 4px;
  transform: translateY(2px);
  margin-bottom: 8px;
  box-shadow: none;
}
/* navbar */
nav {
  display: flex;
  background-color: #e1ffd1;
  position: sticky;
  top: 0;
  border-bottom: solid 16px transparent;
  border-image: url(assets/images/leaf-border.png) 16 round;
  image-rendering: pixelated;
  justify-content: center;
  margin: 10px 0;
  padding: 8px 0 0;
  border-image-outset: 8px 0;
  box-shadow: #bdfc9b 0 8px;
  /*border-bottom: 2px #282833 dotted;*/
  z-index: 1;
}

nav ul {
  margin: 1px;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

nav ul li::marker {
  content: "";
}

nav ul a {
  font-family: fonda;
  font-size: 1.2rem;
  color: #282833;
  display: block;
  padding: 0 10px;
  border-radius: 10px;
}
.mobile-nav {
  display: none;
}
/* Headers */
h1,
h2,
h3,
h4 {
  font-family: fonda;
}
h1 {
  font-size: calc(20px + 4vw);
  text-align: center;
  background-color: #bdfc9b;
  margin: 3px auto 8px;
  border: 16px solid transparent;
  border-image: url(assets/images/leaf-border.png) 16 round;
  image-rendering: pixelated;
  border-image-outset: 8px;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.6rem;
  margin-left: 40px;
}

h4 {
  font-size: 1.3rem;
  margin-left: 40px;
}

p {
  margin-left: 20px;
}
.construction-header {
  margin-top: 30px;
  text-align: center;
}
.h1-bookend {
  display: inline;
  max-height: 80px;
  vertical-align: middle;
}

.h2-bookend {
  display: inline;
  max-height: 30px;
  vertical-align: middle;
}
/* scrollbox */
.scrollbox {
  margin: 27px;
  min-width: 250px;
  max-width: 500px;
  height: 250px;
  border: 16px solid transparent;
  border-image: url(assets/images/leaf-border.png) 16 round;
  image-rendering: pixelated;
  border-image-outset: 8px;
  background-color: #bdfc9b;
  overflow: auto;
}
.scrollbox h3 {
  margin: 0;
  padding: 10px auto 3px;
  text-align: center;
  position: sticky;
  top: 0;
  background-color: #bdfc9b;
  vertical-align: middle;
}
details {
  user-select: none;
  margin: 10px auto;
}
summary {
  list-style: none;

  font-family: fonda;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  &::after {
    content: " ▼";
    font-size: 1rem;
  }

  [open] &::after {
    content: " ▲";
  }
}

.scrollbox.collapsible {
  width: 350px;
  height: fit-content;
  overflow: hidden;
}
/* Leafy divider */
hr {
  /* source | slice | repeat */
  background: url(assets/images/leaf-border.png) no-repeat top center;
  display: block;
  height: 16px;
  border: 0;
  position: relative;
  margin: 20px auto;
}

hr::before,
hr::after {
  content: "";
  display: block;
  position: absolute;
  border-top: 2px dotted #7b63b8;
  top: 7px;
}
hr:before {
  left: 0;
  right: 50%;
  margin-left: 10px;
  margin-right: 40px;
}
hr:after {
  right: 0;
  left: 50%;
  margin-left: 40px;
  margin-right: 10px;
}

figure {
  margin: 15px 0;
}

figcaption {
  text-align: center;
}

/* generic flex styling */
.flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
/* Text styling */

/* splash page styles */
#splash-body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: transparent;
}

#bg-blob {
  background-image: url(assets/images/moss-bg.JPG);
  background-color: #5e9b53;
  min-height: 250px;
  min-width: 300px;
  height: 55%;
  width: 45%;
  border: 16px solid transparent;
  /* source | slice | repeat */
  border-image: url(assets/images/leaf-border.png) 16 round;
  image-rendering: pixelated;
  border-image-outset: 8px;
  display: flex;
  align-items: center;
}

#welcome-text {
  display: flex;
  flex-direction: column;
  background-color: #fdddba;
  /*height: 350px;
  width: 550px;*/
  height: 85%;
  width: 95%;
  margin: auto;
  border-radius: 10px;
  border: 5px solid #4da210;
  text-align: center;
  justify-content: space-around;
}

#welcome-text p {
  font-size: 1.1em;
}

#welcome-text hr {
  margin: 0;
  align-self: stretch;
}

#welcome-text h1 {
  border: none;
  background-color: transparent;
  font-size: 4rem;
}

.bug {
  font-family: bugdings;
  font-size: calc(10px + 3vw);
  color: #454559;
}

#welc-indent {
  align-self: flex-end;
  margin-right: 5px;
}

#borb {
  width: 50vw;
  aspect-ratio: 1.5004;
  background-image: url(assets/images/splash-images/wren-default.gif);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  filter: drop-shadow(#282833 -20px 5px 2px);
  transition: 0.3s ease-in-out;
}

#borb:hover {
  background-image: url(assets/images/splash-images/wren-hover.gif);
}

#enter {
  /*Need to make this responsive for mobile*/
  content: url(assets/images/splash-images/enter.png);
  transform: rotate(35deg);
  width: 40vw;
  position: fixed;
  top: 25%;
  right: 10%;
  z-index: 5;
  filter: drop-shadow(#282833 -3px 5px 1px);
}

#enter:hover {
  transform: rotate(30deg);
}

#enter:active {
  transform: rotate(30deg) translateX(-2px) translateY(5px);
  filter: drop-shadow(#282833 -1px 1px 2px);
}

/* Main page */
#sherm-btn {
  border: 2px solid #282833;
  padding: 1px;
}
#sherm-btn img {
  vertical-align: middle;
}

.important-badges {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.badge {
  margin: 2px;
}

#punk-ring {
  width: fit-content;
  text-align: center;
  background-color: #ff62b8;
  font-size: 7px;
  font-family: nokia;
  padding: 2px;
  border: black 2px dashed;
}

#adhdring {
  background-color: #282833;
  color:#e1ffd1;
  border: 1px #43d3e0 solid;
  box-shadow: 0 0 0 2px #282833;
  text-decoration: none;
}
#punk-ring p {
  margin: 0;
}

.punk-btm-cont {
  display: flex;
  flex: 1;
  margin: 0;
  padding: 0;
  align-items: center;
}

.punk-btm-cont a {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.punk-arrow {
  flex: 1;
  font-size: 18px;
  text-decoration: none;
}

.punk-kiwi {
  font-family: kiwi;
  font-size: 11px;
  white-space: nowrap;
}

#punk-random {
  flex: 2;
  font-size: 8px;
}

#punk-random a {
  text-decoration-style: wavy;
}

footer {
  text-align: center;
  margin: 20px auto 10px;
}
/* Art page */
.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.gallery-container hr {
  margin: 0;
  align-self: stretch;
}
.gallery-container h3 {
  margin-left: 0;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gallery img {
  max-width: 27vw;
  margin: 10px;
  box-shadow: #282833 0px 3px 5px;
}

.fave {
  outline: 3px solid yellow;
}
/* Artfight styling */
#artfight-header {
  background-color: #454559;
  color: #fdddba;
  font-weight: normal;
  border: 16px solid transparent;
  /* source | slice | repeat */
  border-image: url(assets/images/leaf-border.png) 16 round;
  image-rendering: pixelated;
}

/* Socials */
#socials-list {
  margin: auto;
  text-align: center;
  font-size: 1.3em;
}

#socials-list .icon {
  width: 40px;
  margin: 0 10px;
}

/* Update log */
.log {
  font-size: 1.3rem;
  margin-left: 10%;
}

/* leafbird page */
.leafbird-logo {
  width: 200px;
  margin-top: 20px;
}

/* Form styling */
.formthx {
  text-align: center;
}

/* mobile responsive */
@media only screen and (max-width: 600px) {
  #right.h1-bookend {
    display: none;
  }
  nav {
    position: relative; /* disable this when i get mobile menu figured out*/
  }

  #splash-body {
    display: flex;
  }

  #welcome-text hr {
    display: none;
  }

  #enter {
    transform: rotate(-25deg);
    top: 70%;
    right: 5%;
  }

  #enter:hover {
    transform: rotate(-20deg);
  }

  #enter:active {
    transform: rotate(-20deg);
  }

  .gallery img {
    max-width: 75vw;
  }
}
