/*
	Header & Desktop Navigation
*/
$header-vibe-height: 60px;
$header-vibe-mobile-break-point: 800px;

header.vibe {
	position: fixed;
	top: 0;
	z-index: 2; // Above .owl-carousel
	width: 100%;

	background: white;
	font-family: $header-font-family;
	font-weight: 300;
	line-height: $header-vibe-height;
	border-top: 2px solid $base-accent-color;

	a {
		color: $base-accent-color;
		text-transform: uppercase;
	}

	// Mmenu Trigger
	a.mmenu-trigger-three-bars {
		float: left;
		vertical-align: text-top;
		padding: 0 1em;

		@media only screen and ( min-width:$header-vibe-mobile-break-point ) {
			font-size: 1.2em;
		}		
	}

	//	Logo
	a.logo img {
		float: right;
		max-height: $header-vibe-height;
		padding: 10px 1em;

		@media only screen and ( min-width:$header-vibe-mobile-break-point ) {
			float: left;
			padding: 10px 0;
		}

	}

	//	Primary Navigation
	nav {
		display: none;
		float: right;

		background: white;
		line-height: $header-vibe-height;
		width: auto;

		@media only screen and ( min-width:$header-vibe-mobile-break-point ) {
			display: inline;
		}

		ul {
			width: 100%;

			li {
				float: left;

				a {
					float: left;
					display: block;
					font-size: .85em;
					text-align: left;
					padding: 0 1em;
					height: auto;
					border-left: 1px solid rgba(0,0,0,.05);
				}

				&:first-child a {
					border-left: none;
				}
			}
		}

		// Contact Now
		li.contact-now {
			display: none;

			@media only screen and ( min-width:$header-vibe-mobile-break-point ) {
				display: inline;
			}
		}

		//	Phone Number
		li.phone a {
		}
	}
}
body.scrolled header.vibe {
	@media only screen and ( min-width:$header-vibe-mobile-break-point ) {  }
}

/* Offset */
.header-vibe-offset {
//	display: none;

	color: $base-accent-color;
	font-size: .8em;
	line-height: ($header-vibe-height + 2px);
	text-align: center;
	height: ($header-vibe-height + 2px);
	overflow: hidden;

	.logo {
		position: relative;
		z-index: 3;
		display: block;
		padding: 10px 0;
		margin: 0 auto;
		max-height: 100%;
	}
}
