/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Layout Colors */
body {
    font-family: Catamaran, Montserrat, Lora, sans-serif;
    font-size: 18px;
    background-color: #26A093; /* Teal */
    color: #FFFFFF; /* White */
}
#header {
    background-color: #DD6D34;
    margin: 10px;
    height: 90px;
    border-radius: 5px;
    position: relative; /* Allows positioning of the logo */
    text-align: center; /* Centers the h3 text horizontally */
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically centers the h3 text */
}

#header img.logo {
    position: absolute;
    left: 40px; /* Aligns the logo to the left side of the header */
    height: 90px; /* Adjust the logo size as needed */
}

header {
    background-color: #DD6D34; /* Orange */
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #FFFFFF; /* White */
    font-size: 2.5em;
}

nav ul {
    list-style-type: none;
    background-color: #ECB172; /* Light Orange */
    padding: 10px;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000080; /* Navy */
    font-weight: bold;
}

nav ul li a:hover {
    color: #FFFFFF; /* White */
}

main {
    background-color: #FFFFFF; /* White */
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Book List Styles */
.book-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.book-item {
    background-color: #ECB172; /* Light Orange */
    color: #000080; /* Navy*/
    width: 30%;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.book-item:hover {
    transform: scale(1.05);
}

.book-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.book-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.book-item p {
    font-size: 1em;
    color:  #FFFFFF; /* White */
}

footer {
    background-color: #DD6D34; /* Orange */
    color: #FFFFFF; /* White */
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    border-top: 5px solid #DD6D34; /* Orange */
    border-radius: 0 0 8px 8px;
}

