/* --------------------------------------------------
   Mushila Writes Global Styles
-------------------------------------------------- */

:root{
    --primary:#198754;
    --secondary:#6c757d;
    --dark:#212529;
    --light:#f8f9fa;
    --border:#e9ecef;
}

body{
    background:#f8f9fa;
    color:#212529;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
}

a{
    text-decoration:none;
}

.navbar-brand{
    font-size:1.4rem;
    font-weight:700;
}

.hero{
    padding:80px 0;
}

.hero h1{
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:1.15rem;
    color:#6c757d;
}

.section-title{
    font-size:2rem;
    font-weight:700;
    margin-bottom:30px;
}

.book-card{
    border:none;
    border-radius:14px;
    overflow:hidden;
    transition:.25s ease;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    background:#fff;
}

.book-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.book-cover{
    width:100%;
    height:320px;
    object-fit:cover;
    background:#ececec;
}

.book-body{
    padding:20px;
}

.book-title{
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:10px;
}

.book-price{
    color:var(--primary);
    font-size:1.2rem;
    font-weight:700;
}

.book-description{
    color:#6c757d;
    font-size:.95rem;
}

.btn-primary{
    background:var(--primary);
    border-color:var(--primary);
}

.btn-primary:hover{
    background:#157347;
    border-color:#157347;
}

footer{
    margin-top:80px;
}

footer a:hover{
    color:#ffc107 !important;
}