/*
Theme Name: Tokyo SC
Theme URI: https://tokyo-sc.com
Description: Tokyo SCの子テーマ
Author: Your Name
Author URI: https://example.com
Template: twentytwentyfive
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: tokyo-sc
*/

/* 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;
}

/* Import Twenty Twenty-Five styles */
@import url("../twentytwentyfive/style.css");

/* Header styles */
.site-header {
    background-color: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.site-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0.75rem;
    display: inline-block;
}

.primary-menu a:hover {
    color: #0073aa;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .primary-menu a {
        width: 100%;
        text-align: center;
    }
}
