/*
Theme Name: TastyGames
Text Domain: tasty
Version: 1.0
Description: TastyGames Theme
Author: TastyGames UG
Author URI: https://tastygam.es
*/

/* FONTS */
@font-face {
  font-family: VT323;
  src: url("fonts/VT323/VT323-Regular.ttf");
}

/* MAIN LAYOUT */
html,
body {
  padding: 0;
  margin: 0;
}
body {
  font-family: VT323, sans-serif;
  font-size: 1.6em;
}
header {
  width: 100%;
  height: 100vh;
  background-color: #000;
  color: #fff;
}
header > svg {
  position: absolute;
  width: 70%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
}

:link, :visited {
  color: #000;
  text-decoration: none;
  border-bottom: 1px dotted;
}

/* SINGLE PAGE */
body.wp-singular {
  line-height: 1.5em;
}
body.wp-singular > main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

/* BUSINESS PLAN */
body.page-business-plan h2,
body.page-business-plan h3,
body.page-business-plan h4,
body.page-business-plan h5 {
  cursor: pointer;
}
body.page-business-plan h2:before,
body.page-business-plan h3:before,
body.page-business-plan h4:before,
body.page-business-plan h5:before {
  content: '+';
  position: absolute;
  margin-left: -25px;
}
body.page-business-plan h2 + *,
body.page-business-plan h3 + *,
body.page-business-plan h4 + *,
body.page-business-plan h5 + * {
  display: none;
  margin-left: 30px;
}
body.page-business-plan h2.open:before,
body.page-business-plan h3.open:before,
body.page-business-plan h4.open:before,
body.page-business-plan h5.open:before {
  content: '-';
}
body.page-business-plan h2.open + *,
body.page-business-plan h3.open + *,
body.page-business-plan h4.open + *,
body.page-business-plan h5.open + * {
  display: block;
}

/* DARK MODE */
@media (prefers-color-scheme: dark) {
  html {
    background-color: #000;
    color: #fff;
  }
  :link, :visited {
    color: #fff;
  }
}
