/* styles.css */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-weight: bold;
    color: #1a5f7a !important;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: #1a5f7a !important;
}

.jumbotron {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://example.com/path-to-your-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    margin-bottom: 2rem;
}

.jumbotron h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.jumbotron p {
    font-size: 1.25rem;
}

.featured-book {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.card {
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card:hover {
    transform: translateY(-5px);
}

.btn-outline-secondary {
    color: #1a5f7a;
    border-color: #1a5f7a;
}

.btn-outline-secondary:hover {
    background-color: #1a5f7a;
    color: white;
}

footer {
    background-color: #1a5f7a;
    padding: 20px 0;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}