/*!
Theme Name: codgus
Theme URI: https://codgus.shardsouls.space/
Author: yisaia_noxa
Author URI: https://yisaia.shardsouls.space/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: codgus
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

codgus is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Document
	 ========================================================================== */
:root {
	--bg: #0c0c0c;
	--dark: #111111;
	--accent: #b8860b;     /* dourado envelhecido */
	--accent2: #8b0000;    /* vermelho sangue escuro */
	--text: #e8e8e8;
	--text-muted: #aaaaaa;
	--color-green: green;
	--color-blue: cyan;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Roboto Mono', monospace;
}
body {
    background: url('https://wallpapers.com/images/hd/dark-digital-art-1980-x-1020-wallpaper-xcu56rl5f8ott174.jpg') no-repeat center center fixed;
    background-size: cover;
}

main, section, .card {
    background-color: rgba(17,17,17,0.95); /* deixa o conteúdo legível */
}
main#primary.site-main {
    margin-top: 18px;
}
h1, h2, h3, h4, h5 {
	font-family: 'Cinzel', serif;
	letter-spacing: 2px;
	color: var(--accent);
	text-shadow: 0 0 10px rgba(184,134,11,0.4);
}

.navbar {
	background: rgba(12,12,12,0.95) !important;
	border-bottom: 1px solid var(--accent);
}

.nav-center {
	align-content: center;
	align-items: center;
}

.btn-primary {
	background: var(--accent);
	border: none;
	font-weight: bold;
}
.btn-primary:hover {
	background: #d4a017;
	box-shadow: 0 0 20px rgba(212,160,23,0.6);
}

.btn-cg {
	background: var(--color-green);
	border: none;
	font-weight: bold;
}
.btn-cg:hover {
	background: var(--accent);
	box-shadow: 0 0 20px rgba(212,160,23,0.6);
}

.btn-cb {
	background: var(--color-blue);
	border: none;
	font-weight: bold;
}
.btn-cb:hover {
	background: var(--accent);
	box-shadow: 0 0 20px rgba(212,160,23,0.6);
}
.card {
	background: rgba(17,17,17,0.95);
	border: 1px solid var(--accent);
	backdrop-filter: blur(5px);
}

.hero {
	min-height: 100vh;
	background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)),
				url('https://wallpapers.com/images/hd/dark-digital-art-1980-x-1020-wallpaper-xcu56rl5f8ott174.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
}

.character-card {
	transition: all 0.4s;
}
.character-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(184,134,11,0.3);
}

footer {
	background: var(--dark);
	border-top: 2px solid var(--accent);
}


/* MENU LATERAL FLUTUANTE */
.floating-menu {
	position: fixed;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(17,17,17,0.95);
	border: 1px solid var(--accent);
	border-radius: 12px;
	padding: 20px 12px;
	z-index: 1000;
	backdrop-filter: blur(10px);
	box-shadow: 0 0 30px rgba(184,134,11,0.2);
}
.floating-menu a {
	display: block;
	color: #aaa;
	font-size: 1.6rem;
	margin: 18px 0;
	transition: all 0.3s;
	position: relative;
}
.floating-menu a:hover, .floating-menu a.active {
	color: var(--accent);
	transform: translateX(8px);
}
.floating-menu a::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.9);
	color: var(--accent);
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.9rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	border: 1px solid var(--accent);
}
.floating-menu a:hover::after {
	opacity: 1;
}

/* No celular: vira botão flutuante no canto inferior direito */
@media (max-width: 992px) {
	.floating-menu {
		left: auto;
		right: 15px;
		bottom: 20px;
		top: auto;
		transform: none;
		padding: 15px;
		border-radius: 50px;
		background: rgba(17,17,17,0.98);
	}
	.floating-menu a::after { display: none; }
	.floating-menu a { font-size: 1.4rem; margin: 12px 0; }
}

.lang-switcher{
	background: transparent;
	border: 1px solid var(--accent);
	color: var(--accent2);
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.85rem;
	margin: 0 2px;
}
.lang-switcher button{
	background: transparent;
	border: 1px solid var(--accent);
	color: var(--accent2);
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.85rem;
	margin: 0 2px;
}
.lang-switcher button.active{
	background: var(--accent);
	color: #000;
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

