@charset "utf-8";

/* -------- Tools -------- */

.group:after {
  content: "";
  display: table;
  clear: both;
}

/* -------- Theme -------- */

html {
    box-sizing: border-box;
	background-color: #eee;
	overflow: auto;
	overflow-x: auto;
	overflow-y: scroll;
	cursor: default;
	font: normal normal 0px/0px Ubuntu, helvetica, geneva, verdana, sans-serif;
	height: 100%;
}

body {
	height: 100%;
}

/* -------- Header -------- */

#header {
	background-color: #000;
}

#header #logo-container {
}

#header .logo {
	font-family: "Caprasimo", serif;
	font-weight: 400;
	font-style: normal;
  	font-size: 36pt;
	line-height: 1.2em;
	margin: 10px;
	color: #fff;
	text-align: left;
}

#header .follow {
	font-family: "Caprasimo", serif;
	font-weight: 400;
	font-style: normal;
  	font-size: 30pt;
	line-height: 1.2em;
	padding: 10px;
	color: #fff;
	text-align: left;
}

#header #banner-container {
}

#header .top {
	width: 100%;
	aspect-ratio: 3.0;
	background-image: url("../images/banner-wildwood.webp");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 10px;
}

#header .top .emblem {
	position: absolute;
	bottom: 0;
	right: 10%;
	width: 100%;
	height: 30%;
	background-image: url("../images/emblem.png");
	background-position: right bottom;
	background-size: contain;
	background-repeat: no-repeat;
	display: none;
}

/* -------- Header -------- */

/* -------- Footer -------- */

#footer {
	background-color: #000;
}

#footer p {
	font-size: 11pt;
	line-height: 3em;
	text-align: center;
	color: #fff;
}

/* -------- Menu -------- */

.menu-main {
	background-color: #000;
	z-index: 0;
}

.menu-main ul,
.menu-main li {
	font-size: 12pt;
}

.menu-main ul {
	text-align: center;
}

.menu-main li {
	text-align: left;
	position: relative;
	display: inline-block;
	border-top: 4px solid #000;
	border-bottom: 4px solid #000;
}

.menu-main li:hover {
	border-bottom: 4px solid #ccc;
}

.menu-main li.menu-item-selected {
	border-bottom: 4px solid #fff;
}

.menu-main li.menu-item-related {
	border-bottom: 4px solid #fff;
}

.menu-main li:hover.menu-item-related {
	border-bottom: 4px solid #fff;
}

.menu-main li > a {
	display: block;
	color: #fff;
	line-height: 2.4em;
	white-space: pre;
	padding: 0 0.6em;
}

.menu-main ul ul {
	z-index: 10;
	padding: 0;
	position: absolute;
	display: none;
	left: 0;
	top: 100%;
}

.menu-main ul ul ul {
	left: 100%;
	top: 0;
}

.menu-main ul ul li {
	display: block;
	padding: 0;
	margin: 0;
}

.menu-main li > ul {
	display: none;
	width: auto;
}

.menu-main li:hover > ul {
	display: block;
}

.menu-main li > ul.menu-open {
	display: block;
}

.menu-main li.menu-parent > a:after,
.menu-main li:hover.menu-parent > a:after {
	content: "";
    background-position: center center;
    background-size: 0.6em 0.6em;
    background-repeat: no-repeat;
    display:inline-block;
    width: 0.6em;
    height: 0.6em;
    vertical-align: middle;
    margin-left: 0.5em;	
}

.menu-main li.menu-parent > a:after {
	background-image: url("../images/arrow-down.png");
}

.menu-main li:hover.menu-parent > a:after {
}

/* -------- Main -------- */

.main {
	background-color: #fff;
	-border-radius: 20px;
}


/* -------- Sidebar -------- */

.sidebar {
	background-color: #fff;
	-border-radius: 20px;
}

/* -------- Content -------- */

.content {
	font-size: 12pt;
	line-height: 1.5em;
	overflow: hidden;
}

.content > :first-child {
	margin-top: 0;
}

.content > :last-child {
	margin-bottom: 0;
}

