body {
    margin: 0;
    background: #693229;
    font-family: Georgia, serif;
    color: #f2e8e5;
}

/* Space above bar */
.topbar-wrapper {
    padding-top: 60px;
}

/* BAR */
.topbar {
    background: #693229;
    margin: 0 40px;
    height: 60px;             /* CHOOSE YOUR BAR HEIGHT */
    position: relative;
    padding: 0;               /* No vertical padding */
}

/* Double line styling */
.topbar::before,
.topbar::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    height: 4px; 
    border-top: 2px solid #d8c7c0;
    border-bottom: 2px solid #d8c7c0;
}

/* Flex container */
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Take full bar height */
    box-sizing: border-box;
}

/* LEFT logo image */
.left img {
    height: 45px;      /* Fills bar height */
    width: auto;       /* Keeps proportions */
    display: block;
    object-fit: contain;
    padding-left: 40px;  /* Match bar left inset */
    padding-top: 7px;
}

/* RIGHT side */
.right {
    white-space: nowrap;
    padding-right: 40px; /* Match bar right inset */
    font-size: 2rem;
    letter-spacing: 2px;
}

/* Intro text */
.intro-text {
    text-align: center;
    font-size: 1.8rem;
    margin: 30px 20px 50px;
    color: #000;
}

/* Book images */
.book-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 50px;
}

.book-gallery img {
    max-width: 320px;
    height: auto;
    border: 0px solid #000;
}

