/**
	Global CSS
	(non-page specific)
*/

/* IMPORT STATEMENTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Shippori+Antique&family=Square+Peg&family=Oswald&display=swap');

/* GENERAL TAG SETUP */
body {
	background-color: #00231e;
	overflow-x: hidden;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

a, a:link, a:visited, a:active {
	text-decoration: none;
	color: inherit;
}

.page-container {
	background-color: #fff;
	border-left: 4px solid #00332c;
	border-right: 4px solid #00332c;
	width: 60%;
	min-width: 800px;
	max-width: 1000px;
	
	margin: 0px auto;
	//margin-top: 60px;
}

/**
 * HEADER
 */
.header {
	background-image: url('https://cdn.sumiaki.com/img/scenery.png');
	height: 100px;
	width: 100%;
	
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	
	position: relative;
}

.header .attribution {
	position: absolute;
	right: 10;
	bottom: 0;
	
	font-family: sans-serif;
	font-size: 0.5em;
	opacity: 0.25;
}

.header .hr {
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #fff;
	width: 95%;
	opacity: 0.5;
}

.header .logo-container {
	font-family: 'Shippori Antique', sans-serif;
	display: inline-block;
	text-align: center;
	margin-top: 5px;
	margin-left: 30px;
}

.header .logo {
	display: inline-block;
	font-size: 1.5em;
	font-weight: bold;
   
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	margin-top: 10px;
	
	position: relative;
	top: 7px;
}
.header .logo:hover {
	filter: opacity(0.75) drop-shadow(0 0 0 #0085ff);
}

.header .paginate {
	display: inline-block;
	font-size: 1em;
	font-weight: bold;
   
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	margin-top: 10px;
	margin-left: 10px;
	
	position: relative;
	top: 7px;
}

.header .social {
	display: inline-block;
	float: right;
	padding: 0px 8px 0px 8px;
	margin-right: 30px;
	margin-top: 22px;
	
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 5px;
	
	position: relative;
	top: 1px;
}
.header .social .kofi {
	position: relative;
	top: 2px;
}
.header .social .patreon {
	position: relative;
	top: 3px;
}
.header .social .twitter {
	position: relative;
	top: -1px;
}
.header .social .bsky {
	position: relative;
	top: 2px;
}

.header .social .bsky:hover,.patreon:hover,.kofi:hover {
	filter: opacity(0.75) drop-shadow(0 0 0 #0085ff);
}

/**
 * NAVIGATION
 */
.navigation {
	width: 100%;
}

.navigation>.clickable-container {
	margin: 0px auto;
	width: 100%;
	
	display: inline-flex;
}

.navigation>.clickable-container>.clickable {
	background-color: #b3cbc1;
	
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	display: inline-flex;
	align-items: center;
    justify-content: center;
	
	position:relative;
	width: 25%;
	height: 100px;
}

.navigation>.clickable-container>.valid:hover,
.navigation>.clickable-container>.valid-active:hover {
	cursor: pointer;
	color: #fff;
	background-color: #07cb76;
}

.navigation>.clickable-container>.valid-active {
	color: #fff;
	background-color: #1c7951;
}

.navigation>.clickable-container>.invalid:hover {
	background-color: rgba(0, 0, 0, 0.25);
}

.navigation>.clickable-container>.invalid>.tt {
	font-size: 0.8em;
	visibility: hidden;
	width: 120px;
	background-color: rgba(0, 0, 0, 0.35);
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 65%;
	left: 50%;
	margin-left: -60px;
}

.navigation>.clickable-container>.invalid>.tt::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.35) transparent transparent transparent;
}

.navigation>.clickable-container>.clickable:hover>.tt {
	visibility: visible;
}

/**
 * Content Block
 */
.content {
	width: 100%;
	
	font-family: sans-serif;
	font-size: 0.85em;
	color: #505050;
	
	display: inline-flex;
}

.content-block-full {
	width: 100%;
	padding: 30px;
}

.content-block-fit {
	flex-grow: 1;
	padding: 30px;
}

.content-block-large {
	width: 60%;
	padding: 30px;
}

.content-block-small {
	width: 30%;
	padding: 30px;
}

.content-block-third {
	width: 33%;
	padding: 30px;
	height: 200px;
}

.content-block-mini {}

.content-grey {
	background-color: #efefef;
}

.content-white {
	background-color: #fff;
}

.content-bordered {
	border-bottom: 4px solid #efefef;
	border-top: 4px solid #efefef;
}

.content .content-title {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	font-size: 2em;
	border-bottom: 2px solid #505050;
	margin-bottom: 10px;
	width: 100%;
}

.title-right {
	text-align: right;
}

.content .content-subtitle {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 10px;
	width: 100%;
}

.content .content-quote {
	display: inline-block;
	font-family: 'Square Peg', cursive;
	font-size: 3em;
	text-align: center;
	margin: 0px auto;
	margin-bottom: 15px;
	width: 100%;
}

.content .content-text {
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-size: 1.5em;
	
	margin-bottom: 10px;
}

.content .button {
	background-color: #c0c0c0;
	border: 2px solid #c0c0c0;
	border-radius: 5px;
	
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
    justify-content: center;
	
	position:relative;
	height: 35px;
	
	padding: 5px 15px 5px 15px;
}

.content .button:hover {
	cursor: pointer;
	background-color: #07cb76;
	border: 2px solid #07cb76;
	
	color: #fff;
}

.content .premium {
	background-color: #1c7951;
	border: 2px solid #1c7951;
	color: #fff;
}

.content .support {
	background-color: #fff;
	border: 2px solid #0085ff;
	color: #0085ff;
}

.content .support:hover {
	background-color: #0085ff;
	border: 2px solid #0085ff;
	color: #fff;
}

.content .support>img {
	margin-right: 5px;
	filter: brightness(50%) sepia(100) saturate(100) hue-rotate(200deg) opacity(0.5);
}

.content .support:hover>img {
	filter: none;
}

.content .close {
	cursor: pointer;
}

.content a {
	text-decoration: underline;
}
.content a.button {
	text-decoration: none;
}

/**
 * MODAL
 */
.modal {
	background-color: rgba(0, 0, 0, 0.75);
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	justify-content: space-around;
	align-items: center;
}

.modal-content {
	margin: 0px auto;
}

/**
 * BANNERS
 */
.mid-banner {
	background-color: #00463d;
	background-image: url('https://cdn.sumiaki.com/banner/1.png');
	background-position: center;
	transition: background 2s linear;
	
	width: 100%;
	height: 400px;
	
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.mid-banner .intro-define {
	font-family: 'Shippori Antique', sans-serif;
	font-size: 3em;
	color: #fff;
	text-align: center;

	padding: 0px 0px 0px 0px;
	margin: 0px auto;
	width: 600px;
}
.mid-banner .intro-define2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 3em;
	color: #fff;
	text-align: center;

	padding: 0px 0px 0px 0px;
	margin: 0px auto;
	width: 600px;
}

.mid-banner .intro-message {
	font-family: 'Square Peg', cursive;
	font-size: 3em;
	color: #fff;
	text-align: center;

	padding: 0px 0px 0px 0px;
	margin: 0px auto;
	width: 600px;
}
.mid-banner .intro-message2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	color: #fff;
	text-align: center;

	padding: 0px 0px 0px 0px;
	margin: 0px auto;
	width: 600px;
	
	position: relative;
	top: -20px;
}

.end-banner {
	background-color: #b3cbc1;
	
	width: 100%;
	height: 150px;
}

/**
 * FOOTER
 */
.footer {
	font-family: 'Shippori Antique', sans-serif;
	font-size: 0.75em;
	color: #fff;
   
	text-align: center;
   
	padding: 10px;
	margin: 0px;

	background-color: #283f23;
	background-image: url('https://cdn.sumiaki.com/img/scenery.png');
	background-position: top;
}
 
