@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&family=Lato&display=swap');
/* font-family: 'Goudy Bookletter 1911', serif;
font-family: 'Lato', sans-serif;*/

/* Header Styles */
header {
    width: 100%;
}

#header-content {
    width: 960px;
    margin: 0 auto;
	position: relative;
}

/* Navigation Styles */
nav {
	position: absolute;
	bottom: 20px;
	right: 120px;
	font-family: 'Goudy Bookletter 1911', serif;
}

nav li {
    display: inline-block;
	padding: 10px 20px;
}

nav a {
    text-decoration: none;
    color: #001f3f;
    transition: color 0.3s, background-color 0.3s;
	padding: 10px;
}

nav a:hover {
    background-color: #16325a; /* Dark blue background on hover */
    color: #fff; /* White text on hover */
	padding: 10px 20px;
}

#color-bar {
    background-color: #a32973;
	color: white;
    text-align: center;
    padding: 10px 0;
	font-family: 'Goudy Bookletter 1911', serif;
}


/* Banner Styles */
#banner {
	background-image: url("images/home-banner.jpg");
	height: 440px;
	width: 100%;
	margin: 0px;
	background-repeat: no-repeat;
}

#wrapper-white {
    background-color: #fff; /* White background color */
    width: 960px;
	margin: 20px auto;
	display: flex;
}

/* Section Styles */
section {
    width: 580px;
    margin: 20px auto;
}

section h1 {
    font-size: 36px;
    color: #a32973;
	text-transform: uppercase;
	padding: 10px 0;
	font-family: 'Goudy Bookletter 1911', serif;
}

section p {
    font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
	padding-right: 10px;
	font-family: 'Lato', sans-serif;
}


aside {
	width: 300px;
	border: 3px solid #16325a;
	text-align: center;
}

aside h2 {
	color: #a32973;
	font-size: 25px;
	padding: 10px 0;
	font-family: 'Goudy Bookletter 1911', serif;
}

.uppercase {
	text-transform: uppercase;
}

/* Aside Styles */
/*.book-details {
    width: 300px;
    border: 3px solid #16325a;
    padding: 10px;
	float: right;
}

.book-details h2 {
	text-align: center;
	color: #a32973;
}

.book-details img {
	display: block;
    margin: 0 auto;
}

/* Shop Content Styles */
#wrapper-shop {
    background-color: #f4f3f0; /* Tan background color */
    width: 100%;
	margin-bottom: 20px;
	padding: 30px;
}

#shop-content {
    width: 960px;
    margin: 0 auto;
    display: flex;
	text-align: center;
}

#shop-content p {
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 1.5;
	font-family: 'Lato', sans-serif;
}

#shop-content a {
	text-decoration: none;
	color: #fff;
	background-color: #a32973;
	padding: 5px;
}

#shop-content h3 {
	font-size: 28px;
	text-transform: uppercase;
    color: #a32973;
	padding: 5px 0;
	margin-top:10px;
	font-family: 'Goudy Bookletter 1911', serif;
}

.shop-box {
    width: 300px;
    margin-left: 15px;
}


/*.shop-box h3 {
    font-size: 28px;
	text-transform: uppercase;
    color: #a32973;
	padding: 5px 0;
}

.shop-box p {
    font-size: 14px;
    color: #000;
}

.shop-box a {
    display: block;
    margin-top: 10px;
    color: #a32973;
    text-decoration: none;
    font-weight: bold;
}




/* Footer Styles */
footer {
    background-color: #16325a; /* Dark blue background color */
    color: #fff;
    width: 100%;
	padding: 20px 0;
}

#footer-content {
    width: 960px;
    margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

footer h3 {
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	font-family: 'Goudy Bookletter 1911', serif;
}

footer p {
	color: white;
	font-size: 16px;
	opacity: 70%;
	line-height: 1.5;
	font-family: 'Lato', sans-serif;
}

#footer-left {

}


#footer-right {
    text-align: right;
}

