/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-Five with APNA customizations.
Version: 1.0
Text Domain: twentytwentyfive
*/

/*
 * Custom APNA tweaks for book pages
 * (Twenty Twenty-Five theme)
 */

/* TEMP TEST – make book pages pale yellow so we know CSS is loading */
body.single-books {
    background-color: #fff9c4 !important;
}

/* Hide the old classic footer ("powered by WordPress") on book pages */
body.single-books #footer {
    display: none !important;
}

/* Tighten space between viewer and ad on book pages */
body.single-books .apna-book-viewer {
    margin-bottom: 8px !important;
}

body.single-books .apna-book-viewer * {
    margin-bottom: 0 !important;
}

body.single-books .apna-book-ad {
    margin-top: 8px !important;
}

/* APNA header title styling on book pages */

/* Center the site title row */
body.single-books .wp-block-site-title {
    text-align: center !important;
    border-bottom: none !important;
}

/* Style the actual clickable title text */
body.single-books .wp-block-site-title__link {
    color: #008000 !important;      /* dark green */
    font-size: 40px !important;     /* adjust if needed */
    text-decoration: none !important;
}

/* Reduce extra bottom spacing under the header */
body.single-books header {
    margin-bottom: 10px !important;
    padding-bottom: 5px !important;
}



