@charset "utf-8";
/* CSS Document

TemplateMo 605 Xmas Countdown - Customized for caper Design

https://templatemo.com/tm-605-xmas-countdown
*/

:root {
	--bg-dark: #0a0a0f;
	--bg-card: rgba(255, 255, 255, 0.03);
	--bg-glass: rgba(255, 255, 255, 0.05);
	--border-glass: rgba(255, 255, 255, 0.08);
	--border-glow: rgba(138, 43, 226, 0.15);
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.6);
	--text-dim: rgba(255, 255, 255, 0.4);
	--accent-purple: #8A2BE2;
	--accent-purple-light: #9370DB;
	--accent-purple-accent: #DDA0DD;
	--accent-purple-dark: #6A0DAD;
	--glow-purple: rgba(138, 43, 226, 0.4);
	--glow-purple-light: rgba(147, 112, 219, 0.4);
	--glow-purple-accent: rgba(221, 160, 221, 0.3);
	--glow-purple-dark: rgba(106, 13, 173, 0.4);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 400;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Grid Background */
.grid-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
}

.grid-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 40%),
		radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

/* Updated gradient for purple theme */
.grid-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 50%, rgba(147, 112, 219, 0.05) 0%, transparent 40%),
		radial-gradient(ellipse at 20% 80%, rgba(221, 160, 221, 0.05) 0%, transparent 40%);
}

/* Floating Particles */
.particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--accent-purple-accent);
	border-radius: 50%;
	opacity: 0.3;
	animation: float-particle linear infinite;
}

.particle:nth-child(odd) {
	color: var(--accent-purple);
}

.particle:nth-child(3n) {
	background: var(--accent-purple-light);
}

@keyframes float-particle {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 0.3;
	}

	90% {
		opacity: 0.3;
	}

	100% {
		transform: translateY(-20px) rotate(360deg);
		opacity: 0;
	}
}

/* Snowflakes */
.snowflake {
	position: absolute;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
	animation: snowfall linear infinite;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Updated snowflake color for purple theme */
.snowflake {
	position: absolute;
	color: rgba(221, 160, 221, 0.6);
	font-size: 1rem;
	animation: snowfall linear infinite;
	text-shadow: 0 0 10px rgba(221, 160, 221, 0.3);
}

@keyframes snowfall {
	0% {
		transform: translateY(-20px) rotate(0deg);
	}

	100% {
		transform: translateY(100vh) rotate(360deg);
	}
}

/* Glass Card Mixin */
.glass {
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-glass);
	border-radius: 24px;
}

.glass-strong {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border: 1px solid var(--border-glow);
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
    margin: 0 auto;
	transition: all 0.3s ease;
}

header.scrolled {
	background: rgba(10, 10, 15, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-glass);
}

/* Updated logo colors for purple theme */
.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-accent));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.logo-text {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.5px;
}

.logo-text span {
	color: var(--accent-purple);
}

nav {
	display: flex;
	gap: 8px;
}

nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 12px;
	transition: all 0.3s ease;
}

nav a:hover {
	color: var(--text-primary);
	background: var(--bg-glass);
}

nav a.nav-active {
	color: var(--text-primary);
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
}

.nav-cta {
	background: linear-gradient(135deg, var(--accent-purple), #9b59b6) !important;
	color: var(--text-primary) !important;
}

.nav-cta:hover {
	box-shadow: 0 8px 30px var(--glow-purple);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
	padding: 10px;
}

.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 140px 20px 100px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 100px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-secondary);
	margin-bottom: 40px;
	animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .dot {
	width: 8px;
	height: 8px;
	background: var(--accent-purple-light);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero h1 {
	font-family: 'Syne', sans-serif;
	font-size: clamp(3rem, 10vw, 7rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -3px;
	margin-bottom: 24px;
	animation: fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.hero h1 .gradient {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-accent), var(--accent-purple-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
			}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 500px;
	margin-bottom: 60px;
	animation: fadeInUp 0.8s ease 0.4s forwards;
	opacity: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Updated statistics section - replacing countdown */
.stats-wrapper {
	animation: fadeInUp 0.8s ease 0.6s forwards;
	opacity: 0;
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.stat-item {
	position: relative;
	width: 180px;
	padding: 32px 24px;
	text-align: center;
	background: var(--bg-glass);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border: 1px solid var(--border-glass);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-purple-accent), transparent);
	opacity: 0.6;
}

.stat-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(138, 43, 226, 0.1), transparent 60%);
	pointer-events: none;
}

