/*
Theme Name: GTHEME
Author: Geeat
Description: Great-Theme
Version: 1.0
*/

/* 여기에 스타일을 추가하실 수 있습니다. */

/* Reset */
body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption, blockquote {
    margin: 0;
    padding: 0;
}

/* Body & Wrapper */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 20px 0;
}

/* Logo */
header h1 {
    margin: 0;
    font-size: 24px;
    z-index: 11; /* 사이트 제목이 메뉴 위에 오지 않게 함 */
    position: relative;
	font-family:'Noto Sans KR';
}

header h3 a {
    color: #333;
    text-decoration: none;
}

/* Navigation */
nav {
    position: sticky;
    top: 0; 
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 18px 0;
    overflow-x: auto;
    white-space: nowrap;
    z-index: 10;
    text-align: center; /* 추가된 부분 */
}

nav ul {
    list-style: none;
    display: inline-flex;
    justify-content: center; /* 추가된 부분 */
}

nav li {
    margin: 0 15px;
}

nav a {
    position: relative; 
    color: #fff; /* 하얀색 글씨 */
    text-decoration: none;
    transition: color 0.3s; /* 마우스 호버 시의 부드러운 색상 전환 */
	padding-bottom: 5px; /* 여기에 패딩을 추가하여 간격을 조절하였습니다. */
	font-family:'Noto Sans KR';
}

nav a:hover {
    color: #ddd; /* 마우스를 올렸을 때의 색상 */
}

/* Create the underline using the ::before pseudo-element */
nav a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;  /* 밑줄의 두께 */
    background-color: #016a87; /* 밑줄의 색상 */
    transition: width 0s;  /* 애니메이션 지속 시간 */
}

/* Expand the underline to full width on hover */
nav a:hover::before {
    width: 100%;
}

/* Ensure the underline is always visible for the current menu item */
nav .current-menu-item a::before {
    width: 100%;
}

/* Mobile Sticky Buttons */
.mobile-buttons {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.mobile-button {
    flex: 1;
    color: #fff;
    padding: 10px;
    transition: background-color 0.3s;
    display: flex;  
    align-items: center;  /* 아이템을 버튼의 세로축 중앙에 정렬 */
    justify-content: center;  /* 아이템을 버튼의 가로축 중앙에 정렬 */
    text-decoration: none;
	font-family:'Noto Sans KR';
}

.mobile-button i {
    display: block;
    font-size: 20px;  
    margin-right: 10px;  /* 아이콘과 텍스트 사이의 간격 */
}

.mobile-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Show the buttons only on mobile screens */
@media (min-width: 768px) {
    .mobile-buttons {
        display: none;
    }
}

.mobile-button.phone-button {
    background-color: #253041;  /* 전화걸기 버튼 배경색 설정 */
	padding: 15px;
}

.mobile-button.email-button {
    background-color: #3183e9;   /* 고객등록 버튼 배경색 설정 */
	padding: 15px;
}

.footer-widget {

	text-align: center;
	background-color: black;
	color: #ffffff;
	padding-top: 20px;
	padding-bottom: 60px;
}

/* 댓글 섹션 전체 스타일 */
.comment-respond {
	max-width: 500px;
	margin: 0 auto;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* 댓글 제목 스타일 */
.comments-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* 각 댓글 스타일 */
.comment-body {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

/* 댓글 작성자 이름 스타일 */
.comment-author {
    font-weight: bold;
    color: #0073aa;
}

/* 댓글 내용 스타일 */
.comment-content {
    margin-top: 5px;
    line-height: 1.5;
    color: #555;
}

/* 댓글 날짜 및 시간 스타일 */
.comment-metadata {
    font-size: 12px;
    color: #999;
}

/* 댓글에 대한 답글 링크 스타일 */
.comment-reply-link {
    font-size: 14px;
    color: #0073aa;
}

/* 댓글 입력 폼 스타일 */
#commentform {
    margin-top: 40px;
}

/* 입력 필드 스타일 */
#commentform input[type="text"],
#commentform textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
}

/* 제출 버튼 스타일 */
#commentform input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

#commentform input[type="submit"]:hover {
    background-color: #005f8a;
}
