/**
 * Hero and Countdown Styles
 * Hero section and countdown timer
 */

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.JPG') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--light-color);
	position: relative;
}

html.webp .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.webp');
}

html.no-webp .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.JPG');
}

.hero-content {
	max-width: 800px;
	padding: 0 20px;
	position: relative;
	z-index: 2;
	margin-top: 180px;
}

.hero h1 {
	font-family: 'Dancing Script', cursive;
	font-size: 4rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.date {
	font-size: 1.2rem;
	letter-spacing: 3px;
	margin-bottom: 40px;
}

/* Countdown */
.countdown {
	background-color: var(--light-color);
	padding: 80px 0;
	text-align: center;
}

.countdown h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	font-family: 'Dancing Script', cursive;
	color: var(--primary-color);
}

.countdown-timer {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.countdown-item {
	width: 120px;
}

.countdown-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.countdown-text {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}
	
	.hero p {
		font-size: 1.2rem;
	}
	
	.countdown-item {
		width: 100px;
	}
	
	.countdown-number {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.countdown-item {
		width: 80px;
	}
	
	.countdown-number {
		font-size: 2rem;
	}
}
