* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	text-shadow:
		-2px -2px 0 #fff,
		2px -2px 0 #fff,
		-2px 2px 0 #fff,
		2px 2px 0 #fff;
	color: #d68571;
	font-family: "kitty", sans-serif;
}

@font-face {
	font-family: 'kitty';
	src: url('Sniglet-Regular.ttf')format("truetype");
	font-weight: 400;
	font-style: normal;
}



#oneko {
	transform: scale(2);
	transform-origin: bottom right;
}

.container {
	display: grid;
	grid-template-rows: 1fr 5fr;
	grid-template-columns: 1fr 4fr;
	height: 100vh;
	width: 100vw;
}

.dashboard {
	grid-row: 1/3;
	grid-column: 1/2;

	display: flex;
	flex-direction: column;

	background-color: #fdf5e2;
}

.header {
	grid-row: 1/2;
	display: grid;
	grid-column: 2/3;
	padding-left: 30px;
	background-color: #23162b;
	color: aliceblue;
	text-shadow: none;
	padding: 20px;
}

.header-top {
	display: grid;
	grid-template-columns: 5fr 2fr;
	align-items: center;
	align-self: start;
}

.header-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

.content {
	grid-row: 2/3;
	display: grid;
	grid-column: 2/3;
	grid-template-columns: 3fr 1fr;
	grid-template-rows: 1fr 1fr;
	padding: 20px;
	font-size: clamp(18px, 2vw, 28px);
	background-color: #d68571;
}


.projects {
	grid-column: 1/2;
	grid-row: 1/3;
}

.announcements {
	grid-column: 2/3;
	grid-row: 1/2;
}

.trending {
	grid-row: 2/3;
	grid-column: 2/3;
}

.logo {
	position: relative;
	display: flex;
	/* keep cat normal */
	align-items: center;
	height: 96px;
	width: 100%;
	overflow: hidden;
	gap: 10px;
	/* prevents text going outside */
}


#logo-neko {
	transform: scale(2.5);
	transform-origin: left center;
	margin-right: 64px;
}


#logo-text {
	font-family: "kitty", sans-serif;
	position: absolute;
	left: 96px;
	/* exactly cat width */
	top: 50%;
	transform: translateY(-50%);
	margin-left: 10px;

	font-size: clamp(18px, 2vw, 28px);
	white-space: nowrap;
}


#logo-neko {



	width: 32px;
	height: 32px;
	background-image: url("oneko.gif");
	background-repeat: no-repeat;
	image-rendering: pixelated;
	cursor: pointer;
}

#runner-neko {
	position: fixed;
	left: 0;
	top: 0;
	transform: scale(2.5);
	transform-origin: top left;

	width: 32px;
	height: 32px;
	background-image: url("oneko.gif");
	background-repeat: no-repeat;
	image-rendering: pixelated;
	cursor: pointer;
	z-index: 999999;

	display: none;
	/* hidden until activated */
}

.menu {
	flex: 1;
	/* take remaining space under logo */

	display: flex;
	flex-direction: column;

	justify-content: flex-start;
	/* pushes bottom menu to bottom */
	font-size: clamp(16px, 1.2vw, 22px);
	font-family: "kitty", sans-serif;

	margin-top: 30px;
	padding-bottom: 30px;
}

.menu img {
	width: 28px;
	height: 28px;
	fill: aliceblue;
	filter: invert(71%) sepia(18%) saturate(1000%) hue-rotate(335deg) brightness(70%) contrast(95%);

}


.menu-top {
	grid-row: 1/2;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.menu-top div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.menu-top div div:hover,
.menu-bottom div div:hover {
	cursor: pointer;
}



.menu-bottom {
	grid-row: 2/3;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 80px;

}

.menu-bottom div {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: start;
}




.header-top img {
	max-width: clamp(20px, 2vw, 28px);
	max-height: clamp(20px, 2vw, 28px);
	fill: aliceblue;
	filter: invert(71%) sepia(18%) saturate(1000%) hue-rotate(335deg) brightness(70%) contrast(95%);
}

#polite-cat {
	max-width: none;
	max-height: none;
	filter: none;
	border-radius: 50%;
	height: clamp(40px, 4vw, 64px);
	width: clamp(40px, 4vw, 64px);
}

.searchbar {
	display: flex;
	grid-column: 1/2;
	align-items: center;
}

.notifications {
	grid-column: 2/3;
	display: flex;
	align-items: center;
	gap: 10px;
}

.notifications div {
	font-size: clamp(14px, 1vw, 18px);
}

