/* Index page specific styles */
.nav-links {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.nav-link {
	display: block;
	padding: 15px 30px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	font-size: 1.1em;
	min-width: 200px;
	text-align: center;
}

.nav-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer {
	margin-top: 40px;
	text-align: center;
	color: #666;
	font-size: 0.9em;
}
