

a {
    color: #eb5424;
    text-decoration: none;
}

/* Auto-Nav Styles */
.navbar-default {
	background: #17421e;
	border: none;
	box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.04);
	margin: 0 !important;
}

.navbar-default .nav {
	display: flex; /* Makes the list items inline horizontally */
	justify-content: flex-end; /* Aligns items to the right */
	padding: 0;
	margin: 0;
	list-style: none;
}

.navbar-default .nav > li {
	margin: 0;
}

.navbar-default .nav > li > a {
	color: #fff;
	font-weight: bold;
	padding: 10px 20px;
	text-decoration: none;
	line-height: 50px;
    text-transform: uppercase;
}

.navbar-default .nav > li > a:hover {
	color: #eb5424;
	background-color: transparent !important;
}

.navbar-default .nav > li.active > a,
.navbar-default .nav > li.active > a:hover,
.navbar-default .nav > li.active > a:focus {
	color: #eb5424;
	background-color: transparent !important;
}

.navbar-default .navbar-toggle {
	border: none;
	padding-top: 12px;
	background: url('../images/button-bg.png') center center no-repeat;
}

.navbar-default .navbar-toggle .icon-bar {
	background: #eb5424;
	border-color: transparent !important;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: transparent !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.navbar-default .nav {
		flex-direction: column; /* Stack items vertically */
		justify-content: flex-start;
		align-items: center; /* Center align items in the column */
	}
	
	.navbar-default .nav > li {
		margin: 5px 0; /* Add spacing between items */
	}

	.navbar-default .nav > li > a {
		padding: 10px 15px; /* Adjust padding for smaller screens */
		line-height: 1.5; /* Tweak line height for readability */
	}
}

.container-padding {
    padding: 0 20px;
}

.page-title {
    font-size: 40px;
}

@media (max-width: 768px) {
	.page-title {
        font-size: 30px;
    }
}
