:root {
	--color-black: #000000;
	--color-dark-bg: #0d0d0d;
	--color-accent-teal: #0afde8;
	--color-accent-gold: #ffc777;
	--color-accent-pink: #ff0055;
	--color-text: #e0e0e0;
	--font-main: 'Roboto', sans-serif;
	--font-special: 'Space Mono', monospace;
	--font-logo: 'Orbitron', sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	background-color: var(--color-black);
}
body {
	font-family: var(--font-main);
	color: var(--color-text);
	line-height: 1.7;
	overflow-x: hidden;
	cursor: auto;
}

.split-text {
	max-width: 1000px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.9;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	column-gap: 2rem;
	column-fill: balance;
	text-indent: 1.2em;
}
@media (min-width: 992px) {
	.split-text {
		column-count: 2;
	}
	.split-text .part2 {
		break-before: column;
		-webkit-column-break-before: always;
	}
}
@media (max-width: 768px) {
	.split-text {
		font-size: 1rem;
		line-height: 1.85;
	}
}
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
}
.content-section {
	padding: 120px 0;
	position: relative;
}

.section-title {
	font-family: var(--font-special);
	font-size: 3.5rem;
	text-align: center;
	margin-bottom: 60px;
	color: #fff;
	text-transform: uppercase;
	position: relative;
}

.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 3rem;
	z-index: 1000;
	background: rgba(13, 13, 13, 0.5);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	height: 80px;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header-socials {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.header-socials a {
	color: var(--color-text);
	font-size: 1.5rem;
	transition: color 0.3s, transform 0.3s;
}
.header-socials a:hover {
	color: var(--color-accent-teal);
	transform: scale(1.2);
}
.desktop-nav a {
	font-family: var(--font-special);
	color: var(--color-text);
	text-decoration: none;
	margin-left: 2rem;
	position: relative;
}
.desktop-nav a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--color-accent-gold);
	transition: width 0.3s;
}
.desktop-nav a:hover:after {
	width: 100%;
}

.menu-toggle {
	display: none;
}
.mobile-nav {
	display: none;
}

#hero {
	height: 100vh;
	width: 100vw;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	background-color: transparent;
}
#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.hero-logo-container {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	height: calc(100vh - 80px);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.animated-logo-container {
	position: relative;
	width: 80vw;
	max-width: 900px;
	aspect-ratio: 16 / 9;
}

.logo-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 2;
	opacity: 0;
	animation: fade-in-text 3s 1.5s ease-out forwards;
}

.logo-background {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: 1;
	clip-path: circle(0% at 50% 50%);
	opacity: 0;
	animation: reveal-background 5s 0.5s ease-out forwards;
}

@keyframes reveal-background {
	100% {
		clip-path: circle(100vmax at 50% 50%);
		opacity: 1;
	}
}

@keyframes fade-in-text {
	100% {
		opacity: 1;
	}
}

.cta-button {
	display: inline-block;
	background: transparent;
	color: var(--color-accent-teal);
	padding: 1rem 2.5rem;
	text-decoration: none;
	font-family: var(--font-special);
	border: 2px solid var(--color-accent-teal);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.cta-button:hover {
	color: var(--color-black);
	box-shadow: 0 0 20px var(--color-accent-teal);
}
.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--color-accent-teal);
	z-index: -1;
	transition: left 0.3s;
}
.cta-button:hover::before {
	left: 0;
}

.services-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}

.service-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 2.5rem;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-accent-teal);
	box-shadow: 0 0 15px rgba(10, 253, 232, 0.3), 0 0 25px rgba(10, 253, 232, 0.2);
}

