/*
Theme Name: Chokusai 2025
Theme URI: 
Author: 
Author URI: 
Description: A custom WordPress theme for Chokusai 2025
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chokusai-2025
*/

/* 
This theme uses Tailwind CSS via CDN.
All styling is applied through Tailwind utility classes.
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    display: none;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

/* Footer Styles */
.site-footer {
    background: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-widgets {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-widget-area {
    min-width: 0;
}

.site-info {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.footer-menu {
    margin-bottom: 1rem;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0 1rem;
}

.footer-menu a {
    color: #6c757d;
    text-decoration: none;
}

.copyright {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-menu.toggled {
        display: block;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }
} 

.wp-block-heading {
    font-size: 1.3em;
    border-left: 4px solid #333;
    padding-left: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.blog_inner p {
    margin-bottom: 1.5em;
    line-height: 1.8;
    font-size: 16px;
    font-feature-settings: normal;
}

.blog_inner.container {
    margin: 0 auto;
}

#content {
    flex: 1;
}