/*
Theme Name: Neurotrash
Theme URI: https://neurotrash.media/
Description: Neurotrash WordPress Theme
Version: 1.0
Author: Neurotrash
Author URI: https://neurotrash.media/
Tags: neurotrash
*/

/* VARIABLES */
:root {
	--mainColor: #4cbb17;
	--lightColor: rgba(76, 187, 23, 0.2);

	--colorPrimary: #C13091;
	--colorSecondary: #E65FA0;
	--colorSecondaryLight: rgba(230, 95, 160, .3);

	--colorWhite: #FFFFFF;
	--colorBlack: #080304;
	--colorGray: #adb5bd;

	--siteWidth: 1020px;
	--mainColumnWidth: 640px;

	--vkColor: #45668e;
	--fbColor: #3b5998;
	--twColor: #1da1f2;
	--tgColor: #0088cc;
	--waColor: #4FCE5D;
	--okColor: #ed812b;
	--vbColor: #59267c;
	--zenColor: #2E3238;
}

@font-face {
    font-family: 'Mustica Pro';
    src: url('./fonts/MusticaPro-SemiBold.woff2') format('woff2'),
        url('./fonts/MusticaPro-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* GENERAL STYLES */
html, body {
	margin: 0;
	padding: 0;
}
html {
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 18px;
	line-height: 1.5;
	background: var(--colorWhite);
	color: var(--colorBlack);
	width: 100%;
}
* {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
a {
	text-decoration: none;
	color: var(--colorSecondary);
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}
a:hover {
	color: var(--colorPrimary);
}

/* LAYOUT */
.site {
	width: 100%;
	max-width: var(--siteWidth);
	margin: 0 auto;
	padding: 0 20px;
}
.container {
	width: 100%;
	max-width: var(--siteWidth);
	display: flex;
	margin: 20px 0 0 0;
}
.containerLeft {
	width: 100%;
}
.containerRight {
	width: 100%;
}

@media screen and (max-width: 979px) {
	.site {
		
	}
	.container {
		flex-direction: column;
	}
}

@media screen and (min-width: 980px) {
	.container {
		flex-direction: row;
		justify-content: space-between;
	}
	.containerLeft {
		max-width: var(--mainColumnWidth);
	}
	.containerRight {
		max-width: 300px;
	}
}


/* HEADER */
.header {
	padding: 20px 0;
}
.logo {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.logo img {
	width: 48px;
	height: 48px;
}
.logoText {
	font-family: 'Mustica Pro';
	font-size: 1.4em;
	font-weight: normal;
	color: var(--colorBlack);
	margin: 0;
	padding: 0;
}
.nav {
	width: 100%;
	background: var(--colorBlack);
	border-radius: 4px;
	padding: 20px 40px;
}
.navMenu {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	gap: 2em;
	margin: 0;
	padding: 0;
}
.navMenu li a {
	color: var(--colorWhite);
	font-weight: 600;
}
.navMenu li a:hover {
	color: var(--colorSecondary);
}

/* FEED */
.postFeed {
	margin: 0 0 40px 0;
}
.postFeedTitle {
	color: var(--colorBlack);
}
.postFeedTitle:hover {
	color: var(--colorSecondary);
}
.postFeed h2 {
	font-size: 2em;
	margin: 0;
	padding: 0;
}
.postFeedInfo {
	margin: 10px 0;
}
.postFeedInfo > span {
	color: var(--colorGray);
}
.postFeed img, .postSingle img {
	width: 100%;
	height: auto;
}
.postFeedReadMore {
	color: var(--colorSecondary);
	border: 2px solid var(--colorSecondary);
	border-radius: 4px;
	padding: 12px 24px;
	display: inline-block;
}
.postFeedReadMore:hover {
	background: var(--colorSecondary);
	color: var(--colorWhite);
}

/* SINGLE */
.postSingle {

}
.postSingle h1 {
	margin: 0;
	padding: 0;
}
.postSingleContent a {
	border-bottom: 2px solid var(--colorSecondaryLight);
}
.postSingleContent a:hover {
	border-bottom: 2px solid var(--colorPrimary);
}
.postSingleContent ul {
	list-style-type: none;
	margin: 0;
	padding-inline-start: 20px;

}
.postSingleContent ul li {
	position: relative;
}
.postSingleContent ul li::before {
	content: '';
	position: absolute;
	top: 10px;
	left: -20px;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: var(--colorSecondaryLight);
}

.postSingleTags {
	margin-bottom: 20px;
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}
.postSingleTags a {
	background: var(--colorSecondaryLight);
	color: var(--colorPrimary);
	padding: 12px 16px;
	font-size: .7em;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 4px;
}
.postSingleTags a:hover {
	background: var(--colorSecondary);
	color: var(--colorWhite);
}

/* ARCHIVE */
.archiveHeader {
	margin-bottom: 40px;
}
.archiveHeader h1 {
	margin: 0;
	padding: 0;
}

/*
.social {
	border: 1px solid #eee;
	padding: 10px 20px;
	position: relative;
	overflow: hidden;
	display: block;
	color: #222;
	margin-bottom: 10px;
	border-radius: 4px;
}
.social:hover, .social:hover i {
	color: #fff !important;
}
.social-content {
	width: 70%;
}
.social-title {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	z-index: 2;
}
.social-subtitle {
	color: #ddd;
	z-index: 2;
	font-size: 14px;
	display: block;
}
.social i {
	position: absolute;
	bottom: -50px;
	right: -5%;
	font-size: 96px;
	z-index: 2;
	transition: all .2s ease-in-out;
	opacity: 0.5;
}
#social-vk i {
	color: var(--vkColor);
}
#social-vk:hover {
	background: var(--vkColor);
	border: 1px solid var(--vkColor);
}
#social-tg i {
	color: var(--tgColor);
}
#social-tg:hover {
	background: var(--tgColor);
	border: 1px solid var(--tgColor);
}
*/


/* SIDEBAR */
.sidebarLinks {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 10px;
}
.sidebarLinks a {
	border: 1px solid var(--colorGray);
	padding: 10px 20px;
	width: 48%;
	text-align: center;
	font-weight: bold;
	font-size: .8em;
	color: var(--colorBlack);
	border-radius: 4px;
}
.sidebarLinks a:hover {
	border: 1px solid var(--colorSecondary);
	color: var(--colorSecondary);
}



/* PAGINATION */
.pagination {
	width: 100%;
	display: table;
	text-align: center;
}
.pagination a {
	background-color: var(--mainColor);
	color: #fff;
	padding: 8px 16px;
	font-family: "Montserrat", sans-serif;
	margin: 0 4px 4px 0;
	font-size: 14px;
	font-weight: bold;
	border-radius: 4px;
}

/* FOOTER */
footer {
	width: 100%;
	padding: 40px 0;
	background: var(--colorBlack);
	margin: 40px 0 0 0;
	color: #fff;
}
.footerContainer {
	width: 100%;
	max-width: var(--siteWidth);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.copy {

}
.copy a {
	font-family: 'Mustica Pro';
	font-size: 1.8em;
	color: #fff;
}
footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
footer ul li {
	float: left;
	margin: 0 5px;
}
footer ul li a {
	color: var(--colorWhite);
	font-size: 16px;
	font-weight: 600;
}
footer ul li a:hover {
	color: var(--colorSecondary);
}


@media screen and (min-width: 980px) {
	
	
}

@media screen and (min-width: 640px) and (max-width: 979px) {
	
}

@media screen and (min-width: 640px) {
	

}

@media screen and (max-width: 639px) {
	body {
		font-size: 16px;
	}
	.footerContainer {
		flex-direction: column;
	}
}