@charset "UTF-8";

body, h1, h2, h3, p, ul, li, img, a {
    margin: 0;
    padding: 0;
    border: 0;
}
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #f4f3f0;
    color: #333;
}
.container {
    width: 960px;
    margin: 0 auto;
}

header {
    background-color: #fff;
    width: 100%;
}
#header-content {
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding: 10px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}
nav ul li {
    margin: 0 10px;
}
nav ul li a {
    background-color: #004080;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

#banner {
    background: url('images/home-banner.jpg') no-repeat center center/cover;
    height: 300px;
    width: 100%;
}

#color-bar {
    background-color: #a32973;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-style: italic;
}

#wrapper-white {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
section {
    width: 60%;
    padding: 20px;
}
section h1 {
    font-size: 36px;
    color: #16325a;
    font-family: 'Goudy Bookletter 1911', serif;
}
section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

aside {
    width: 35%;
    padding: 20px;
    border: 3px solid #16325a;
}
aside h2 {
    text-transform: uppercase;
    font-size: 20px;
    color: #16325a;
    font-family: 'Goudy Bookletter 1911', serif;
}

#wrapper-shop {
    background-color: #f4f3f0;
    padding: 20px 0;
}
#shop-content {
    display: flex;
    justify-content: space-between;
    width: 960px;
    margin: 0 auto;
}
.shop-box {
    width: 300px;
    text-align: center;
}
.shop-box img {
    width: 100%;
    height: auto;
}
.shop-box h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin: 10px 0;
    font-family: 'Goudy Bookletter 1911', serif;
    color: #a32973;
}
.shop-box p {
    font-size: 14px;
    color: #333;
}
.shop-box a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    background-color: #16325a;
    padding: 5px 10px;
    border-radius: 5px;
}
.shop-box a:hover {
    background-color: #a32973;
}

footer {
    background-color: #16325a;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
}
#footer-content {
    display: flex;
    justify-content: space-between;
    width: 960px;
    margin: 0 auto;
}
footer h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
}
footer p {
    font-size: 16px;
    margin: 5px 0;
}

