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

:root {
	--primary-color: #1a1a1a;
	--secondary-color: #333;
	/* --accent-color: #ff6b6b; */
	--accent-color: #c86158;
	--text-light: #ffffff;
	--text-dark: #333;
	--bg-light: #f5f5f5;
	--bg-dark: #1a1a1a;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
}

.container {
	max-width: 90%;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/* background: rgba(26, 26, 26, 0.0); */
	/* backdrop-filter: blur(10px); */
	z-index: 1000;
	padding: 1rem 0;
}

.nav-container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.nav-link {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

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

.lang-switcher {
	margin-left: auto;
}

.lang-link {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	padding: 0.25rem 0.75rem;
	border: 1px solid var(--text-light);
	border-radius: 4px;
	transition: all 0.3s;
	font-size: 0.9rem;
}

.lang-link:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--text-light);
}

/* Home Section */
.home-section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.home-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: 53% 55%;
	background-repeat: no-repeat;
	object-position: 0% 100%;
  	/* transform: scale(1.3); */
}

.home-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: #580c72; */
	/* gradient based on bluring the backgraound image */
	background: linear-gradient(135deg,rgba(21, 5, 44, 1) 0%, rgba(117, 37, 108, 1) 50%, rgba(21, 5, 44, 1) 100%);
}

.home-content {
	position: absolute;
	text-align: center;
	top: 60%;
	color: var(--text-light);
	/* top: 0.95; */
	/* padding: 0 20px; */
}

.home-title {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 700;
	margin-bottom: 0rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
}

.home-subtitle {
	font-size: clamp(1.2rem, 3vw, 2.5rem);
	font-weight: 375;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--text-light);
	font-size: 2rem;
	text-decoration: none;
	animation: bounce 2s infinite;
	z-index: 2;
}

/* Footer */
.site-footer {
	background: var(--bg-dark);
	color: var(--text-light);
	padding: 3rem 0;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.social-links a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--accent-color);
}

/* Platform Icons */
.platform-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	transition: transform 0.3s, opacity 0.7;
	text-decoration: none;
}

.platform-icon:hover {
	transform: scale(1.15);
	opacity: 0.7;
}

.platform-icon svg {
	width: 32px;
	height: 32px;
	fill: var(--text-dark);
}

/* Home Social Icons */
.home-social-icons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.home-social-icons .platform-icon {
	width: 48px;
	height: 48px;
}

.home-social-icons .platform-icon svg {
	width: 36px;
	height: 36px;
	fill: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.nav-container {
		gap: 1rem;
	}

	.nav-link {
		font-size: 0.9rem;
	}

	.home-title {
		font-size: 2.5rem;
	}

	.home-subtitle {
		font-size: 1.5rem;
	}

	.projects-section,
	.shows-section,
	.contact-section {
		padding: 4rem 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	.show-item {
		flex-direction: column;
		text-align: center;
	}

	.show-date {
		min-width: 100px;
	}

	.show-tickets {
		width: 100%;
	}

	.platform-icon {
		width: 36px;
		height: 36px;
	}

	.platform-icon svg {
		width: 28px;
		height: 28px;
	}

	.home-social-icons .platform-icon {
		width: 40px;
		height: 40px;
	}

	.home-social-icons .platform-icon svg {
		width: 32px;
		height: 32px;
	}
}
