/*
Theme Name: Simple Bootstrap Theme
Theme URI: https://fictioncoder.net
Author: FictionCoder
Author URI: https://tiktok.com/@fictioncoder
Description: A simple, responsive WordPress template mockup built with Bootstrap 5.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fictiontheme
*/

/* --- Basic Theme Styling --- */

/* Setting a clean font stack and background */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa; /* Light grey background */
}

/* Ensure the main content area has some minimum height */
#primary {
    min-height: 60vh;
}

/* Add a subtle transition and hover effect to post cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Styling the footer for better contrast */
footer {
    border-top: 5px solid #212529; /* Dark border on top */
}
