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

body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: italic;
	background-color: var(--color-background);
	text-align: center;
	text-transform: uppercase;
	padding: var(--space-sm);
	margin: var(--space-sm);
}

/* Header */
.header {
	height: 100vh;
	position: relative;
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
		url('../images/header-background.jpg');
	background-size: cover;
	background-position: left;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	padding: var(--space-lg);
}

.header h1 {
	color: var(--color-primary);
	font-size: var(--font-size-xxl);
	margin-top: 20vh;
}

/* Social Icons */
.social-icons {
	margin-top: var(--space-sm);
}

.social-icons a {
	display: inline-block;
	margin-right: var(--space-sm);
	color: var(--color-primary);
	transition: transform 0.3s ease;
}

.social-icons a i {
	font-size: var(--icon-size-base);
}

.social-icons a:hover {
	color: var(--color-secondary);
	transform: scale(1.2);
}

/* Images */
.header-image {
	position: relative;
	margin: auto 0 var(--space-sm);
	max-width: 5vh;
	height: auto;
	padding: 1px;
	background-color: var(--color-secondary);
	border-radius: 50px;
}

.footer-image {
	position: relative;
	margin-top: var(--space-sm);
	width: 6vh;
	height: 6vh;
	padding: 2vh;
	background-color: var(--color-secondary);
	border-radius: 50%;
	object-fit: contain;
	object-position: center;
	box-sizing: content-box;
}

/* Shows Container */
.container {
	margin-top: var(--space-sm);
	padding: var(--space-sm);
	color: var(--color-secondary);
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Show Year Headers */
.container h2 {
	font-size: var(--font-size-xxl);
	margin-bottom: var(--space-md);
	margin-top: var(--space-lg);
}

.container h2:first-of-type {
	margin-top: var(--space-sm);
}

/* Show List */
ul {
	font-size: var(--font-size-lg);
	list-style-type: none;
	padding: 0;
}

li {
	margin-bottom: var(--space-sm);
}

/* Show States */
.past-show,
.past-year {
	color: var(--color-text-dark);
}

.venue {
	font-weight: bold;
}

.notes {
	font-size: var(--font-size-base);
	font-weight: bold;
}

/* Footer */
.chevron {
	color: var(--color-secondary);
	margin-bottom: 10vh;
	animation: bounce 2s infinite;
	cursor: pointer;
}

.chevron i {
	font-size: var(--icon-size-lg);
}

/* Bounce Animation */
@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-20px);
	}
	60% {
		transform: translateY(-10px);
	}
}

.rights {
	font-size: var(--font-size-xs);
	color: var(--color-secondary);
	margin-top: var(--space-sm);
}

/* Snow Container */
.snow-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100;
	overflow: hidden;
}

/* Snow Animation */
.snow {
	position: absolute;
	width: 10px;
	height: 10px;
	background: transparent;
	opacity: 0.8;
	animation: fall linear infinite;
}

/* Snowflake shape */
.snow::before {
	content: '❆'; /* Unicode snowflake */
	position: absolute;
	color: white;
	font-size: 10px;
}

/* Additional diagonal lines for more snowflake detail */
.snow:nth-child(3n)::before {
	transform: rotate(45deg) scale(2);
}
.snow:nth-child(3n)::after {
	transform: rotate(-45deg) scale(2);
}
.snow:nth-child(5n)::before {
	transform: rotate(30deg) scale(2);
}
.snow:nth-child(5n)::after {
	transform: rotate(-30deg) scale(2);
}

/* Set different speeds and delays for each snowflake with size variations */
.snow:nth-child(1) {
	left: 10%;
	animation-duration: 10s;
	animation-delay: -2s;
	font-size: 12px;
}
.snow:nth-child(2) {
	left: 20%;
	animation-duration: 8s;
	animation-delay: -1s;
	font-size: 14px;
}
.snow:nth-child(3) {
	left: 30%;
	animation-duration: 12s;
	animation-delay: -4s;
	font-size: 11px;
}
.snow:nth-child(4) {
	left: 40%;
	animation-duration: 9s;
	animation-delay: -3s;
	font-size: 13px;
}
.snow:nth-child(5) {
	left: 50%;
	animation-duration: 11s;
	animation-delay: -5s;
	font-size: 12px;
}
.snow:nth-child(6) {
	left: 60%;
	animation-duration: 7s;
	animation-delay: -2.5s;
	font-size: 14px;
}
.snow:nth-child(7) {
	left: 70%;
	animation-duration: 13s;
	animation-delay: -1.5s;
	font-size: 11px;
}
.snow:nth-child(8) {
	left: 80%;
	animation-duration: 10s;
	animation-delay: -3.5s;
	font-size: 13px;
}
.snow:nth-child(9) {
	left: 90%;
	animation-duration: 9s;
	animation-delay: -4.5s;
	font-size: 12px;
}
.snow:nth-child(10) {
	left: 95%;
	animation-duration: 11s;
	animation-delay: -2.5s;
	font-size: 14px;
}

@keyframes fall {
	0% {
		transform: translateY(-100vh) rotate(0deg);
	}
	100% {
		transform: translateY(100vh) rotate(360deg);
	}
}

/* Error Message */
.error-message {
	color: var(--color-secondary);
	padding: var(--space-md);
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
	/* Adjust body padding */
	body {
		padding: var(--space-xs);
		margin: var(--space-xs);
	}

	/* Header */
	.header {
		height: 100dvh;
		padding: var(--space-sm);
		justify-content: space-around;
	}

	.header h1 {
		font-size: var(--font-size-xl);
		margin-top: 5vh;
	}

	/* Social Icons */
	.social-icons {
		margin-top: 0;
	}

	.social-icons a {
		margin-right: var(--space-xs);
	}

	.social-icons a i {
		font-size: var(--icon-size-sm);
	}

	/* Images */
	.header-image {
		max-width: 4vh;
		margin: 0;
	}

	/* Chevron */
	.chevron {
		margin-bottom: 2vh;
	}

	.chevron i {
		font-size: var(--icon-size-base);
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.chevron {
		animation: none;
	}

	.social-icons a {
		transition: none;
	}

	.header {
		transition: none;
	}

	.snow {
		animation: none;
		display: none;
	}
}
