/**********************************************************************************************************
Index Page
**********************************************************************************************************/
body {
	font-family: 'Inter', sans-serif;
	margin: 0;
	background: #121212;
	color: #e0e0e0;
}
.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh; /* Full viewport height */
}
header {
	padding: 2rem;
	text-align: center;
	background: #1f1f1f;
	border-bottom: 1px solid #333;
}
header h1 {
	margin: 0;
	font-size: 2.8rem;
	color: #ffffff;
}
header p {
	margin-top: 0.5rem;
	font-size: 1.2rem;
	color: #bbbbbb;
}
header {
	background-color: #0d0d0d;
	padding: 2rem 1rem;
	border-bottom: 1px solid #333;
}
.header-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.2rem;
	text-align: center;
	position: relative;
}
.trails-logo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}
@media (min-width: 768px) {
	.trails-logo {
		width: 120px;
		height: 120px;
		padding: 5px;
		border-radius: 50%;
		object-fit: cover;
		box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
		position: absolute;
		left: 200px;
	}
}
.header-text h1 {
	font-size: 2rem;
	margin: 0;
	color: #e5e5e5;
}
.header-text p {
	color: #aaa;
	margin-top: 0.5rem;
	font-size: 1rem;
}
main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 3rem 1rem;
	gap: 2rem;
	flex: 1;
}
.card {
	background: #1e1e1e;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.5);
	width: 320px;
	height: 420px;
	text-align: center;
	padding: 2rem 1.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}
.card-img {
	width: 100%;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-st {
	width: 150px;
	height: 150px;
	margin-bottom: 1.2rem;
}
.card-mt {
	width: 245px;
	height: 90px;
	margin-bottom: 1.2rem;
}
.card-ct {
	width: 150px;
	height: 120px;
	margin-bottom: 1.2rem;
}
.card h2 {
	font-size: 1.6rem;
	margin-bottom: 0.6rem;
	color: #ffffff;
}
.card p {
	font-size: 1rem;
	color: #cccccc;
	flex-grow: 1;
}
.card a {
	text-decoration: none;
	color: #00aaff;
	font-weight: 600;
	margin-top: 1.2rem;
}
footer {
	text-align: center;
	padding: 1.5rem;
	font-size: 0.9rem;
	background: #1f1f1f;
	color: #888;
	border-top: 1px solid #333;
}
footer a {
	color: #aaa;
	margin: 0 1rem;
	text-decoration: none;
}