/*
 Theme Name: Hello Elementor Child - Header Only
 Theme URI: https://elementor.com/hello-theme/
 Description: Hello Elementor 헤더만 커스텀하는 차일드 테마
 Author: 엠엘
 Template: hello-elementor
 Version: 2.0.0
 Text Domain: hello-elementor-child
 License: GNU General Public License v3 or later
 License URI: https://www.gnu.org/licenses/gpl-3.0.html
 Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* 여기서부터 헤더 전용 CSS 추가 가능 */

.site-header {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-title {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.site-description {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

.site-navigation {
    display: flex;
}

.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.site-navigation a {
    text-decoration: none;
    font-size: 14px;
}

/* 반응형 (모바일에서 메뉴 줄바꿈) */
@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
