/*
Theme Name: TheOne
Description: A elegant theme for TheOne website with ACF integration
Version: 1.0
Author: Your Name
*/

/* ==========================================
   基礎全域樣式
   ========================================== */

/* 基礎重設 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 根元素設定 */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* 主體設定 */
body {
    font-family: 'Noto Serif TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang TC', 'Hiragino Sans GB', 'Microsoft YaHei', serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 連結樣式 */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* 圖片基礎樣式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 按鈕基礎樣式 */
button {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* 表單元素 */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* 預設內容區域（非首頁） */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* WordPress 核心類別 */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* 對齊工具類別 */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 清除浮動 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 響應式工具類別 */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .alignleft,
    .alignright {
        float: none;
        margin: 0 auto 1rem;
    }
}