.stat-item:hover {
	transform: translateY(-8px);
	border-color: var(--border-glow);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-purple);
}

.stat-number {
	font-family: 'Syne', sans-serif;
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1;
	display: block;
	color: var(--accent-purple);
					font-variant-numeric: tabular-nums;
}

.stat-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--text-dim);
	margin-top: 12px;
}

.stat-suffix {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--text-dim);
	margin-top: 4px;
	display: block;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.target-date {
	margin-top: 40px;
	padding: 16px 32px;
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

/* Updated target date icon for purple theme */
.target-date svg {
	width: 18px;
	height: 18px;
	stroke: var(--accent-purple-accent);
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	animation: fadeInUp 0.8s ease 1s forwards, bounce 2s ease-in-out infinite 1.5s;
	opacity: 0;
}

.scroll-indicator span {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--text-dim);
}

.scroll-indicator .line {
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, var(--accent-purple), transparent);
}

/* Updated bounce animation */
@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

/* Section Common */
section {
	position: relative;
	z-index: 2;
	padding: 120px 60px;
}

/* Updated section headers for purple theme */
.section-header {
	text-align: center;
	margin-bottom: 80px;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent-purple-light);
	margin-bottom: 24px;
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	letter-spacing: -2px;
	color: var(--text-primary);
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 500px;
	margin: 20px auto 0;
}

/* About Section */
.about {
	background: linear-gradient(180deg, transparent 0%, rgba(138, 43, 226, 0.02) 50%, transparent 100%);
}

/* Updated about section gradient for purple theme */
.about {
	background: linear-gradient(180deg, transparent 0%, rgba(138, 43, 226, 0.02) 50%, transparent 100%);
}

.about-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image-stack {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	height: 450px;
}

.about-img-item {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-glass);
	position: relative;
	transition: all 0.4s ease;
}

.about-img-item:hover {
	border-color: var(--border-glow);
	transform: scale(1.02);
}

.about-img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-img-item.img-1 {
	grid-row: span 2;
}

.about-img-item.img-2,
.about-img-item.img-3 {
	grid-column: 2;
}

.about-content h3 {
	font-family: 'Syne', sans-serif;
	font-size: 2.0rem;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 24px;
	line-height: 1.2;
	color: var(--text-primary);
}

/* Updated about heading accent for purple theme */
.about-content h3 span {
	color: var(--accent-purple);
}

.about-content p {
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-size: 1.05rem;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
}
.about-feature:last-child {
	grid-column: 1 / 3;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	font-size: 0.95rem;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.about-feature:hover {
	border-color: var(--border-glow);
	background: rgba(255, 255, 255, 0.08);
}

/* Updated feature icons for purple theme */
.about-feature svg {
	width: 20px;
	height: 20px;
	stroke: var(--accent-purple-light);
	flex-shrink: 0;
}

/* Removed templatemo promotion - replaced with custom CTA */
.about-templatemo {
	margin-top: 40px;
	padding: 28px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

/* Updated templatemo accent for purple theme */
.about-templatemo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-purple-light), var(--accent-purple-accent));
}

.about-templatemo p {
	font-size: 0.95rem;
	margin-bottom: 20px;
	color: var(--text-secondary);
}

/* Updated strong text for purple theme */
.about-templatemo p strong {
	color: var(--accent-purple-accent);
}

.btn-templatemo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: linear-gradient(135deg, var(--accent-purple-light), #8a63d2);
	border-radius: 12px;
	color: var(--bg-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

/* Updated button hover for purple theme */
.btn-templatemo:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px var(--glow-purple-light);
}

.btn-templatemo svg {
	width: 18px;
	height: 18px;
	stroke: var(--bg-dark);
}

/* Events Section */
.events {
	background: var(--bg-dark);
}

/* Updated events gradient if needed - keeping dark background */
.events {
	background: var(--bg-dark);
}

.events-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.event-card {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	transition: all 0.5s ease;
	cursor: pointer;
}

.event-content {
	padding: 20px;
}

.event-card:hover {
	transform: translateY(-12px);
	border-color: var(--border-glow);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.event-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
}

.event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

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

/* Updated event date badge for purple theme */
.event-date-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	z-index: 2;
}