.service-card i {
	font-size: 3rem;
	color: var(--color-accent-teal);
	margin-bottom: 1rem;
	text-shadow: 0 0 15px var(--color-accent-teal);
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

.service-card h3 {
	font-family: var(--font-special);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #fff;
	transition: color 0.3s ease;
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card p {
	color: #aaa;
	transition: opacity 0.3s ease;
	margin-top: 0;
}

.service-card:hover i,
.service-card:hover h3 {
	color: #fff;
	text-shadow: 0 0 20px var(--color-accent-teal);
}

.pricing-carousel-wrapper {
	position: relative;
	max-width: 400px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0 40px;
}

.pricing-carousel {
	display: flex;
}

.pricing-card {
	flex: 0 0 100%;
	min-width: 100%;
	background: var(--color-dark-bg);
	border: 1px solid #222;
	border-radius: 10px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
	position: relative;
	overflow: hidden;
	margin: 0 1rem;
}

.pricing-card:first-child {
	margin-left: 0;
}
.pricing-card:last-child {
	margin-right: 0;
}

@media (hover: hover) {
	.pricing-card:hover {
		transform: translateY(-10px);
		background-color: var(--color-accent-pink);
		box-shadow: 0 10px 30px rgba(255, 0, 85, 0.3);
	}

	.pricing-card:hover > *,
	.pricing-card:hover .pricing-features li,
	.pricing-card:hover .pricing-unit {
		color: var(--color-black);
	}
	.pricing-card:hover .pricing-price,
	.pricing-card:hover .pricing-features i {
		color: #fff;
	}
}

.pricing-title {
	font-family: var(--font-special);
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 1rem;
	transition: color 0.3s;
}
.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-accent-pink);
	margin-bottom: 1.5rem;
	transition: color 0.3s;
}
.pricing-unit {
	font-size: 1rem;
	font-weight: 400;
	color: #888;
	transition: color 0.3s;
}
.pricing-features {
	perspective: 1200px;
	margin-top: auto;
}
.pricing-features li {
	margin-bottom: 0.5rem;
	color: #ccc;
	transition: color 0.3s;
}

.pricing-features i {
	color: var(--color-accent-pink);
	margin-right: 10px;
	transition: color 0.3s;
}

.artist-card {
	position: relative;
	width: 100%;
	height: 100%;
}
.card-face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
	border-radius: inherit;
	overflow: hidden;
}
.card-face.front {
	display: block;
	z-index: 1;
}
.card-face.back {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	height: auto;
	max-height: 70%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	background: rgba(0, 0, 0, 0.78);
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 2;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}
.artist-slide.show-details .card-face.back {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.artist-slide.show-details .artist-media img {
	filter: grayscale(100%) brightness(0.6);
}

.artist-slide.show-details .card-face.front .artist-title {
	opacity: 0;
}

.artist-back {
	padding: 20px 16px 24px;
	text-align: center;
	width: 100%;
}
.artist-back h3 {
	font-family: var(--font-special);
	color: #fff;
	margin-bottom: 10px;
}
.artist-bio {
	color: #ddd;
	margin-bottom: 16px;
}
.artist-socials {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.artist-socials a {
	color: #fff;
	font-size: 1.4rem;
	transition: color 0.3s, transform 0.3s;
}
.artist-socials a:hover {
	color: var(--color-accent-teal);
	transform: translateY(-2px);
}
.pricing-card.featured {
	border-color: var(--color-accent-pink);
	box-shadow: 0 0 25px rgba(255, 0, 85, 0.3);
}

.featured-badge {
	position: absolute;
	top: 28px;
	right: -55px;
	background: var(--color-accent-pink);
	color: var(--color-black);
	padding: 5px 0;
	width: 180px;
	text-align: center;
	font-family: var(--font-special);
	font-weight: 700;
	transform: rotate(45deg);
	font-size: 0.9rem;
}

.pricing-card.wide .pricing-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 2rem;
}
.pricing-description {
	font-size: 1rem;
	color: #aaa;
	flex-basis: 60%;
}

.pricing-card.wide .pricing-price {
	margin-bottom: 0;
	flex-shrink: 0;
	text-align: right;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.carousel-nav:hover {
	background: var(--color-accent-pink);
	color: var(--color-black);
	box-shadow: 0 0 20px var(--color-accent-pink);
}

.carousel-nav.prev {
	left: -15px;
}

.carousel-nav.next {
	right: -15px;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
.portfolio-card {
	background: rgba(13, 13, 13, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	border: 1px solid #222;
	transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 0 25px rgba(255, 199, 119, 0.3);
	border-color: var(--color-accent-gold);
}
.portfolio-image {
	height: 250px;
	background: #111;
	display: flex;
	justify-content: center;
	align-items: center;
}
.portfolio-image i {
	font-size: 6rem;
	color: var(--color-accent-gold);
	opacity: 0.5;
}
.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.portfolio-title {
	font-family: var(--font-special);
	font-size: 1.5rem;
	color: #fff;
	margin: 1.5rem 0;
	padding-bottom: 1rem;
}
.portfolio-desc {
	display: none;
}

.artists-carousel {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	height: 520px;
}

.artists-track {
	position: relative;
	list-style: none;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	perspective: 1000px;
}

.artist-slide {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 90%;
	aspect-ratio: 9 / 16;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
	will-change: transform, opacity, filter;
}

.artist-media {
	height: 100%;
}

.artist-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 35%;
	display: block;
}

.artist-title {
	position: absolute;
	left: 16px;
	bottom: 16px;
	margin: 0;
	font-family: var(--font-special);
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
	z-index: 2;
}
.card-face.front::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 34%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.85) 100%);
	z-index: 1;
}
.artist-slide.show-details .card-face.back::before,
.artist-slide.show-details .card-face.back::after {
	content: '';
	position: sticky;
	left: 0;
	right: 0;
	height: 12px;
	display: block;
	z-index: 3;
}
.artist-slide.show-details .card-face.back::before {
	top: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}
