body, html {
    margin: 0;
    padding: 0;
}

p {
	text-align:center;
}

.menu {
	height: 100%;
	width: 200px;
	position: fixed;
	z-index: 1000; /* Ensure it is above the overlay */
	top: 76px; /* Adjusted to be below the navbar and the lighter gray bar */
	left: 0;
	background-color:rgb(164, 142, 206);
	transition: transform 0.15s ease-in-out; /* Smooth transition effect */
	transform: translateX(-100%); /* Initially hide the menu */
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.4); /* Shadow on the right edge */
	border: 2px solid #4b0082; /* Dark purple border */
}

.menu.show {
	transform: translateX(0); /* Show the menu */
}

.menu-title {
	font-size: 24px; /* Larger text */
	font-weight: bold; /* Bold text */
	text-align: left; /* Align text to the left */
	margin: 20px 10px; /* Add some margin */
	color: rgb(59, 0, 87); /* Same color as menu items */
	font-family: sans-serif; /* Same font as menu items */
}

.menu-item {
	padding: 6px 6px 6px 15px;
	text-decoration: none;
	font-size: 20px;
	color: rgb(59, 0, 87);
	display: block;
	text-align: left;
	font-family: sans-serif;
	margin-top: 10px; /* Ensure items are below the collapse button */
}

.menu-item:hover {
	color: rgb(89, 16, 107);
}

.menu-collapse {
	width: 24px; /* Adjust size as needed */
	height: 24px;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	transition: opacity 0.3s; /* Smooth transition */
}

.menu-collapse:hover {
	opacity: 0.6; /* Decrease opacity on hover */
}

.navbar {
	background-color: #35053f; /* Dark gray background */
	text-align: left;
	padding: 10px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between; /* Ensure space between left and right sections */
}

.navbar-left {
	display: flex;
	align-items: center;
}

.navbar-right {
	display: flex;
	align-items: center;
	font-weight: bold; /* Bold text */
	margin-right: 20px; /* Adjust as needed */
	margin-left: auto; /* Ensure the text is pushed to the right */
	padding-right: 15px; /* Add margin between text and right side of the screen */
}

.navbar-text {
	color: rgb(190, 179, 179); /* Same color as button text */
	font-size: 20px; /* Adjust as needed */
}

.navbar-logo {
	width: 60px; /* Adjust as needed */
	height: 40px; /* Adjust as needed */
	margin-right: 20px;
	cursor: pointer;
	position: relative;
	background-image: url('images/RBCcut_good.png'); /* Default logo */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center; /* Center the background image */
}

.navbar-logo::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	opacity: 0;
	z-index: -1; /* Ensure the box is behind the logo */
}

.navbar-logo:hover {
	background-image: url('images/RBCcut_moving_good.gif'); /* Switch to gif on hover */
	transform: scale(1.3); /* Make the logo a bit bigger on hover */
}

.navbar-logo:hover::after {
	opacity: 1; /* Fade in the box */
}

.navbar button {
	font-size: 20px;
	padding: 10px 20px;
	margin: 5px;
	border: none;
	cursor: pointer;
	color: rgb(190, 179, 179); /* White text */
	background-color: transparent;
	position: relative;
	transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.navbar button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(82, 22, 74);
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.3s; /* Smooth fade-in effect */
	z-index: -1; /* Ensure the box is behind the text */
}

.navbar button:hover::after {
	opacity: 1; /* Fade in the box */
}

.navbar button:hover {
	color: rgb(201, 178, 201); /* Change text color to purple on hover */
	background-color: transparent; /* Ensure background does not change */
}

.navbar button.current-page {
	text-decoration: underline; /* Underline the button text */
}

.navbar-left button,
.navbar-right .navbar-text {
    font-family: Arial, sans-serif; /* Replace with your desired font */
    font-size: 20px; /* Adjust the size as needed */
}

.navbar-bar {
	height: 16px; /* Adjust height as needed */
	background-color: #860280; /* Lighter gray color */
	position: fixed;
	width: 100%;
	top: 60px; /* Adjust to be below the navbar */
	left: 0;
	z-index: 999;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Slight shadow effect */
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Transparent gray */
	opacity: 0;
	transition: opacity 0.15s ease-in-out; /* Smooth transition */
	z-index: 999; /* Ensure it is above the main content and below the menu */
	pointer-events: none; /* Allow clicks to pass through */
}

.overlay.show {
	opacity: 1; /* Show the overlay */
	pointer-events: auto; /* Enable clicks */
}

.main {
	text-align:center;
	background-color: rgb(61, 27, 100);
	width: 100%;
	margin: 0 auto;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	margin-top: 76px; /* Adjusted to align with the menu */
	height: calc(100vh - 76px); /* Take up the remainder of the screen */
	overflow: auto; /* Allow scrolling if content overflows */
}

.text-blurb {
	background-color: rgba(255, 255, 255, 0.8); /* Light background */
	padding: 20px;
	border-radius: 10px;
	margin: 20px auto;
	width: 80%;
	max-width: 600px;
	color: #333; /* Text color */
	text-align: left;
}

.main-image {
	display: block;
	margin: 20px auto;
	width: 60%;
	max-width: 400px;
	height: auto;
	border-radius: 50px;
}

.footer-text {
	margin: 20px auto;
	color: #a97daf; /* White text */
	font-size: 14px; /* Adjust as needed */
	text-align: center;
}

.footer-text a {
	color: #a97daf; /* White text for the link */
	text-decoration: underline;
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px; /* Adjust gap between images as needed */
}

.gallery-image {
	width: calc(50% - 20px); /* Two images per row with gap */
	max-width: 300px; /* Adjust max width as needed */
	border-radius: 10px;
}