/* css/style.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}
.navbar-brand {
    font-weight: 700;
}
.hero-section {
    background-color: #343a40;
    color: #ffffff;
    padding: 80px 0;
}
.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd; /* Bootstrap primary color */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.book-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.book-card-img {
    height: 350px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.footer {
    background-color: #212529;
    color: #adb5bd;
}
.footer a {
    color: #f8f9fa;
    text-decoration: none;
}
.footer a:hover {
    color: #0d6efd;
    text-decoration: underline;
}