/*
Theme Name: Tokutei
Theme URI: https://tokutei5830.com
Author: Tokutei 5830
Author URI: https://tokutei5830.com
Description: A clean, minimalist Japanese learning platform theme designed for Tokutei 5830. Features vibrant coral/pink Japanese-inspired design with distraction-free learning interface.
Version: 1.0.2
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tokutei
Tags: education, japanese, learning, clean, minimal, responsive, custom-menu, vibrant

Tokutei Theme, Copyright 2025 Tokutei 5830
Tokutei is distributed under the terms of the GNU GPL.
*/

/**
 * Table of Contents
 *
 * 1.0 - CSS Reset & Base Styles
 * 2.0 - Typography
 * 3.0 - Layout
 * 4.0 - Header
 * 5.0 - Navigation
 * 6.0 - Content
 * 7.0 - Footer
 * 8.0 - Responsive
 */

/* ==========================================================================
   1.0 - CSS Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* ==========================================================================
   2.0 - Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ee5a6f;
}

/* ==========================================================================
   3.0 - Layout
   ========================================================================== */

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    background: #fff;
    min-height: 70vh;
    padding: 40px 0;
}

/* ==========================================================================
   4.0 - Header (Basic - will be expanded in main.css)
   ========================================================================== */

.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ==========================================================================
   5.0 - Navigation (Basic - will be expanded in main.css)
   ========================================================================== */

.main-navigation {
    /* Styles in assets/css/main.css */
}

/* ==========================================================================
   6.0 - Content
   ========================================================================== */

.site-main {
    padding: 40px 0;
}

article {
    margin-bottom: 2rem;
}

/* ==========================================================================
   7.0 - Footer (Basic - will be expanded in main.css)
   ========================================================================== */

.site-footer {
    background: #f7fafc;
    color: #2c3e50;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 3px solid #ff6b6b;
}

/* ==========================================================================
   8.0 - Responsive
   ========================================================================== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .site-container {
        padding: 0 15px;
    }
}
