/* General Styles */
body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden;
}

/* Hero Section */
.hero-content {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}

.hero-content img {
	width: 150px;
	height: auto;
	margin-left: 20px;
}

.hero-text {
	text-align: center;
	flex: 1;
}

.hero-title {
	font-family: 'Impact', sans-serif;
	font-size: 5rem;
	margin: 0;
	line-height: 1;
}

.hero-title sup {
	font-size: 0.4em;
	vertical-align: top;
	line-height: 1;
	position: static;
}

.hero-subtitle {
	font-family: 'Arial', sans-serif;
	font-size: 2rem;
	color: #003300;
	margin: 0;
}

/* Main Section */
.main-section {
	position: relative;
	min-height: 100vh;
	background-image: url('../images/money-bg.jpg');
	background-size: cover;
	background-position: top;
	transition: padding-left 0.3s ease;
}

.main-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	z-index: 1;
}

.main-section > * {
	position: relative;
	z-index: 2;
}

.main-section .container {
	padding: 40px;
}

/* Quote */
.quote {
	font-style: italic;
	color: #333;
	border-left: 4px solid #2E7D32;
	padding-left: 1em;
	margin: 1.5em 0;
	font-size: 1.2em;
	background: #f9f9f9;
	padding: 10px 20px;
	border-radius: 5px;
	position: relative;
}

.quote::before {
	content: open-quote;
	font-size: 2em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
	color: #2E7D32;
}

.quote footer.source {
	display: block;
	text-align: right;
	font-size: 0.9em;
	color: #555;
	margin-top: 0.5em;
}

/* Sidebar */
.sidebar a {
	display: block;
	width: 200px;
	margin: 10px 0;
	padding: 10px;
	background: linear-gradient(145deg, #4CAF50, #388E3C);
	color: white;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	border: 1px solid #2E7D32;
	transition: all 0.3s ease;
	font-weight: bold;
}

.sidebar a:hover {
	background: linear-gradient(145deg, #66BB6A, #43A047);
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
	transform: scale(1.05);
}

/* Navbar Styles */

.navbar {
	background-color: #003300;
}

.navbar-toggler {
	border-color: #388E3C; /* Border color of the button */
	background: linear-gradient(145deg, #4CAF50, #388E3C); /* Background gradient */
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .nav-link {
	display: block;
	padding: 10px;
	margin: 5px;
	background: linear-gradient(145deg, #4CAF50, #388E3C);
	color: white;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #2E7D32;
	transition: all 0.3s ease;
	font-weight: bold;
}

.navbar .nav-link:hover {
	background: linear-gradient(145deg, #66BB6A, #43A047);
	transform: scale(1.05);
}

/* Article Link */
.article-link {
	font-size: 1.25rem;
	color: #007bff;
}

.article-link:hover {
	text-decoration: underline;
	color: #0056b3;
}

/* Video Container */
.video-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.video-container iframe {
	width: 100%;
	max-width: 560px;
	margin: 10px;
	border: none;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
	.sidebar {
		transform: translateX(-250px);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.main-section {
		padding-left: 0;
	}

	.main-section.active {
		padding-left: 250px;
	}

	.hero-content {
		flex-direction: column;
		padding-top: 20px;
	}

	.hero-content img {
		order: 2;
		margin-top: 15px;
	}
}

@media (min-width: 768px) {
	.image-container img {
		width: 400px;
	}

	.video-container iframe {
		width: 45%;
	}
}

/* Wrapper */
#wrapper {
	overflow-x: hidden;
}

/* Sidebar Wrapper */
#sidebar-wrapper {
	min-height: 100vh;
	margin-left: -15rem;
	transition: margin 0.25s ease-out;
	background-color: #003300;
	color: white;
	padding: 20px;
}

/* Page Content Wrapper */
#page-content-wrapper {
	min-width: 100vw;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
	margin-left: 0;
}

@media (min-width: 768px) {
	#sidebar-wrapper {
		margin-left: 0;
	}

	#page-content-wrapper {
		min-width: 0;
		width: 100%;
	}

	body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
		margin-left: -15rem;
	}
}