body {
    background-color: #0b0f14;
    color: #d6dce5;
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.site-header {
    background-color: #000e2e;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.site-nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 1.5rem;
}

.sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-widget {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}


header {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    color: #8a96a8;
    font-size: 1.1rem;
}

.intro {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    text-align: center;
    color: #b7c0cf;
}

.books {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.book {
    border-top: 1px solid #2a3442;
    padding-top: 30px;
    padding-bottom: 30px;
}

.book h2 {
    margin-bottom: 10px;
}

.status {
    color: #7f8da3;
    font-style: italic;
}

a {
    color: #89b4ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 60px;
    color: #708090;
}

.logo {
    display: flex;         /* Turns the div into a flex container */
    align-items: center;   /* Forces the image and text to align perfectly on their vertical centers */
    gap: 12px;             /* Adds a clean 12px space between the logo image and the text */
}

/* Explicitly lock down the logo image dimensions */
.logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;   /* Prevents your logo from stretching or distorting if it isn't perfectly square */
    display: block;        /* Removes unwanted bottom white-space default to images */
}
