html {
	scroll-behavior: smooth;
}
/* Main content styling */
.main-content {
	margin-top: 0;
}
.header-bar {
	background-color: white;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding-bottom: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vision-focus-logo {
	max-height: 30px;
	width: auto;
}

.navigation-menu {
	font-family: "Josefin Sans";
	font-weight: 300;
	text-transform: uppercase;
	font-size: 14pt;
}

.menu-item {
	display: inline-block;
	color: #d9ab77;
	text-decoration: none;
	padding: 8px 16px;
	transition: background-color 0.3s ease, color 0.3s ease;
	position: relative;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 11pt;
	margin-top: 10px;
}

.menu-item:hover {
	background-color: #d9ab77;
	color: white;
	text-decoration: none;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	min-width: 200px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1001;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
}

.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
}

.dropdown-menu li {
	border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
	border-bottom: none;
}

.dropdown-menu li a {
	display: block;
	padding: 12px 20px;
	color: #d9ab77;
	text-decoration: none;
	font-size: 10pt;
	transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
	background-color: #d9ab77;
	color: white;
}

/* Responsive adjustments */

@media (max-width: 991.98px) {
	.navigation-menu {
		background-color: white;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		border-radius: 8px;
		margin-top: 10px;
		padding: 15px;
	}

	.dropdown-menu {
		position: static;
		display: none;
		box-shadow: none;
		background-color: white;
		margin-top: 5px;
		border-radius: 5px;
	}
	.dropdown.show .dropdown-menu {
		display: block;
	}
}
/* Mobile navbar toggle */

.navbar-toggler {
	border: none;

	padding: 4px 8px;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	background-color: transparent;
	border-radius: 50%;
	padding: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.1);
}

.whatsapp-icon {
	width: 40px;
	height: 40px;
}
