/*
Theme Name: Radical Audio
Theme URI: https://radicalaudio.gr/
Author: Radical Audio
Description: Custom WordPress theme for Radical Audio.
Version: 1.0.0
Text Domain: radical-audio
*/

/* ==================================================
   BASE
================================================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap");

:root {
	--color-black: #050505;
	--color-dark: #0d0f0e;
	--color-surface: #151816;
	--color-white: #f4f4f0;
	--color-muted: #9b9e9b;
	--color-green: #9cff00;
	--color-border: rgba(255, 255, 255, 0.14);
	--font-main: "Montserrat", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	margin: 0;
	scroll-behavior: smooth;
}

body {
	margin: 0;

	color: var(--color-white);
	background: var(--color-black);

	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.6;

	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute;

	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;

	overflow: hidden;
	clip: rect(0, 0, 0, 0);

	white-space: nowrap;
	border: 0;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
	position: relative;
	z-index: 100;

	width: 100%;

	background:
		linear-gradient(
			90deg,
			rgba(156, 255, 0, 0.04),
			transparent 35%
		),
		rgba(5, 5, 5, 0.96);

	border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;

	width: min(100% - 48px, 1440px);
	min-height: 92px;
	margin-inline: auto;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;

	flex-shrink: 0;
}

.site-header__brand .custom-logo-link {
	display: block;
}

.site-header__brand .custom-logo {
	width: auto;
	max-width: 210px;
	max-height: 58px;

	object-fit: contain;
}

.site-header__brand-text {
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 42px;
}

.primary-menu,
.footer-menu {
	padding: 0;
	margin: 0;

	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.primary-menu a {
	position: relative;

	display: block;
	padding: 12px 0;

	color: var(--color-white);

	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;

	height: 2px;

	content: "";
	background: var(--color-green);

	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.language-switcher {
	display: flex;
	align-items: center;
	gap: 7px;

	color: var(--color-muted);

	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.language-switcher__link:hover,
.language-switcher__link.is-active {
	color: var(--color-green);
}

.menu-toggle {
	display: none;

	padding: 8px;

	color: inherit;
	background: transparent;
	border: 0;

	cursor: pointer;
}

.menu-toggle__line {
	display: block;

	width: 27px;
	height: 2px;
	margin: 5px 0;

	background: var(--color-white);
}


/* ==================================================
   TEMPORARY MAIN SCREEN
================================================== */

.site-main {
	min-height: 58vh;
}

.temporary-screen {
	position: relative;

	display: grid;
	align-items: center;

	min-height: 58vh;
	padding: 100px 24px;

	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			rgba(156, 255, 0, 0.08),
			transparent 38%
		),
		repeating-linear-gradient(
			90deg,
			transparent 0,
			transparent 79px,
			rgba(255, 255, 255, 0.025) 80px
		),
		var(--color-dark);
}

.temporary-screen::after {
	position: absolute;
	top: 0;
	right: 7%;

	width: 1px;
	height: 100%;

	content: "";
	background: var(--color-green);
	opacity: 0.35;
}

.temporary-screen__content {
	position: relative;
	z-index: 1;

	width: min(100%, 1100px);
	margin-inline: auto;
}

.temporary-screen__eyebrow {
	margin: 0 0 18px;

	color: var(--color-green);

	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.22em;
}

.temporary-screen h1 {
	max-width: 900px;
	margin: 0;

	color: var(--color-white);

	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.055em;
	text-transform: uppercase;
}

.temporary-screen__content > p:last-child {
	max-width: 600px;
	margin: 30px 0 0;

	color: var(--color-muted);

	font-size: 1.05rem;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
	position: relative;

	padding: 72px 24px 0;

	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			rgba(156, 255, 0, 0.055),
			transparent 35%
		),
		#080908;

	border-top: 1px solid var(--color-border);
}

.site-footer::before {
	position: absolute;
	top: 0;
	left: 0;

	width: 140px;
	height: 3px;

	content: "";
	background: var(--color-green);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(260px, 1.6fr) 1fr 1fr;
	gap: 70px;

	width: min(100%, 1360px);
	margin-inline: auto;
	padding-bottom: 64px;
}

.site-footer__brand .custom-logo-link {
	display: inline-block;
}

.site-footer__brand .custom-logo {
	width: auto;
	max-width: 190px;
	max-height: 62px;

	object-fit: contain;
}

.site-footer__brand > p {
	max-width: 390px;
	margin: 25px 0 0;

	color: var(--color-muted);

	font-size: 0.92rem;
}

.footer-menu li + li {
	margin-top: 10px;
}

.footer-menu a {
	color: var(--color-muted);

	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;

	transition: color 160ms ease;
}

.footer-menu a:hover {
	color: var(--color-green);
}

.site-footer__heading {
	margin: 0 0 18px;

	color: var(--color-green);

	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.18em;
}

.site-footer__contact a {
	color: var(--color-white);

	font-size: 1rem;
	font-weight: 700;
}

.site-footer__contact a:hover {
	color: var(--color-green);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;

	width: min(100%, 1360px);
	min-height: 84px;
	margin-inline: auto;

	border-top: 1px solid var(--color-border);
}

.site-footer__copyright {
	margin: 0;

	color: #747874;

	font-size: 0.72rem;
	letter-spacing: 0.04em;
}

.site-footer__powered-by {
	display: flex;
	align-items: center;
	gap: 12px;

	color: #747874;

	font-size: 0.7rem;
	letter-spacing: 0.06em;
}

.site-footer__powered-by img {
	width: auto;
	max-width: 76px;
	max-height: 30px;

	object-fit: contain;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 900px) {
	.site-header__inner {
		width: min(100% - 32px, 1440px);
		min-height: 78px;
	}

	.site-header__brand .custom-logo {
		max-width: 165px;
		max-height: 48px;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		display: none;
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.temporary-screen {
		min-height: 62vh;
		padding-block: 80px;
	}

	.temporary-screen h1 {
		font-size: clamp(2.7rem, 15vw, 4.5rem);
	}

	.site-footer {
		padding-inline: 20px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;

		padding: 24px 0;
	}
}

.site-header__logo {
	display: block;
	width: 180px;
	height: 54px;
	object-fit: contain;
	object-position: left center;
}

@media (max-width: 600px) {
	.site-header__logo {
		width: 150px;
		height: 45px;
	}
}