/*
Theme Name: Inspiria
Theme URI: https://www.linggan123.com
Author: 林刚 (Lin Gang)
Author URI: https://www.linggan123.com
Description: Inspiria is a modern, visually-driven WordPress theme for creative content and inspiration sharing, designed with AI integration in mind.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inspiria
Tags: blog, photography, portfolio, responsive, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, grid-layout, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This file contains the theme's metadata and basic styling.
Additional styles will be loaded from assets/css/main.css.
*/

/* Tailwind CSS base styles - will be compiled from main.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Basic body styling for Inter font and background */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Light gray background */
    color: #334155; /* Dark slate text */
}

/* Add any global utility classes or base styles here if not handled by Tailwind */
.container {
    max-width: 1280px; /* Max width for content */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hide WordPress admin bar for better visual experience on frontend for non-admin users */
body.wp-admin #wpadminbar {
    display: none;
}
html {
    margin-top: 0 !important;
}
@media screen and (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
    #wpadminbar {
        display: none !important;
    }
}

/* Placeholder for main content area */
.site-content {
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
}
