/* @override
	http://localhost:8888/style.css?* */

html {
	background: #050505;
}

body {
	margin: 0;
	min-height: 100vh;
	background-color: transparent;
}

.page-background {
	position: fixed;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	pointer-events: none;
	transition: opacity 900ms ease;
}

html.is-page-bg-ready .page-background {
	opacity: 1;
}

main {
	position: relative;
	z-index: 1;
	min-height: 100vh;
}

#aethervox-logo,
.home-actions {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

#aethervox-logo {
	top: 50%;
	width: min(90vw, 1427px);
	transform: translate(-50%, -50%);
	filter:
		drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.home-actions {
	top: calc(50% + 200px);
	display: flex;
	align-items: center;
	gap: clamp(18px, 4vw, 36px);
}

#soundcloud img {
	display: block;
	width: min(19vw, 120px);
	height: auto;
	transition: filter .12s ease-in-out;
}

#soundcloud:hover img,
#soundcloud:focus-visible img {
	filter: brightness(0.08);
}

.contact-trigger,
.contact-dialog__copy {
	font: 700 0.88rem/1.1 Arial, Helvetica, sans-serif;
	line-height: 1rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #f7f4ee;
	background: rgba(12, 12, 12, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.38);
	cursor: pointer;
}

.contact-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	min-height: 38px;
	padding: 0;
	color: #fff;
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.54);
	border-radius: 5px;
	transition: background .1s ease-in-out 0s;
}

.contact-icon {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.pluto-button {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
	transition: filter .12s ease-in-out;
}

a:hover .pluto-button,
a:focus-visible .pluto-button {
	filter: brightness(0.68);
}

.contact-dialog__copy:hover,
.contact-dialog__copy:focus-visible {
	background: rgba(245, 245, 245, 0.22);
	outline: none;
}

.contact-trigger:hover {
	background: rgba(12, 12, 12, 0.72);
	color: #f7f4ee;
}

.contact-trigger:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.contact-dialog {
	width: min(88vw, 360px);
	padding: 0;
	color: #f7f4ee;
	background: transparent;
	border: 0;
}

.contact-dialog::backdrop {
	background: rgba(0, 0, 0, 0.62);
	backdrop-filter: blur(3px);
}

.contact-dialog__panel {
	position: relative;
	padding: 30px 30px 30px;
	background: rgba(10, 10, 10, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.26);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.54);
	text-align: center;
}

.contact-dialog__label {
	margin: 0 0 16px;
	font: 700 0.8rem/1 Arial, Helvetica, sans-serif;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.contact-dialog__email {
	display: block;
	margin: 0 0 22px;
	color: #ffffff;
	font: 400 clamp(1.1rem, 4vw, 1.45rem)/1.25 Georgia, serif;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.contact-dialog__email:hover,
.contact-dialog__email:focus-visible {
	text-decoration: underline;
	outline: none;
}

.contact-dialog__copy {
	min-height: 36px;
	padding: 0 18px;
}

@media only screen and (max-width: 480px) and (orientation: portrait) {
	.home-actions {
		top: calc(50% + 115px);
		flex-direction: column;
		gap: 18px;
	}

	.contact-trigger {
		min-height: 38px;
		width: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.page-background {
		transition: none;
	}
}