/* Updated date badge colors */
.event-date-badge .day {
	font-family: 'Syne', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1;
}

.event-date-badge .month {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-purple);
}

/* Updated event meta icons for purple theme */
.event-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.85rem;
	color: var(--text-dim);
}

.event-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.event-meta svg {
	width: 16px;
	height: 16px;
	stroke: var(--accent-purple-accent);
}

/* Traditions Section */
.traditions {
	background: linear-gradient(180deg, transparent 0%, rgba(147, 112, 219, 0.02) 50%, transparent 100%);
}

/* Updated traditions gradient for purple theme */
.traditions {
	background: linear-gradient(180deg, transparent 0%, rgba(147, 112, 219, 0.02) 50%, transparent 100%);
}

.traditions-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.tradition-card {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 24px;
	padding: 24px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 24px;
	align-items: center;
	transition: all 0.4s ease;
}

.tradition-card:hover {
	border-color: var(--border-glow);
	transform: translateX(8px);
	background: rgba(255, 255, 255, 0.08);
}

/* Updated tradition icons for purple theme */
.tradition-image {
	width: 140px;
	height: 140px;
	border-radius: 20px;
	overflow: hidden;
}

/* Updated tradition number color for purple theme */
.tradition-number {
	font-family: 'Syne', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent-purple-light);
	margin-bottom: 8px;
	letter-spacing: 2px;
}

.tradition-content h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text-primary);
}

/* Updated tradition content accent for purple theme */
.tradition-content h3 span {
	color: var(--accent-purple);
}

.tradition-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 16px;
}

/* Updated tradition button for purple theme */
.tradition-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: transparent;
	border: 1px solid var(--border-glow);
	border-radius: 10px;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

/* Updated tradition button hover for purple theme */
.tradition-btn svg {
	width: 16px;
	height: 16px;
	stroke: var(--accent-purple-accent);
	transition: transform 0.3s ease;
}

.tradition-btn:hover {
	background: rgba(221, 160, 221, 0.1);
	border-color: var(--accent-purple-accent);
	color: var(--accent-purple-accent);
}

/* Updated tradition button hover SVG for purple theme */
.tradition-btn:hover svg {
	transform: translateX(4px);
}

/* Newsletter Section */
.newsletter {
	background: linear-gradient(180deg, transparent 0%, rgba(221, 160, 221, 0.02) 50%, transparent 100%);
}

/* Updated newsletter gradient for purple theme */
.newsletter {
	background: linear-gradient(180deg, transparent 0%, rgba(221, 160, 221, 0.02) 50%, transparent 100%);
}

.newsletter-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px;
	background: var(--bg-glass);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border: 1px solid var(--border-glass);
	border-radius: 32px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Updated newsletter accent for purple theme */
.newsletter-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-accent), var(--accent-purple-light));
}