.artist-slide.show-details .card-face.back::after {
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.artist-slide.is-center {
	z-index: 5;
	transform: translate(-50%, -50%) scale(1);
	box-shadow: 0 15px 40px rgba(10, 253, 232, 0.25);
	cursor: pointer;
}
.artist-slide.is-left {
	z-index: 3;
	transform: translate(-90%, -50%) scale(0.85) rotateY(12deg);
	filter: brightness(0.9) saturate(0.95);
}
.artist-slide.is-right {
	z-index: 3;
	transform: translate(-10%, -50%) scale(0.85) rotateY(-12deg);
	filter: brightness(0.9) saturate(0.95);
}
.artist-slide.is-back {
	z-index: 1;
	transform: translate(-50%, -50%) scale(0.6) rotateY(0deg) translateZ(-200px);
	opacity: 0;
}

.artists-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.artists-nav:hover {
	background: var(--color-accent-gold);
	color: var(--color-black);
	box-shadow: 0 0 20px rgba(255, 199, 119, 0.4);
}
.artists-nav.prev {
	left: -8px;
}
.artists-nav.next {
	right: -8px;
}

@media (max-width: 768px) {
	.artists-carousel {
		height: 460px;
	}
	.artist-slide {
		height: 85%;
	}
	.card-face.back {
		max-height: 78%;
	}
	.artist-slide.is-left {
		transform: translate(-98%, -50%) scale(0.86) rotateY(8deg);
	}
	.artist-slide.is-right {
		transform: translate(-2%, -50%) scale(0.86) rotateY(-8deg);
	}
}

.portfolio-item {
	background: var(--color-dark-bg);
	padding: 2rem;
	border-left: 3px solid var(--color-accent-gold);
}
.audio-player-wrapper p {
	margin-top: 1rem;
	font-family: var(--font-special);
	color: #888;
}
audio {
	width: 100%;
	margin-top: 0.5rem;
}

.contact-details {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 1.2rem;
}
.contact-details p {
	margin-bottom: 0.5rem;
}
.contact-details i {
	color: var(--color-accent-teal);
	margin-right: 10px;
}
.contact-subtitle {
	text-align: center;
	margin: 0 auto 40px;
	max-width: 600px;
}
.contact-form {
	max-width: 700px;
	margin: 0 auto;
}
.input-group {
	position: relative;
	margin-bottom: 2.5rem;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 10px 0;
	background: transparent;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 1.1rem;
	outline: none;
}
.contact-form label {
	position: absolute;
	top: 10px;
	left: 0;
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.3s;
	pointer-events: none;
}
.contact-form input:focus + label,
.contact-form input:valid + label,
.contact-form textarea:focus + label,
.contact-form textarea:valid + label {
	top: -20px;
	font-size: 0.9rem;
	color: var(--color-accent-teal);
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-bottom-color: var(--color-accent-teal);
}

.form-status {
	min-height: 1.2em;
	margin: 0 0 1rem 0;
	font-size: 0.95rem;
	color: #bbb;
}
.form-status.pending {
	color: #bbb;
}
.form-status.success {
	color: #7cfc00;
}
.form-status.error {
	color: #ff6b6b;
}

.cta-button.is-loading {
	opacity: 0.7;
	cursor: wait;
}

footer {
	text-align: center;
	padding: 1.5rem;
	font-family: var(--font-special);
	color: #555;
	font-size: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-gallery {
	display: flex;
	width: 100%;
	height: 60vh;
	max-height: 500px;
	gap: 10px;
}

.panel {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%;
	border-radius: 20px;
	color: #fff;
	cursor: pointer;
	flex: 0.5;
	position: relative;
	transition: flex 0.7s ease-in;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.panel.active {
	flex: 5;
}

.panel h3 {
	font-family: var(--font-special);
	font-size: 24px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	margin: 0;
	opacity: 0;
	transition: opacity 0.3s ease-in 0.4s;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.panel.active h3 {
	opacity: 1;
}

@media (min-width: 769px) {
	.pricing-carousel-wrapper {
		max-width: 100%;
		overflow: visible;
		padding: 0;
	}
	.pricing-carousel {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
		transform: none !important;
	}
	.pricing-card {
		flex: auto;
		min-width: auto;
		margin: 0;
	}
	.pricing-card.wide {
		grid-column: span 2;
	}
	.carousel-nav {
		display: none;
	}
}

@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 992px) {
	.section-title {
		font-size: 2.8rem;
	}
	.main-header {
		padding: 1rem 2rem;
	}
}

@media (max-width: 768px) {
	.animated-logo-container {
		width: 90vw;
		max-width: 450px;
	}

	.main-header {
		padding: 1rem 1.5rem;
		height: 70px;
	}
	.header-socials {
		gap: 1rem;
	}
	.header-socials a {
		font-size: 1.3rem;
	}

	.desktop-nav {
		display: none;
	}

	.menu-toggle {
		display: block;
		position: relative;
		width: 30px;
		height: 22px;
		background: transparent;
		border: none;
		cursor: pointer;
		z-index: 1001;
	}
	.menu-toggle span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: #fff;
		border-radius: 3px;
		opacity: 1;
		left: 0;
		transform: rotate(0deg);
		transition: 0.25s ease-in-out;
	}
	.menu-toggle span:nth-child(1) {
		top: 0px;
	}
	.menu-toggle span:nth-child(2) {
		top: 9px;
	}
	.menu-toggle span:nth-child(3) {
		top: 18px;
	}
	.menu-toggle.is-active span:nth-child(1) {
		top: 9px;
		transform: rotate(135deg);
	}
	.menu-toggle.is-active span:nth-child(2) {
		opacity: 0;
		left: -30px;
	}
	.menu-toggle.is-active span:nth-child(3) {
		top: 9px;
		transform: rotate(-135deg);
	}

	.mobile-nav {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(10px);
		z-index: 1000;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}
	.mobile-nav.is-active {
		opacity: 1;
		pointer-events: all;
		transform: translateY(0);
	}
	.mobile-nav-link {
		color: #fff;
		text-decoration: none;
		font-family: var(--font-special);
		font-size: 2rem;
		margin: 1.5rem 0;
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}
	.mobile-nav.is-active .mobile-nav-link {
		opacity: 1;
		transform: translateY(0);
		transition-delay: 0.2s;
	}

	.section-title {
		font-size: 2.2rem;
	}
	.content-section {
		padding: 80px 0;
	}
	.container {
		padding: 0 1rem;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.carousel-nav.prev {
		left: 0px;
	}
	.carousel-nav.next {
		right: 0px;
	}
	.pricing-carousel-wrapper {
		padding: 0;
	}
	.pricing-card.wide .pricing-content {
		flex-direction: column;
		align-items: flex-start;
	}
	.pricing-description {
		max-width: 100%;
		margin-bottom: 1rem;
	}

	.accordion-gallery {
		flex-direction: column;
		height: 80vh;
		gap: 8px;
	}
	.panel {
		flex: 1;
		border-radius: 15px;
	}
	.panel.active {
		flex: 10;
	}
	.panel h3 {
		font-size: 18px;
		bottom: 15px;
		left: 15px;
	}
}

.lang-switcher {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-special);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.3rem 0.5rem;
	border-radius: 5px;
}

.lang-option {
	cursor: pointer;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.3s;
	padding: 0 0.2rem;
}

.lang-option:hover {
	color: var(--color-accent-teal);
}

.lang-option.active {
	color: #fff;
	font-weight: 700;
}
