@charset "UTF-8";
/*Whale and Petunia Book Shoppe - Styles
   Based on Official Style Guide*/

/*Google Fonts Imports*/
@import url('https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&family=Lato:wght@300;400;700&display=swap');

/*Global Styles*/

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #16325a;
}

a:hover {
    color: #a32973;
}

.uppercase {
	text-transform: uppercase; color: #a32973;} 


/*Header*/

header {
    background-color: #fff;
    padding: 20px 0 10px;
    border-bottom: 1px solid #e0e0e0;
}

#header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-width: 280px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
}

nav a {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #16325a;
    padding: 12px 30px;
    display: block;
}

nav a:hover {
    background-color: #16325a;
    color: #fff;
}

/*Banner*/

#banner {
    background-image: url('images/home-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 100%;
}

/*Color Bar (Quote Section)*/

#color-bar {
    background-color: #a32973;
    padding: 25px 20px;
    text-align: center;
}

#color-bar h3 {
    color: #fff;
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
    font-size: 26px;
    font-style: italic;
    margin: 0;
    font-weight: bold;
}

/* White Wrapper - Main Content */

#wrapper-white {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: #fff;
}

#wrapper-white section {
    flex: 2;
}

#wrapper-white h1 {
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
    font-size: 36px;
    color: #a32973;
    margin-bottom: 25px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#wrapper-white p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000;
}

/*Book Details Aside*/

.book-details {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border: 3px solid #16325a;
}

.book-details h2 {
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
    font-size: 24px;
    color: #a32973;
    margin-bottom: 25px;
    font-weight: normal;
    letter-spacing: 1px;
	text-transform: lowercase;}


.book-details h2 .uppercase {
    color: #a32973;
}

.book-details img {
    margin: 0 auto;
    max-width: 80%;
}

/*Shop Wrapper*/

#wrapper-shop {
    background-color: #f4f3f0;
    padding: 60px 40px;
}

#shop-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.shop-box {
    flex: 1;
    background-color: #fff;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.shop-box img {
    margin: 0 auto;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.shop-box h3 {
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
    font-size: 26px;
    color: #a32973;
    margin: 25px 0 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-box p {
    font-family: 'Lato', Arial, sans-serif;
    color: #000;
    margin: 0 25px 25px;
    font-size: 14px;
    line-height: 1.7;
}

.shop-box a {
    display: inline-block;
    background-color: #a32973;
    color: #fff;
    padding: 12px 30px;
    margin-bottom: 30px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.shop-box a:hover {
    background-color: #16325a;
    text-decoration: none;
}

/*Footer*/

footer {
    background-color: #16325a;
    color: #fff;
    padding: 40px 40px 30px;
}

#footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

#footer-left,
#footer-right {
    flex: 1;
}

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

footer h3 {
    font-family: 'Goudy Bookletter 1911', Georgia, serif;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p {
    font-family: 'Lato', Arial, sans-serif;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 300;
}

/*Responsive Design*/

@media (max-width: 900px) {
    #header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    header img {
        max-width: 220px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #wrapper-white {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    #shop-content {
        flex-direction: column;
        padding: 0 20px;
    }
    
    #footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    #footer-right {
        text-align: left;
    }
    
    #banner {
        height: 250px;
    }
}

@media (max-width: 600px) {
    nav a {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    #wrapper-white h1 {
        font-size: 28px;
    }
    
    .book-details h2 {
        font-size: 20px;
    }
    
    .shop-box h3 {
        font-size: 22px;
    }
}