
/*this contains the styling for the menu and also the bespoke styling for the home page it supercedes the css file called stylemenu which originally only dealt with the menu*/

/*centres the text in the white band*/
 .contentviraltag {
text-align:center;
background-color:#F4F3F8;
 }
 #wrap {
          padding-top: 1px;
        }
		
/*change bootstrap btn color to red/pink*/		
 .btn-primary{
background-color:   #D84B51;	
 color: white;
 margin-top: 10px;
}


/*gives the two tone purple gradient to the main middle of the page*/
.gradient {
  background-image:
    linear-gradient(
      #505982,  #96516D
    );
color: white;
text-align:center;
font:"Lucida Sans";
padding-top:20px;

 }
 
/*menu is nested in this div so that the band stretches the full width of the screen*/
.bangandolufsenmenubox{
	height: 50px;
background-color: #2f3036;
width: 100%;
}

/*the list items are all children of the bangandolufsenmenubox class, this is so that there is no interference with the gallery on the shop page which also uses li */

/*Strip the ul of padding and list styling*/
.bangandolufsenmenubox ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
.bangandolufsenmenubox li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
.bangandolufsenmenubox li a {
	display:block;
	min-width:140px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #2f3036;
	text-decoration: none;
}

/*Hover state for top level links*/
.bangandolufsenmenubox li:hover a {
	background: #96516D;
text-decoration: none;
color: white;
}
.bangandolufsenmenubox li:visited a {
	background: #96516D;
text-decoration: none;
color: white;
}

/*Style for dropdown links*/
.bangandolufsenmenubox li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
.bangandolufsenmenubox li:hover ul a:hover {
	background: #19c589;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
.bangandolufsenmenubox li ul {
	display: none;
}

/*Make dropdown links vertical*/
.bangandolufsenmenubox li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.bangandolufsenmenubox li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
.bangandolufsenmenubox ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #D84B51;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	.bangandolufsenmenubox ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.bangandolufsenmenubox li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.bangandolufsenmenubox ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}

.bofooter{
	color:white;
	height: 50px;
background-color: #2f3036;
width: 100%;
margin-top: 50px;
}
}
