* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	height: 100%;
}

body {
	margin: 0;
	color: var(--text);
	line-height: 1.6;
}

:root {
	--bg: #0b0f1a;
	--card:#101726;
	--border: rgba(231, 109, 170, .6);
	--muted:#8aa0b8;
	--text:#e6eef7;
	--accent:#f0b429;
	--accent-2:#6aa7ff;
	--ring: rgba(106, 167, 255, .45);
	--max: 1200px;
}

a {
	color: inherit;
}

/*HEADER SECTION*/
header {
	/*background: rgba(11, 15, 26, .55);*/
	background-color: #1c1d1d;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	backdrop-filter: saturate(120%) blur(10px);
	z-index: 50;
}

.container {
	margin: 0 auto;
	padding: 0 1.125rem;
	width: 100%;
	max-width: var(--max);
}

.nav {
	padding: .9rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	text-decoration: none;
	font-weight: 800;
	letter-spacing: .2px;
	display: flex;
	align-items: center;
	gap: .75rem;
}

.brand .emblem {
	border-radius: 10px;
	display: block;
	object-fit: cover;
	width: 36px;
	height: 36px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.brand small {
	font-weight: 600;
	opacity: .75;
}

.nav .links {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}

.btn {
	padding: .7rem 1rem;
	background: rgba(255, 255, 255, .03);
	text-decoration: none;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius:14px;
	display: inline-flex;
	align-items: center;
	gap: .55rem;
}

.btn:hover {
	border: 1px solid var(--border);
}

.btn.primary {
	background: linear-gradient(180deg, var(--accent-2), #3d7cee);
	color: white;
	border-color: transparent;
	box-shadow: 0 12px 30px rgba(61,124,238,.35);
}

/*HERO SECTION*/
main {
	background: linear-gradient(to bottom,
		#1c1c1c 0%,
		#0b0c2a 15%,
		#1a1f4c 35%,
		#5e5b8c 55%,
		#3e2f4c 75%,
		#d8cbb3 100%
	);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
}

main::before {
	/*background: linear-gradient(180deg, rgba(11, 15, 26, .65),
		rgba(11,15,26,.55) 45%, rgba(11,15,26,.6)),
	url('https://i.postimg.cc/63D5Cym6/FB-IMG-1726278321304.jpg') center top / cover no-repeat;*/
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

section {
	padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero {
	padding: clamp(2.5rem, 7vw, 6rem) 0;
	position: relative;
}

.hero > .container,
.outdoors > .container {
	position: relative;
	z-index: 1;
}

.kicker {
	padding: .35rem .65rem;
	background: rgba(255, 255, 255, .03);
	color: #f5f7fa;
	/*color: var(--muted);*/
	font-size: .85rem;
	display: inline-flex;
	gap: .5rem;
	align-items: center;
	/*border: 1px solid rgba(255,255,255,.35);*/
	border: 1px solid rgba(240, 180, 41, .4);
	border-radius: 999px;
}

.kicker .dot {
	background: var(--accent);
	border-radius: 999px;
	width: 6px;
	height: 6px;
}

h1 {
	margin: .7rem 0 0;
	font-family: Playfair Display, serif;
	font-size: clamp(1.8rem, 4.5vw, 3.2rem);
	line-height: 1.1;
}

.sub {
	color: #cfe1ff;
	max-width: 60ch;
}

.filters {
	margin-top: 1rem;
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}

.chip {
	padding: .35rem .7rem;
	background: rgba(255, 255, 255, .04);
	color: #ffffff;
	font-size: .85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .28);
	cursor: pointer;
}

.chip.active {
	background: linear-gradient(180deg, var(--accent-2), #3d7cee);
	color: #ffffff;
	border-color: transparent;
	outline: 2px solid var(--ring);
}

.grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.grid {
		grid-template-columns: repeat(2,1fr)
	}
}

@media (min-width:960px) {
	.grid {
		grid-template-columns: repeat(3,1fr);
	}
}

.card {
	padding: 1rem;
	background: rgba(16, 23, 38, .6);
	/*background: var(--card);*/
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	gap: .7rem;
	backdrop-filter: saturate(120%) blur(6px);
}

.thumb {
	background: linear-gradient(135deg, rgba(106, 167, 255, .18), rgba(240, 180, 41, .18));
	border-radius: 12px;
	aspect-ratio: 16/10;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tags {
	display: flex;
	gap: .35rem;
	flex-wrap: wrap;
}

.tag {
	padding: .25rem .5rem;
	background: rgba(255, 255, 255, .1);
	color: #e8f1ff;
	font-size: .75rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .12);
}

.meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: .75rem;
}

.out {
	padding: .7rem 1rem;
	background: rgba(255, 255, 255, .1);
	text-decoration: none;
	font-weight: 700;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, .12);
	display: inline-flex;
	align-items: center;
	gap: .55rem;
}

.out:hover {
	transform: translateY(-1px);
}

.note {
	color: #000b75;
	font-size: .9rem;
	opacity: .8;
}

/*FOOTER SECTION*/
footer {
	padding: 2rem 0;
	background-color: #d8cbb3;
	color: #000b75;
	border-top: 1px solid rgba(231, 109, 170, .6);
}

.outdoors {
	position: relative;
}