/* Save Our Safer Streets - Shared Styles */

/* Font Families */
body,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Lato", sans-serif;
}

/* Base Styles */
body,
html {
	height: 100%;
	color: #777;
	line-height: 1.8;
	overflow-x: hidden;
}

/* Dropdown Menu Styles */
.w3-dropdown-hover {
	position: relative;
	display: inline-block;
}

.w3-dropdown-hover:hover .w3-dropdown-content {
	display: block;
}

.w3-dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #f1f1f1;
	min-width: 200px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 999;
	opacity: 0.95;
	margin-left: 0;
}

.w3-dropdown-content a {
	color: #777;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 15px;
}

.w3-dropdown-content a:hover {
	background-color: #ddd;
	opacity: 1;
	color: #000;
}

/* Z-index Management */
.w3-top {
	z-index: 99 !important;
}

/* Ensure parallax sections don't overlap navbar dropdown */
.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4 {
	position: relative;
	z-index: 1;
}

/* Parallax Effect Base Styles */
.bgimg-1,
.bgimg-2,
.bgimg-3,
.bgimg-4 {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Custom Brand Colors */
.w3-border-coral {
	border-color: #ccc !important;
}

.w3-hover-border-coral:hover {
	border-color: #E9B5B5 !important;
}

/* Utility Classes */
.w3-wide {
	letter-spacing: 10px;
}

.w3-hover-opacity {
	cursor: pointer;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-width: 1600px) {
	.bgimg-1,
	.bgimg-2,
	.bgimg-3,
	.bgimg-4 {
		background-attachment: scroll;
		min-height: 400px;
	}
}

