@charset "utf-8";

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

body {
	background-color: rgba(15, 15, 15, 1.0);
	background-image: url("Images/bricks.jpeg");
	font-family: 'Segoe UI', 'Verdana', sans-serif;
	font-size: 1.2em;
	color: rgba(245, 245, 245, 1.0);
	line-height: 1.6;
}

.wrapper {
	max-width: 1200px;
	margin: auto;
	border-radius: 15px;
	overflow: hidden;
}

.header {
	text-align: center;
	padding: 20px;
}

.my_logo {
	width: 100%;
	max-width: 400px;
	height: auto;
}

.nav {
	background: linear-gradient(45deg, rgba(243,186,0,0), rgba(243,186,0,0.5), rgba(4,179,0,0.5), rgba(243,186,0,0.5), rgba(243,186,0,0));
	padding: 10px 0;
	border-radius: 5px;
}

.navbar {
	display: flex;
	justify-content: center;
	list-style-type: none;
	gap: 20px;
}

.navbar li a {
	display: block;
	padding: 10px 20px;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.75);
	color: rgba(255, 0, 85, 1.0);
	border-radius: 8px;
	border: 4px ridge rgba(0,0,0,1.0);
	cursor: pointer;
	text-decoration: none;
	text-shadow: 2px 2px 10px rgba(255, 0, 85, 0.7);
	transition: 0.3s ease;
}

.navbar li a:hover {
	background-color: rgba(255, 0, 85, 1.0);
	box-shadow: 0 0 40px rgba(255, 0, 85, 1.0);
	text-shadow: 2px 2px rgba(0,0,0,1.0);
}

.music-button-container {
	text-align: center;
	margin: 20px 0;
}

.music-btn {
	padding: 12px 24px;
	font-size: 1em;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.75);
	color: rgba(255, 0, 85, 1.0);
	border-radius: 8px;
	border: 4px ridge rgba(0,0,0,1.0);
	text-shadow: 2px 2px 10px rgba(255, 0, 85, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
}

.music-btn:hover {
	background-color: rgba(255, 0, 85, 1.0);
	box-shadow: 0 0 40px rgba(255, 0, 85, 1.0);
	text-shadow: 2px 2px rgba(0,0,0,1.0);
}

.main-content {
	background-color: rgba(0, 0, 0, 0.75);
	padding: 40px 20px;
	margin: 20px auto;
	border-radius: 15px;
	border: 10px ridge rgba(0,0,0,1.0);
	box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
	text-align: center;
}

.intro-text h2 {
	color: rgba(255, 0, 85, 1.0);
	font-size: 2em;
	margin-bottom: 10px;
	text-shadow: 2px 2px 10px rgba(255, 0, 85, 0.7);
}

.intro-text h4 {
	font-weight: normal;
	margin-bottom: 30px;
	font-size: 1.1em;
}

.category-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.cat-box {
	background-color: rgba(255, 255, 255, 0.05);
	color: rgba(255, 147, 51, 1.0);
	font-weight: bold;
	font-size: 1.2em;
	width: 200px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 0 25px rgba(255, 147, 0, 1);
	transition: all 0.2s ease;
}

.cat-box:hover {
	background-color: rgba(255, 147, 0, 0.15);
	color: rgba(255, 255, 255, 1.0);
	transform: scale(1.1);
	box-shadow: 0 0 50px rgba(255, 147, 0, 0.9);
}

.cat-box-resources {
	width: 600px;
	background-color: rgba(255, 255, 255, 0.05);
	color: rgba(255, 147, 0, 0.85);
	font-weight: bold;
	font-size: 1.1em;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 15px;
	box-shadow: 0px 0px 75px rgba(255, 147, 0, 0.75);
	transition: all 0.2s ease;
	padding: 20px;
	margin: 15px auto;
	text-align: center;
}

.cat-box-resources:hover {
	color: rgba(255, 147, 0, 1.0);
	box-shadow: 0px 0px 250px rgba(255, 147, 0, 1.0);
	transform: scale(1.05);
}

.cat-box-resources a {
	color: rgba(255, 255, 255, 1.0);
	text-decoration: none;
	font-size: 1.2em;
	margin-top: 10px;
}

.cat-box-resources p {
	font-weight: normal;
	font-size: 0.95em;
	color: rgba(240, 240, 240, 0.9);
	margin-top: 5px;
}

.resource-img {
	max-width: 100%;
	height: 200px;
	border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: 0 0 15px rgba(255, 147, 0, 0.5);
}

.footer {
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 0px 0px 20px 20px;
	border: 10px ridge rgba(0,0,0,1.0);
	color: rgba(153, 153, 153, 1.0);
	text-align: center;
	padding: 20px;
}

.footer-link {
	color: rgba(255, 0, 85, 1.0);
	text-shadow: 2px 2px 10px rgba(255, 0, 85, 0.7);
	text-decoration: none;
	font-weight: bold;
}

.footer-link:hover {
	color: rgba(255, 255, 255, 1.0);
	text-shadow: 2px 2px 10px rgba(255, 0, 85, 0.7);
}
