﻿@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
/******************************************************
'* common
'******************************************************/

:root {
    --bar-bg: #ffffff;
    --bar-border: #e3e6ea;
    --text-color: #222;
    --sep-color: #d6d9dd;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 
                 'Segoe UI', Roboto, 'Apple SD Gothic Neo',
                 'Noto Sans KR', 'Malgun Gothic', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background: #ffffff;
    color: #333;
}

.header {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 80px; /* 로고와 메뉴 사이 간격 */
}

.logo img {
    height: 35px;
    object-fit: contain;
}

.main-menu {
    flex: 1; /* 메뉴 영역을 가운데로 밀어줌 */
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-menu a {
    text-decoration: none;
    font-size: 18px;
    color: #222;
    font-weight: 500;
}

.main-menu a:hover {
    font-weight: 600;
}






.right-btns {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #333;
    transition: 0.2s;
}

    .btn.small:hover {
       /* background: #f8f8f8;
        border-color: #b3b3b3;*/
        background-color: #1a1a1a;
        color: #fff;
    }

    .btn.primary {
        background: #5873fe;
        color: #fff;
        border-color: #5873fe;
        font-weight: 500;
    }

        .btn.primary:hover {
            filter: brightness(0.9);
        }




/*하단 문의하기*/
/* 섹션 전체 */
.inquiry-section {
    background: #3c3c3c; /* 어두운 배경 */
    padding: 50px 0;
    color: #fff;
    margin-top: 0px;
}

/* 1200px 중앙 정렬 */
.inquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 왼쪽 텍스트 */
.inquiry-text h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
}

.inquiry-text p {
    font-size: 18px;
    opacity: 0.8;
}

/* 오른쪽 버튼 */
.inquiry-btn {
    display: inline-block;
    width: 150px;
    border: 2px solid #aaa;
    padding: 10px 28px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease;
    text-align: center;
}

    .inquiry-btn:hover {
        background: #555;
        border-color: #ccc;
    }


/*푸터 footer*/

.footer {
    margin-top: 0px;
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0;
    font-family: "Arial", sans-serif;
    color: #555;
}

.footer-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 왼쪽 텍스트 섹션 */
.footer-left {
    line-height: 1.8;
    font-size: 14px;
}

.footer-menu a {
    color: #555;
    text-decoration: none;
    margin-right: 5px;
}

/* .footer-menu a:hover {
    text-decoration: underline;
    } */

/* 오른쪽 원형 이미지 */
.footer-icons {
    display: flex;
    gap: 25px;
}

.footer-icon {
    width: 70px;
    height: 70px;
    overflow: hidden; /* 이미지가 넘치지 않게 */
}

    .footer-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 이미지 비율 유지하며 꽉 채움 */
        display: block;
    }