

/**
* @file			Specific to the "The Dog In Our Dreams" Book - colors
* @author		Erika Thornton [erika.a.tobias@gmail.com]
* @date			11/28/2023
* @copyright	2023
*/

/** ---------------------------------------------------------------------- **/
/** ------------------------- NAVIGATION PROPERTIES ---------------------- **/
/** ---------------------------------------------------------------------- **/
/* the color of the top bar - Same color as header background */
nav, #header{
	background-color:#e4f4fa;
	background-position: top center !important;
	max-width:100%;
}
nav {
	background-color:#f6f2d9;
}
/* color of page links in top bar */
nav a{
	color:#000; 
}
/* when your mouse is over a link, what color? */
nav a:hover{
	color:#b1ab88;
}
/* the background color of the current page the user is on - drop down menu */
nav .current_page_item{
	background-color:#f6f2d9;
	color:#fff;
}
/* background color of the drop down menu under "books" */
nav ul > li:hover > ul{
	background-color:#f6f2d9;
}
/* color of links when your mouse is over a 
link inside the drop down menu under "books" */
nav ul > li:hover > ul > li:hover a{
	color:#b1ab88;
}
/* color of background of the links in the dropdown menu under "books" */
nav ul > li:hover > ul > li:hover{
	background-color:#fff;
}
#mobile_nav p, .fa-bars{
	color:#000;
}
#m_page_links{
	background-color:#b1ab88;
}

footer .fa{
	color:#b1ab88;
}

/** ---------------------------------------------------------------------- **/
/** ------------------------ PAGE CONTENT PROPERTIES --------------------- **/
/** ---------------------------------------------------------------------- **/
/* color of the headers in the "where to buy" section and 
"about" (book blurb) section */
.where_buy h2, .about h2{
	color:#000;
}
/* Background color of the "where to buy" section */
.where_buy{
	background-color:#fff !important;
}
/* background color of the "quotes" section */
.quotes{
	background-color:#b1ab88;
	color:#fff;
}



