@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

header {
	width: 100% /*Header entire width of the page*/
}

#header-content {
	width: 960px; /*Content inside header*/ 
	margin: 0 auto; /*centered*/
	position: relative; /*Relative to parent element*/
	padding-bottom: 10px;
}

#header-content img, #header-content nav {
	
}

#header-content img {
	
}

nav {
	position: absolute; /*Absolute positioning*/
	top: 110px; /*Text aligned with bottom of whale*/
	right: 200px; /*Estimate for now*/
}

nav li {
	display: inline-block; /*ALL text aligned with bottom of whale*/
	}

nav a {
	text-decoration: none;
	font-family: 'Goudy Bookletter 1911', serif;
	margin: 10px;
	color: #16325a;
	padding: 5px 20px;
	font-size: 20px;
}

nav a:hover {
	background-color: #16325a; /*Dark blue background*/
	color: #fff; /*Text color white*/
	padding: 5px 20px;
}

#banner {
	width: 100%;
}

#banner img {
	width: 100%; /*Banner IMAGE extends across entire width of browser*/
	margin-bottom: 0;
}

#color-bar {
	background-color: #a32973;
	font-weight: lighter;
	text-align: center;
	margin-top: 0;
}

#color-bar h3 {
	color: #fff;
	font-family: 'Goudy Bookletter 1911', serif;
	font-size: 30px;
	padding: 10px;
}

#wrapper-white {
	width: 960px;
	padding: 50px 10px;
	background-color: #fff;
	margin: 0 auto;
}

#wrapper-white section { /*This contains the "The Book Shoppe" title and content*/
	width: 580px; /*Section width*/
}
	
#wrapper-white section h1 {
	font-size: 36px; /*Section heading text 36px*/
	color: #a32973; /*Color Guide*/
	font-family: 'Goudy Bookletter 1911', serif;  /*Font Guide*/
	text-transform: uppercase;
	font-weight: 100;
}

#wrapper-white section, #wrapper-white aside {
	display: inline-block;
}

.bookdetails {
	margin: 0 auto;
}
		
#wrapper-white section p {
	font-size: 16px; /*Section paragraph text 16px*/
	font-family: 'Lato', sans-serif; /*Font Guide*/
	line-height: 26px;
}

#wrapper-white aside {
	width: 300px;
	border: 3px solid #16325a; /*Border 3px, Color Guide dark blue*/
	color: #a32973;
	margin-left: 30px;
}

aside img {
	margin-left: 70px;
	padding-bottom: 40px;
}

aside h2 { 
	margin-left: 40px;
	font-family: 'Goudy Bookletter 1911', serif;
	padding: 10px 0;
}

.uppercase {
	text-transform: uppercase; /*Added early*/
}

#wrapper-shop { /*Need to determine image and header alignment*/
	background-color: #f4f3f0; /*Color Guide tan background for 3-column content*/
	width: 100%; /*Width of the browser*/
}

#shop-content {
	width: 960px; /* 3-column 960px*/
	margin: 0 auto; /*Centered*/
}
	
#shop-content h3 {
	font-size: 28px; /*Heading text 28px*/
	text-transform: uppercase; /*All caps*/
	text-align: center;
	font-family: 'Goudy Bookletter 1911', serif;
	color: #a32973;
	margin-top: 10px;
	margin-bottom: 0;
}
		
#shop-content p {
	font-size: 14px; /*Paragraph text 14px*/
	text-align: center; /*Paragraph text centered*/
	font-family: 'Lato', sans-serif;
	line-height: 24px;
}

#shop-content a {
	text-decoration: none;
	background-color: #a32973;
	padding: 10px 24px;
	color: #f4f3f0;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	margin-left: 70px;
}

.shop-box {
	width: 300px; /*Each column 300px wide*/
	display: inline-block;
	padding: 80px 7px;
}
		
footer {
	width: 100%; /*Extends across the width of the browser screen*/
	background-color: #16325a; /*Color Guide dark blue*/
	height: 200px;
}

#footer-content {
	width: 960px; /*Content fills 960px*/
	margin: 0 auto; /*Centered*/
	padding: 20px;
}
	
#footer-content h3 {
	font-size: 16px; /*Heading font 16px*/
	color: #fff; /*Color Guide white*/
	text-transform: uppercase; /*All caps*/
	font-family: 'Goudy Bookletter 1911', serif;
}

#footer-content p {
	font-size: 16px; /*Paragraph font 16px*/
	color: #fff; /*Color Guide white*/
	opacity: 70%; /*Opacity 70%*/
	font-family: 'Lato', sans-serif;
	line-height: 24px;
}

#footer-left { /*Content group 1*/
	float: left;
	width: 30%;
}
		
#footer-right { /*Content group 2*/
	float: right;
	text-align: right;
}