body {
	margin: 0;
	font-family: 'Poppins', 'Helvetica Neue', sans-serif;
	color: #1a1a1a;
	background: #fff;
}

a {
	color: #DE5A31;
	text-decoration: none;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	background: #fff;
	padding: 1rem 1.6rem;
	padding-bottom: 0px;
}

.logo {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 1.6rem;
	color: #5c1f5c;
}

.logo img {
	height: 42px;
	margin-right: 0.5rem;
}

.nav {
	backdrop-filter: blur(42px);
    pointer-events: auto;
    background-color: #ffffffb3;
    border-radius: 3em;
    inset: 2em 2.5em auto auto;
    box-shadow: 0 0 15px #0000001a;
	padding: .75em 1.5em;
}

.nav a {
	border: 1px solid var(--black);
	border-radius: 1.5em;
	border-color: black;
	padding: 0.5rem 0.5rem;
	text-decoration: none;
	color: rgb(24, 14, 9);;
	font-weight: 400;
	font-size: .875em;
}

.main-content {
	padding: 1.6rem;
	padding-top: 0;
	margin: 0 auto;
}

.footer {
	display: flex;
	justify-content: space-between;
	background: #111;
	color: #ccc;
	padding: 2rem;
	border-radius: 1.6rem;
	flex-wrap: wrap;
	    margin: 1rem;
}

.footer a {
	color: #ffffff80;
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	font-size: .875em;
}

.footer-left img {
	height: 24px;
	margin-bottom: 1rem;
}

.footer-links,
.footer-right {
	min-width: 180px;
	margin: 1rem;
	margin-top: 0;
	margin-bottom: 0;
}

.card-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	margin: 2rem 0;
}

.card {
	padding: 2rem;
	border-radius: 1.5rem;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: #000;
}

.card-purple {
	background: #d2baff;
	color: #3b1a5d;
}

.card-cream {
	background: #f5f3ed;
	color: #444;
}

.card-orange {
	background: #e95f2c;
	color: #fff;
}

.card-black {
	background: #111;
	color: #fff;
}

.card-maroon {
	background: #401030;
	color: #fff;
}

:root {
	--bg: #fff;
	--text: #000;
}

body.dark {
	--bg: #111;
	--text: #eee;
}

body {
	background-color: var(--bg);
	color: var(--text);
	transition: background 0.3s, color 0.3s;
}

.theme-toggle {
	position: absolute;
	top: 1rem;
	right: 1rem;
}