@import url("fonts/fonts.css");

/* Base styles */
:root {
	--primary-color: #00c2ff;
	--secondary-color: #7209b7;
	--dark-color: #121212;
	--light-color: #f4f4f4;
	--accent-color: #4cc9f0;
	--text-color: #e0e0e0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	background-color: var(--dark-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

h1,
h2,
h3 {
	font-family: "Cinzel", serif;
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: var(--text-color);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-color);
}

#particles-js {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: var(--dark-color);
	z-index: -1;
}

/* Header Styles */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 5%;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: rgba(18, 18, 18, 0.8);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

header.scrolled {
	padding: 1rem 5%;
	background: rgba(18, 18, 18, 0.95);
}

.logo h1 {
	font-size: 2rem;
	color: var(--primary-color);
	text-shadow: 0 0 10px rgba(0, 194, 255, 0.7);
	margin: 0;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 2rem;
}

nav ul li a {
	position: relative;
	font-weight: 500;
	font-size: 1.1rem;
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

nav ul li a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9)),
		url("images/wizard mode.JPG");
	background-size: cover;
	background-position: center;
	padding: 0 5%;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, transparent 50%, var(--dark-color) 150%);
}

.hero-content {
	text-align: center;
	position: relative;
	z-index: 1;
	animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
	font-size: 5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	text-shadow: 0 0 15px rgba(0, 194, 255, 0.8);
	letter-spacing: 10px;
}

.tagline {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(
		45deg,
		var(--secondary-color),
		var(--primary-color)
	);
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(0, 194, 255, 0.4);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 194, 255, 0.6);
	color: white;
}

.cta-button i {
	margin-right: 10px;
}

/* Albums Section */
.albums {
	padding: 8rem 5% 5rem;
	text-align: center;
}

.albums h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 3rem;
	text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.album-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
	justify-items: center;
}

.album {
	max-width: 300px;
	transition: transform 0.3s ease;
}

.album:hover {
	transform: translateY(-10px);
}

.album-cover {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
	margin-bottom: 1rem;
}

.album-cover img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.album:hover .album-cover img {
	transform: scale(1.05);
}

.album-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(18, 18, 18, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.album:hover .album-overlay {
	opacity: 1;
}

.album-overlay a {
	background: linear-gradient(
		45deg,
		var(--secondary-color),
		var(--primary-color)
	);
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.album h3 {
	font-size: 1.2rem;
	font-weight: 600;
}

/* Featured Tracks Section */
.featured {
	padding: 5rem 5%;
	background: rgba(18, 18, 18, 0.7);
	text-align: center;
}

.featured h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 3rem;
	text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.featured-tracks {
	max-width: 800px;
	margin: 0 auto;
}

.track {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.3s ease;
}

.track:hover {
	background: rgba(0, 194, 255, 0.1);
}

.track h3 {
	flex: 2;
	text-align: left;
	margin: 0;
	font-size: 1.2rem;
	font-weight: 500;
}

.track p {
	flex: 1;
	text-align: center;
	opacity: 0.7;
}

.play-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(
		45deg,
		var(--secondary-color),
		var(--primary-color)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.play-button:hover {
	transform: scale(1.1);
	color: white;
}

/* About Section */
.about {
	padding: 5rem 5%;
}

.about-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

.about-image {
	flex: 1;
	min-width: 300px;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-text h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.social-links {
	margin-top: 2rem;
}

.social-button {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	margin-right: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-button.spotify {
	background: #1db954;
	color: white;
}

.social-button.spotify:hover {
	background: #1ed760;
	transform: translateY(-3px);
	color: white;
}

.social-button i {
	margin-right: 8px;
}

/* Legal Pages */
.legal-content {
	padding: 120px 5% 5rem;
	max-width: 800px;
	margin: 0 auto;
}

.legal-section {
	background: rgba(18, 18, 18, 0.8);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.legal-section h1 {
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.legal-section h2 {
	color: var(--primary-color);
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
}

.legal-section h3 {
	color: var(--text-color);
	font-size: 1.2rem;
	margin: 1.5rem 0 0.5rem;
}

.legal-section p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

.back-link {
	margin-top: 3rem;
	text-align: center;
}

.back-link a {
	color: var(--primary-color);
	font-weight: 600;
	transition: all 0.3s ease;
}

.back-link a:hover {
	text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

/* Footer */
footer {
	background: rgba(18, 18, 18, 0.95);
	padding: 3rem 5%;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-logo {
	font-family: "Cinzel", serif;
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.footer-links {
	margin-bottom: 1.5rem;
}

.footer-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--primary-color);
	margin: 0 10px;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	background: var(--primary-color);
	color: var(--dark-color);
	transform: translateY(-3px);
}

.legal-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.legal-links a {
	color: var(--text-color);
	font-size: 0.9rem;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.legal-links a:hover {
	color: var(--primary-color);
	opacity: 1;
}

.copyright {
	opacity: 0.7;
	font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(0, 194, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(0, 194, 255, 0);
	}
}

/* Media Queries */
@media screen and (max-width: 768px) {
	.hero-content h1 {
		font-size: 3.5rem;
	}

	.tagline {
		font-size: 1.2rem;
	}

	.about-content {
		flex-direction: column;
		text-align: center;
	}

	.track {
		padding: 1rem;
	}

	.track h3 {
		font-size: 1rem;
	}
}

@media screen and (max-width: 480px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}

	nav ul li {
		margin-left: 1rem;
	}

	nav ul li a {
		font-size: 0.9rem;
	}

	.album-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.legal-links {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.legal-section h1 {
		font-size: 2rem;
	}
}

/* Cookie Consent Banner */
.cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(18, 18, 18, 0.95);
	backdrop-filter: blur(10px);
	padding: 1.5rem 5%;
	z-index: 9999;
	border-top: 1px solid var(--primary-color);
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.cookie-consent-banner.active {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cookie-text {
	flex: 1;
	min-width: 300px;
	margin: 0;
	font-size: 0.9rem;
}

.cookie-buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.cookie-button {
	padding: 0.5rem 1rem;
	border-radius: 4px;
	border: none;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-button.accept {
	background: var(--primary-color);
	color: var(--dark-color);
}

.cookie-button.customize {
	background: transparent;
	color: var(--text-color);
	border: 1px solid var(--text-color);
}

.cookie-button.reject {
	background: var(--secondary-color);
	color: white;
}

.cookie-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Cookie Preferences Modal */
.cookie-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.cookie-modal.active {
	display: flex;
}

.cookie-modal-content {
	background: var(--dark-color);
	border-radius: 10px;
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h2 {
	margin: 0;
	color: var(--primary-color);
}

.cookie-modal-close {
	font-size: 2rem;
	cursor: pointer;
	color: var(--text-color);
}

.cookie-modal-close:hover {
	color: var(--primary-color);
}

.cookie-modal-body {
	padding: 1.5rem;
}

.cookie-category {
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cookie-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.cookie-category h3 {
	margin: 0;
	color: var(--text-color);
}

.cookie-toggle {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.cookie-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 24px;
}

.cookie-toggle-slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
	background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
	transform: translateX(26px);
}

.cookie-modal-footer {
	padding: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: right;
}

@media screen and (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-text {
		min-width: unset;
	}

	.cookie-buttons {
		justify-content: center;
	}
}
