@charset "UTF-8";
@import url(font-awesome.min.css);
@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap";

/* Variables */
:root {
	--primary-color: #000000;
	--secondary-color: #ffffff;
	--accent-color: #cc3333;
	--text-light: #666666;
	--border-color: #e0e0e0;
	--transition: all 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Navigation */
#main-nav {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo img {
	height: 50px;
	width: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-menu a {
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	position: relative;
}

.nav-menu a:hover {
	color: var(--accent-color);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.nav-toggle span {
	width: 25px;
	height: 2px;
	background-color: var(--primary-color);
	margin: 3px 0;
	transition: var(--transition);
}

/* Hero Section */
#hero {
	height: 100vh;
	background-image: url('../../images/cover.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 0;
}

.hero-content {
	text-align: center;
	color: white;
	z-index: 1;
}

.hero-title {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.hero-subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	animation-fill-mode: both;
}

.hero-cta {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: var(--accent-color);
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	border-radius: 50px;
	animation: fadeInUp 1s ease 0.4s;
	animation-fill-mode: both;
	transition: var(--transition);
}

.hero-cta:hover {
	background-color: #aa2222;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(204, 51, 51, 0.3);
}

/* Artists Section */
#artists {
	padding: 5rem 0;
	background-color: #f8f8f8;
	position: relative;
	z-index: 10;
}

.section-title {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--accent-color);
}

.artists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.artist-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
	position: relative;
	z-index: 1;
}

.artist-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.artist-image {
	position: relative;
	height: 300px;
	overflow: hidden;
}

.artist-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

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

.artist-card:hover .artist-overlay {
	opacity: 1;
}

.artist-card:hover .artist-image img {
	transform: scale(1.1);
}

.view-artist {
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	padding: 0.8rem 1.5rem;
	border: 2px solid white;
	transition: var(--transition);
}

.artist-card:hover .view-artist {
	background-color: white;
	color: var(--primary-color);
}

.artist-info {
	padding: 2rem;
}

.artist-info h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.artist-genre {
	color: var(--accent-color);
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.artist-bio {
	color: var(--text-light);
	line-height: 1.6;
}

/* About Section */
#about {
	padding: 5rem 0;
	background-color: white;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.1rem;
	color: var(--text-light);
}

/* Footer */
footer {
	background-color: var(--primary-color);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
	align-items: center;
	margin-bottom: 2rem;
}

.footer-logo img {
	height: 60px;
	filter: brightness(0) invert(1);
}

.footer-contact {
	text-align: center;
}

.footer-contact h3 {
	margin-bottom: 1rem;
}

.contact-email {
	color: white;
	font-size: 1.1rem;
	transition: var(--transition);
}

.contact-email:hover {
	color: var(--accent-color);
}

.footer-social {
	display: flex;
	justify-content: flex-end;
	gap: 1.5rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.footer-social a:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.bluesky-icon {
	width: 20px;
	height: 20px;
	transition: var(--transition);
}

.bluesky-link:hover .bluesky-icon {
	transform: scale(1.1);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
	.nav-menu {
		display: none;
	}
	
	.nav-toggle {
		display: flex;
	}
	
	.hero-title {
		font-size: 3rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
	
	.artists-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}
	
	.footer-social {
		justify-content: center;
	}
	
	.section-title {
		font-size: 2rem;
	}
}