.newsletter-container p {
	color: var(--text-secondary);
	margin-bottom: 40px;
	font-size: 1.1rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-form {
	display: flex;
	gap: 12px;
	max-width: 500px;
	margin: 0 auto;
}

/* Updated newsletter form for purple theme */
.newsletter-form input {
	flex: 1;
	padding: 18px 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	color: var(--text-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1rem;
	outline: none;
	transition: all 0.3s ease;
}

/* Updated newsletter form placeholder for purple theme */
.newsletter-form input::placeholder {
	color: var(--text-dim);
}

/* Updated newsletter form focus for purple theme */
.newsletter-form input:focus {
	border-color: var(--accent-purple-accent);
	background: rgba(255, 255, 255, 0.12);
}

/* Updated newsletter button for purple theme */
.newsletter-form button {
	padding: 18px 36px;
	background: linear-gradient(135deg, var(--accent-purple), #9b59b6);
	border: none;
	border-radius: 16px;
	color: var(--text-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

/* Updated newsletter button hover for purple theme */
.newsletter-form button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px var(--glow-purple);
}

/* Contact form */
.contact-form {
	background: var(--bg-glass);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border: 1px solid var(--border-glass);
	border-radius: 32px;
	padding: 40px;
	max-width: 800px;
	margin: 40px auto 0;
}

.contact-form .form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.contact-form .form-row input,
.contact-form select,
.contact-form textarea {
	flex: 1;
	min-width: 200px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	color: var(--text-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1rem;
	resize: vertical;
	transition: all 0.3s ease;
}

.contact-form select {
	padding: 16px 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A2BE2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px;
	appearance: none;
}
.contact-form select:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--border-glow);
}

.contact-form textarea {
	width: 100%;
	min-height: 150px;
	padding: 24px 20px;
	margin-top: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-glass);
	border-radius: 16px;
	color: var(--text-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1rem;
	resize: vertical;
	transition: all 0.3s ease;
	display: block;
	box-sizing: border-box;
}
.contact-form textarea::placeholder {
	color: var(--text-dim);
}
.contact-form textarea:focus {
	border-color: var(--accent-purple-accent);
	background: rgba(255, 255, 255, 0.12);
	outline: none;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
	color: var(--text-dim);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--accent-purple-accent);
	background: rgba(255, 255, 255, 0.12);
	outline: none;
}

.contact-form button {
	display: block;
	width: 100%;
	max-width: 250px;
	margin: 25px auto 0;
	padding: 18px 36px;
	background: linear-gradient(135deg, var(--accent-purple), #9b59b6);
	border: none;
	border-radius: 16px;
	color: var(--text-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.contact-form button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px var(--glow-purple);
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
	.contact-form .form-row {
		flex-direction: column;
	}

	.contact-form .form-row input,
	.contact-form select,
	.contact-form textarea {
		padding: 24px 20px;
		margin-top: 20px;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid var(--border-glass);
		border-radius: 16px;
		color: var(--text-primary);
		font-family: 'Space Grotesk', sans-serif;
		font-size: 1rem;
		resize: vertical;
		transition: all 0.3s ease;
	}

	.contact-form {
		padding: 30px;
		margin: 30px auto 0;
	}
}

@media (max-width: 480px) {
	.contact-form {
		padding: 20px;
		margin: 20px auto 0;
	}

	.contact-form button {
		padding: 16px 30px;
		font-size: 0.9rem;
	}
}

/* Footer */
footer {
	position: relative;
	z-index: 2;
	padding: 80px 60px 30px;
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid var(--border-glass);
}

/* Updated footer background for purple theme */
footer {
	position: relative;
	z-index: 2;
	padding: 80px 60px 30px;
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid var(--border-glass);
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

/* Updated footer logo for purple theme */
.footer-brand .logo {
	margin-bottom: 20px;
}

/* Updated footer brand text for purple theme */
.footer-brand p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: 280px;
}

/* Updated footer column headings for purple theme */
.footer-column h4 {
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--text-primary);
}

/* Updated footer links for purple theme */
.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 12px;
}

.footer-column a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

/* Updated footer link hover for purple theme */
.footer-column a:hover {
	color: var(--accent-purple-accent);
}

/* Updated footer social for purple theme */
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.footer-social a {
	width: 44px;
	height: 44px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

/* Updated footer social hover for purple theme */
.footer-social a:hover {
	border-color: var(--accent-purple);
	background: rgba(138, 43, 226, 0.1);
	color: var(--accent-purple);
	transform: translateY(-4px);
}

/* Updated footer bottom for purple theme */
.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 30px;
	border-top: 1px solid var(--border-glass);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

/* Updated footer bottom text for purple theme */
.footer-bottom p {
	font-size: 0.9rem;
	color: var(--text-dim);
}

/* Updated footer bottom links for purple theme */
.footer-bottom a {
	color: var(--accent-purple-accent);
	text-decoration: none;
}

/* Updated footer bottom link hover for purple theme */
.footer-bottom a:hover {
	text-decoration: underline;
}

/* Updated footer legal for purple theme */
.footer-legal {
	display: flex;
	gap: 24px;
}

.footer-legal a {
	font-size: 0.9rem;
	color: var(--text-dim);
	text-decoration: none;
	transition: color 0.3s ease;
}

/* Updated footer legal link hover for purple theme */
.footer-legal a:hover {
	color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
	section {
		padding: 100px 40px;
	}

	.about-grid {
		gap: 50px;
	}

	.events-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	/* Gallery styles removed as they weren't in original */

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 920px) {
	header {
		padding: 15px 24px;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: rgba(10, 10, 15, 0.98);
		backdrop-filter: blur(40px);
		-webkit-backdrop-filter: blur(40px);
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 40px;
		gap: 8px;
		transition: right 0.4s ease;
		border-left: 1px solid var(--border-glass);
	}

	nav.active {
		right: 0;
	}

	nav a {
		width: 100%;
		font-size: 1.1rem;
	}

	.nav-toggle {
		display: flex;
	}

	section {
		padding: 80px 24px;
	}

	.hero {
		padding: 120px 20px 80px;
	}

	.hero h1 {
		letter-spacing: -2px;
	}

	.countdown {
		gap: 10px;
	}

	/* Updated stats layout for mobile */
	.stats-wrapper {
		gap: 10px;
	}

	.stat-item {
		width: 120px;
		padding: 24px 16px;
	}

	.stat-number {
		font-size: 2.0rem;
	}

	.stat-label {
		font-size: 0.65rem;
		letter-spacing: 2px;
	}

	.stat-suffix {
		font-size: 0.65rem;
		letter-spacing: 2px;
	}

	/* Updated colon display for mobile - keeping as is since we replaced countdown with stats */
	/* .countdown-colon {
		display: none;
	} */

	.target-date {
		padding: 12px 20px;
		font-size: 0.8rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-image {
		max-width: 400px;
		margin: 0 auto;
	}

	.about-image-stack {
		height: 350px;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

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

	.tradition-card {
		grid-template-columns: 100px 1fr;
		gap: 16px;
		padding: 16px;
	}

	.tradition-image {
		width: 100px;
		height: 100px;
	}

	/* Gallery styles removed as they weren't in original */

	.newsletter-container {
		padding: 40px 24px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form button {
		width: 100%;
	}

	footer {
		padding: 60px 24px 24px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-legal {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	/* Updated stats layout for small mobile */
	.stat-item {
		width: 90px;
		padding: 20px 12px;
	}

	.stat-number {
		font-size: 1.4rem;
		color: var(--accent-purple);
	}
}

@media (max-width: 920px) {
	.section-title {
		font-size: clamp(2rem, 4vw, 3.5rem);
	}
	.snowflake {
		display: none;
	}
}

/* Mobile-specific adjustments for hero title and stats layout */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    .stats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-item {
        width: auto;
    }
}

/* Custom Select */
.custom-select {
    position: relative;
    width: 100%;
}
.custom-select select {
    display: none;
}
.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}
.select-trigger:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--border-glow);
}
.select-trigger.active {
    border-color: var(--accent-purple-accent);
    background: rgba(255,255,255,0.12);
}
.select-selected {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select-arrow {
    width: 20px;
    height: 20px;
    stroke: var(--accent-purple);
    transition: transform 0.3s ease;
}
.select-trigger.active .select-arrow {
    transform: rotate(180deg);
}
.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}
.select-options.show {
    display: block;
}
.select-options li {
    padding: 14px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}
.select-options li:hover,
.select-options li.active {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
}
.select-options li.disabled {
    color: var(--text-dim);
    cursor: not-allowed;
}

/* Responsive adjustments for custom select */
@media (max-width: 768px) {
    .custom-select {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .select-trigger {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    .select-options li {
        padding: 12px 16px;
    }
}

/* Ensure textarea full width */
.contact-form textarea {
    width: 100% !important;
    min-height: 150px !important;
    padding: 24px 20px !important;
    margin-top: 20px !important;
}

.snowflake {
    display: none !important;
}

/* Sponsors Section */
.sponsors-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: all 0.4s ease;
}

.sponsor-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sponsor-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.1));
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sponsor-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-image img {
    filter: brightness(1) contrast(1);
    transform: scale(1.05);
}

.sponsor-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.sponsor-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sponsor-content h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-accent));
    border-radius: 2px;
}

.sponsor-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

@media (max-width: 920px) {
    .sponsors-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .sponsor-card {
        flex-direction: column;
    }

    .sponsor-image {
        flex: none;
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }

    .sponsor-content {
        padding: 20px;
    }

    .sponsor-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .sponsor-content h3 {
        font-size: 1.4rem;
    }

    .sponsor-content p {
        font-size: 0.95rem;
    }
}