@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
body {
	font-family: "Spectral", serif;
	margin: 0;
	padding: 0;
	display: flex;
	background-color: white;
  }

  footer {
	background-color: #f8f8f8;
	padding: 20px;
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
	margin-left: 200px;
  }

  .about {
	margin-top: 100px;
	margin-left: 250px;
	margin-right: 50px;
	margin-bottom: 100px;
}

  .about-image {
	display: block;
	margin: 0 auto;
	width: 75%;
	height: auto;
  }

.contact {
	margin-left: 250px;
	margin-right: 50px;
	margin-bottom: 100px;
}
  .contact-image {
	display: block;
	margin: 0 auto;
	width: 50%;
	height: auto;
  }

  .about-text {
		margin: 20px 0; /* Add some margin for spacing */
		text-align: left; /* Center the text */
  }

  .now-playing {
	font-size: 1.2em;
	font-weight: bold;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
	#now-playing-text {
		margin-right: 10px; /* Add space between the title and the button */
	}

	.track-info {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 200px;
		margin-bottom: 10px; /* Add space between the track info and the progress bar */
	  }

  #footer-progress-bar {
	width: 100%;
	height: 5px;
	border-radius: 5px;
	cursor: pointer; /* Make the progress bar clickable */
  }

  #footer-play-pause-btn {
	color: #000000;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
	transition: background-color 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  #footer-play-pause-btn:hover {
	background-color: hwb(0 25% 75%);
  }
  
  #footer-play-pause-btn i {
	margin-right: 5px;
  }

  .play-pause-btn {
	background-color: hsl(0, 0%, 29%);
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
	transition: background-color 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .play-pause-btn:hover {
	background-color: hsl(0, 0%, 0%);
  }
  
  .play-pause-btn i {
	margin-right: 5px;
  }
  
  .play-pause-btn.playing {
	background-color: hwb(0 48% 52%);
  }

  .progress-bar {
	width: 80%;
	height: 5px;
	border-radius: 5px;
	cursor: pointer; /* Make the progress bar clickable */
	position: absolute;
	bottom: 10px; /* Position the progress bar at the bottom */
  }

  .sidebar {
	width: 200px;
	background-color: whitesmoke;
	position: fixed;
	z-index: 1000;
	/* color: #333; */
	top: 0;
	left: 0;
	/* padding: 15px; */
	height: 100%;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Added subtle shadow for a classy look */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }

  .content {
	margin-left: 200px;
	padding: 100px;
	flex: 1;
	z-index: 1;
  }

  
  .sidebar h2 {
	text-align: center;
	font-size: 30px;
	margin-bottom: 20px;
  }

  .sidebar h2 a {
	text-decoration: none;
	color: inherit; /* Ensure the link inherits the color of the parent element */
  }
  
  .sidebar h2 a:hover {
	color: hsl(0, 0%, 60%); /* Added hover effect */
  }

  .sidebar h2.active a {
	color: inherit;
	font-weight: bold;
	background-color: hwb(65 0% 0%); /* Highlight the active page */
	padding: 5px; /* Add padding to make the background color more visible */
  }
  
  .sidebar ul {
	list-style-type: none;
	padding: 0;
  }

  .sidebar ul li {
	margin: 0; /* Remove margin */
  }
  
  .main-menu {
	/* margin: 30px; */
	text-align: center;
	font-size: 25px; /* Increased font size */
	padding: 15px 0; /* Added padding for more horizontal space */
  }
  
  .sidebar ul li a {
	color: #333;
	text-decoration: none;
	display: block;
	transition: color 0.3s;
	border-radius: 5px;
  }

  .sidebar ul li a:hover {
	color: hsl(0, 0%, 60%); /* Added hover effect */
  }

  .nav-item a {
	text-decoration: none;
	color: #333;
	font-size: 1.2em;
	display: block;
	padding: 10px;
  }
  
  .nav-item.active a {
	background-color: yellow; /* Highlight the active page with yellow */
	color: #000;
  }

  .sidebar ul li.active a {
	color: hsl(0, 0%, 31%);
	font-weight: bold;
	background-color: hwb(65 0% 0%); /* Highlight the active page */
	/* border: 2px solid #007BFF; Add a border to the active link */
  }

  .social-links {
	margin-top: auto; /* Push the social links to the bottom */
	margin-bottom: 20px;
  }

  .social-links ul {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: space-around;
  }
  
  .social-links ul li a:hover {
	color: hsl(0, 0%, 60%); /* Added hover effect */
  }
  
  .social-links ul li a {
	display: flex;
	align-items: center;
	text-decoration: none;
  }
  
  
  .burger-menu {
	display: none;
	cursor: pointer;
	z-index: 1001;
	padding: 10px;
	position: relative;
	top: 10px;
	left: 10px;
	/* background-color: rgba(0, 0, 0, 0.7); */
	/* color: white; */
	border-radius: 5px;
	height: 40px;
  }
  
  .burger-menu span {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: #333;
	transition: all 0.3s ease;
  }
  
  .releases {
	margin-top: 50px;
	margin-left: 250px;
	margin-right: 50px;
	margin-bottom: 100px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust columns based on available space */
	gap: 50px; /* Consistent gap between releases */
  }

  .tile {
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 25px;
  }
  
  .tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
  }

  .tile:hover img {
	transform: scale(1.1);
  }

  .tile:hover .overlay {
	opacity: 1;
  }
  
  .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(85, 85, 85, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s;
  }
  
  .overlay a {
	color: white;
	text-decoration: none;
	font-size: 30px;
  }

  .overlay span {
	color: hsl(0, 0%, 100%); /* White text color */
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
  }
 
  .quote {
	font-size: 1.5em; /* Make the text bigger */
	font-style: italic; /* Italicize the text */
	margin: 20px; /* Add some margin for spacing */
	margin-top: 40px; /* Add some margin for spacing */
	margin-bottom: 40px; /* Add some margin for spacing */
	color: #555; /* Change the text color */
	text-align: center; /* Center the text */
  }

  .emailme {
	font-size: 1.5em; /* Make the text bigger */
	margin: 50px 0; /* Add some margin for spacing */
	color: #555; /* Change the text color */
	text-align: center; /* Center the text */
  }
  
  .emailme a {
	color: #007bff; /* Change the link color */
	text-decoration: none; /* Remove underline */
	z-index: 1; /* Ensure the link is above other elements */
	position: relative; /* Ensure the link is positioned correctly */
  }
  
  .emailme a:hover {
	text-decoration: underline; /* Add underline on hover */
  }

  .page-title {
	display: none;
  }

  /* Tablets */
  @media (max-width: 768px) {
	.sidebar {
		position: fixed;
		top: -100%;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		width: 75%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.9); /* White background with some transparency */
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
		transition: top 0.3s ease, opacity 0.3s ease;
		z-index: 1000;
		padding: 20px;
		overflow-y: auto;
		opacity: 0; /* Start with opacity 0 */
	  }
	
	  .sidebar.active {
		top: 0;
		opacity: 1; /* Fade in the menu */
	  }

	  /* .overlay {
		display: none
	  } */

	  .overlay.active {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		z-index: 999;
	  }

	  .about {
		margin-left: 0;
	  }
	  
	  .about-text {
		text-align: center;
	  }

	  .about-image {
		width: 100%;
	  }

	  .contact {
		margin-left: 0;
	  }
  
	.burger-menu {
	  display: block;
	}
  
	.content {
	  margin-left: 0;
	}

	.releases {
		gap: 25px; /* Adjust gap for smaller screens */
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust columns based on available space */
		margin-left: 0;
		margin-right: 25px;
	}

	footer {
		margin-left: 0;
	}

	.page-title {
		display: inline;
		text-align: center;
	}

	.about {
		margin-top: 0;
	}

	footer {
		margin-left: 0;
	}

	.track-info {
		margin-right: 0;
	}
	.releases {
		margin-top: 0;
	}

}
  
/* Mobile */
  @media (max-width: 480px) {
	.releases {
		gap: 20px; /* Adjust gap for smaller screens */
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjust columns based on available space */
	}

	.tile {
	  flex: 1 1 100%;
	  max-width: 100%;
	}

	.overlay span {
	  font-size: 20px; /* Decrease font size */
	  padding: 10%;
	}

	.progress-bar {
		display: none;
	}

	.page-title {
		display: inline;
		text-align: center;
	}
	.about {
		margin-top: 0;
	}

	footer {
		margin-left: 0;
	}

	.track-info {
		margin-right: 0;
	}

	.releases {
		margin-top: 0;
	}
  }