/*	screen.css for www.barkingbowen.com	*/

/* COLOUR SHADES

lightest:		f0f2e6	-	copy bg
medium:			b7bf8f	-	boxing bg
main:			9ca66c	-	surrounds logo
dark:			6c734b	-	outlining/copy text
darkest:		545939	-	outlining/header text

orange:			f7931d
red:			be1e2d
yellow:			fff500
brown:			8b5d3b
skin:			e4c89e

*/

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
	--colour-primary: #9ca66c;
	
}

body {

	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	height: 100%;
	background: #fff;	/* White background */
	color: #6c734b;		/* Dark text */
	font: normal 0.8em Verdana, Arial, Helvetica, sans-serif;
}

p, ul {
	line-height: 1.3rem;
}


p {
	padding: 0 0 12px 0;
	color: #6c734b;
}

ul {
	margin: 0 0 1rem 3rem;
}


h1 {
	font-size: 2em;
	font-weight: normal;
}

h2 {
	font-size: 1.5em;
	font-weight: normal;
	color: #545939;
	padding-bottom: 24px;
	border-bottom: 2px solid #f7931d;
	margin-top: 16px;
	margin-bottom: 1.5rem;
	height: 20px;
}

h3 {
	color: #545939;
	margin-bottom: 1.2rem;
}


/* top-most window spanning bar */
#top_bar {
	background-color: #b7bf8f;
	height: 32px;
}



/* Site Wrapper */
#site_wrapper {
	position: relative;
	margin: 0;
	padding: 0;
	width: 800px;
	margin: -32px auto 0;		/* centre horizontally, position over top_bar */
	/*background: #fff;*/		/* DON'T USE A BACKGROUND AS IT WILL OVERWRITE THE top_bar and bottom_bar */
	
	min-height: 100%;
}


#sidebar {
	float: left;
	width: 160px;
	padding: 0;
	margin: 0 18px 10px 0;
}


#logobox {
	height: 210px;
	background: url(../images/logo2.gif) no-repeat;
}


#navbar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#navbar ul li a {
	padding: 0;
	margin: 10px 0;
	display: block;
	border: 2px solid #9ca66c;
	line-height: 2rem;
	text-align: center;
	text-decoration: none;
	color: white;
	background-color: var(--colour-primary);
	font-size: 1.0rem;
}


#navbar ul li a.menu_selected {
	border: 2px solid #f7931d;
}

#navbar ul li a:hover {
	border: 2px solid #f7931d;
}


#navbar img {
	border: none;
}


#advert {
	display: block;
	margin-bottom: 18px;
	background: url(../images/tasty_ad.png) no-repeat;
	background-position: center top;
	text-align: center;
	font-size: 1rem;
	padding: 100px 10px 10px 10px;
	color: white;
	text-decoration: none;

	background-color: #b7bf8f;
	border-bottom: 4px solid #6c734b;
	transition-duration: 0.3s;
}

#advert:hover {
	transform: scale(1.05);
	box-shadow: 3px 5px 9px rgba(0,0,0,0.25);
}


/* Header */
#header {
	height: 32px;
	background: url(../images/header_over_logo2.gif) left no-repeat;
}

#header img {
	position: absolute;
	right: 0px;
}

#header .top_of_head {
	position: absolute;
	right: 189px;
}

/* Footer */
#footer {
	clear: both;
	height: 64px;
	padding-top: 6px;
	background-color: #b7bf8f;
}

#footer p {
	padding-top: 8px;
	text-align: center;
}


/* Content */
#content_wrapper {
	overflow: auto;
	margin: 0;
	padding: 0;
}


/* Main */
#main_content {
	display: block;
	margin: 0px;
	padding: 0;
}


#photobox {
	display: block;
	background: #b7bf8f;
	margin: 28px 0 18px 0;
	padding: 0 0 0 2px;
}


#photobox img {
	border: 1px solid #6c734b;
	background: #eee;
	margin: 8px 0 5px 8px;
	padding: 0;
	display: inline;
}




#map_canvas {
	width: 500px;
	height: 300px;
	border: 1px solid #bbb;
}

blockquote {
	margin-top: 1rem;
	padding: 1.5rem;
	background-color: #b7bf8f;
	opacity: 0.8;
}



.centred {
	width: 100%;
	text-align: center;
}



.body_text {
	background: #f0f2e6;
	padding: 8px 16px;
	
	margin-top: 8px;

}

.body_text p {
	margin: 0 24px;
	color: #545939;
	 text-align: justify;
}	


.body_text a {
	color: #f7931d;
	text-decoration: none;
}

.body_text a:hover {
	text-decoration: underline;
}


blockquote .author {
	color: #545939;
	font-size: .9em;
	font-style: italic;
	font-weight: bold;
	text-align: right;
	margin-left: 30px;
}


ul.FAQs {
	list-style: none;
}

ul.FAQs li {
	margin-bottom: 12px;
}

ul.FAQs li p {
	margin: 0 12px;
}


ul.FAQs span.question {
	display: block;
	font-weight: bold;
	margin-bottom: 6px;
}

ul.FAQs span.author {
	display: block;
	font-style: italic;
	color: #f7931d;
	margin-left: 12px;
	margin-top: -6px;
}


p.NB {
	font-weight: bold;
}