.searchbar div {
	height: 50px;
	background-color: hsla(42 87.1% 93.9% / 0.8);
	width: 100px;
	flex: 1;
	margin: 20px;
	margin-left: 5px;
	border-radius: 30px;
}

.searchbar div:hover {
	cursor: text;
}

.profile {
	grid-column: 1/2;
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: clamp(20px, 3vw, 36px);
}

.profile img {
	max-height: none;
	max-width: none;
	border-radius: 50%;
	height: clamp(48px, 6vw, 96px);
	width: clamp(48px, 6vw, 96px);
}


.upload {
	grid-column: 2/3;
	display: flex;
	align-self: center;
	justify-content: space-evenly;
	gap: 15px;

}

button {
	all: unset;
	font-size: clamp(14px, 1vw, 18px);
	border: solid #cea18b 10px;
	border-radius: 40px;
	padding: 15px;
	padding-left: 40px;
	padding-right: 40px;
}

button:hover {
	cursor: pointer;
	background-color: #fdf5e2;
	color: #d68571;
}

.projects img {
	max-width: clamp(20px, 2vw, 28px);
	max-height: clamp(20px, 2vw, 28px);
	fill: aliceblue;
	filter: invert(71%) sepia(18%) saturate(1000%) hue-rotate(335deg) brightness(70%) contrast(95%);
}

.cards {
	display: grid;
	gap: 30px;
	margin: 20px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
	display: grid;
	grid-template-columns: 30px 1fr;
	grid-template-rows: 1fr 3fr 1fr;
	background-color: white;
	gap: 10px;
	min-height: 240px;
	height: auto;
	overflow: hidden;
	border-radius: 50px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.card:hover {
	transform: translateY(-5px);
	transition: 0.2s ease;
}

.text-shadow-none {
	color: white;
	text-shadow: none;
	font-size: clamp(18px, 1.8vw, 28px);
}

.color-block {
	grid-column: 1/2;
	grid-row: 1/4;
	width: 30px;
	background-color: #704337;
	height: auto;
}

.pawst {
	grid-row: 1/2;
	grid-column: 2/3;
	font-size: clamp(16px, 1.4vw, 24px);
	text-wrap: wrap;
	color: #704337;
	padding: 10px;
}

.pawst-text {
	grid-row: 2/3;
	grid-column: 2/3;
	font-size: clamp(14px, 1vw, 18px);
	text-wrap: wrap;
	padding: 10px;
}

.actions {
	grid-row: 3/4;
	grid-column: 2/3;
	display: flex;
	justify-content: end;
	color: #704337;
	padding: 10px;
	gap: 10px;
}

.actions img {
	max-width: clamp(20px, 2vw, 32px);
	max-height: clamp(20px, 2vw, 32px);
	fill: aliceblue;
	filter: invert(71%) sepia(18%) saturate(1000%) hue-rotate(335deg) brightness(70%) contrast(95%);
	cursor: pointer;
}

.announcements {
	display: grid;
	grid-template-rows: auto 1fr;
}

.announcements-container {
	display: flex;
	flex-direction: column;
	background-color: white;
	margin: 20px;
	border-radius: 50px;
	overflow: hidden;
	padding: 20px;
	gap: 18px;
	justify-content: space-evenly;
}

/* each announcement "section" */
.announcements-container>div {
	padding-bottom: 18px;
	border-bottom: 2px solid rgba(112, 67, 55, 0.35);
}

/* last one should NOT have border */
.announcements-container>div:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* Title */
.announcement-t {
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 800;
	margin-bottom: 6px;
	color: #704337;
	text-shadow: none;
}

/* body text */
.announcements-container>div>div:last-child {
	font-size: clamp(14px, 1vw, 18px);
	color: rgba(112, 67, 55, 0.75);
	text-shadow: none;
	line-height: 1.3;
}

.trending {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 10px;
}

.trending-container {
	display: flex;
	flex-direction: column;
	background-color: white;
	margin: 20px;
	border-radius: 50px;
	overflow: hidden;
	padding: 20px;
	gap: 18px;
	justify-content: space-evenly;
}

/* each trending row */
.trending-container>div {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* avatar */
.trending-container img {
	width: clamp(48px, 5vw, 72px);
	height: clamp(48px, 5vw, 72px);
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

/* right side text wrapper */
.trending-container>div>div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

/* username */
.trending-container>div>div>div:first-child {
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 800;
	color: hsl(12 55.2% 47.4%);
	text-shadow: none;
}

/* bio */
.trending-container>div>div>div:last-child {
	font-size: clamp(14px, 1vw, 18px);
	color: hsla(12 55.2% 64.1% / 0.85);
	text-shadow: none;
}
