/*
Theme Name: 한국팩토리 전용 테마 v2
Theme URI: https://koreafactory.kr
Author: 한국팩토리
Author URI: https://koreafactory.kr
Description: Elementor 전용 최소 테마 v2. 간섭 없는 깔끔한 테마입니다.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: koreafactory
Tags: elementor, minimal, custom
*/

/* ============================================
   기본 리셋 및 변수 설정
   ============================================ */
:root {
    --kf-primary-color: #0068B7;
    --kf-text-color: #333333;
    --kf-bg-color: #ffffff;
    --kf-font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--kf-font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--kf-text-color);
    background-color: var(--kf-bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   레이아웃
   ============================================ */
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* ============================================
   헤더 기본 스타일
   ============================================ */
.koreafactory-header-wrapper {
    position: relative;
    z-index: 1000;
    width: 100%;
    padding-top: 20px;
}

.koreafactory-header-wrapper .elementor-section {
    position: relative;
}

.site-header {
    padding-top: 20px;
}

/* ============================================
   푸터 기본 스타일
   ============================================ */
.koreafactory-footer-wrapper {
    margin-top: auto;
}

/* ============================================
   접근성
   ============================================ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
    padding: 8px 16px;
    background: var(--kf-primary-color);
    color: #fff;
    text-decoration: none;
}

/* ============================================
   반응형 기본 설정
   ============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Elementor 호환성
   ============================================ */
.elementor-page .site-content {
    padding: 0;
}