.content h1,
.content h2,
.content h3,
.content h4 {
	color: #000;
	font-weight: bold;
	text-wrap: balance;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content p,
.content form,
.content ul,
.content table {
}

.content h1 {
	font-size: 26pt;
	line-height: 1.1em;
	margin: 0.5em 0;
}

.content h2 {
	font-size: 18pt;
	line-height: 1.2em;
	margin: 0.8em 0;
}

.content h3 {
	font-weight: bold;
	margin: 0.9em 0;
}

.content h4 {
	font-style: italic;
	margin: 0.9em 0;
}

.content p,
.content ul,
.content table {
	margin-bottom: 1.2em;
	text-align: left;
	color: #000;
	word-break: break-word;
}

.content ul {
	list-style-type: disc;
	list-style-position: outside;
	list-style-image: none;
	padding-left: 30px;
}

.content ul li {
	padding-left: 10px;
}

.content strong {
	font-weight: 600;
}

.content em {
	font-style: italic;
}

.content a {
	color: #04d;
}

.content a:hover {
	text-decoration: underline;
}

.content small {
	font-size: 11pt;
	line-height: 1.5em;
	vertical-align: middle;
}

.content hr {
	width: 100%;
	height: 1px;
	background-color: #ccc;
	margin: 1.5em 0;
}

.content img.center {
	width: auto;
	max-width: 100%;
}

.content img.left {
	float: left;
	margin: 0.35em 1em 1em 0;
}

.content img.right {
	float: right;
	margin: 0.35em 0 1em 1em;
}

.content img.clicktozoom {
	cursor: zoom-in;
}

.content table {
}

.content table td {
	padding-left: 15px;
}

.content table td:first-child {
	padding-left: 0;
}

.content img,
.content video,
.content audio,
.content iframe {
	display: inline-block;
	width: 100%;
	height: auto;
}

.content img.screenshot,
.content video.screenshot {
	background-color: #000;
	border-radius: 40px;
	padding: 20px;
}

.content p.postinfo {
	margin-bottom: -0.25em;
}

.content q {
	font-style: italic;
}

.content q:before, .content q:after {
	font-weight: bold;
}

.content q:before {
	content: "\201c\2009";
}

.content q:after {
	content: "\201d\2009";
}

.content .more-hidden {
	display: none;
}

.content .reveal {
	display: none;
}

.content .twocolumns {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 1.2em;
}

.content .twocolumns .left,
.content .twocolumns .right {
	flex: 0 0 50%;
	margin-top: 1.2em;
}

.content .twocolumns .left {
	padding-right: 12px;
}

.content .twocolumns .right {
	padding-left: 12px;
}

.content .twocolumns .left:first-child,
.content .twocolumns .left:first-child + .right {
	margin-top: 0;
}

.content .twocolumns .left > :first-child,
.content .twocolumns .right > :first-child {
	margin-top: 0;
}

.content .twocolumns .left > :last-child,
.content .twocolumns .right > :last-child {
	margin-bottom: 0;
}

/* -------- Follow -------- */

.content ul.follow {
	padding: 0;
	overflow: hidden;
	display: flex;
	gap: 0.5em;
}

.content ul.follow li {
	padding: 0;
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	font-size: 17pt;
	line-height: 1.5em;
	text-align: center;
	overflow: hidden;
}

.content ul.follow li a {
	display: block;
	color: #fff;
}

.content ul.follow li a:hover {
	filter: brightness(135%);
}

.content ul.follow li.facebook a {
	background-color: #3b5998;
}

.content ul.follow li.threads a {
	color: #000000;
	background-color: #ffffff;
}

.content ul.follow li.x a {
	background-color: #55acee;
}

.content ul.follow li.mastodon a {
	background-color: #6364ff;
}

.content ul.follow li.instagram a {
	background-color: #d30071;
}

.content ul.follow li.youtube a {
	background-color: #cc181e;
}

.content ul.follow li.itchio a {
	background-color: #ff2449;
}

.content ul.follow li.bluesky a {
	background-color: #0085ff;
}

