/*
Theme Name: The 7 Child
Template: dt-the7 
Theme URI: <https://the7.io/>
Author: Dream-Theme
Author URI: <https://dream-theme.com/>
Description: The 7 Theme Child. 
Version: 1.0.0
Requires at least: 6.8.2
Tested up to: 6.8.2
Requires PHP: 8.0
*/

:root {
    --the7-accent-color: #2F4F32;
}

/* 버튼과 강조 요소만 녹색 */
button,
input[type="submit"],
.theme-button,
.accent-bg,
.header-button,
.dt-btn {
  background-color: var(--the7-accent-color) !important;
  border-color: var(--the7-accent-color) !important;
  color: #fff !important; /* 버튼 안 글씨는 흰색 */
}

/* 메뉴/네비게이션 링크 (헤더/푸터) */
#site-navigation a,
.footer a {
  color: var(--the7-accent-color) !important;
}

/* 일반 본문 링크는 검정/기본 회색 */
.entry-content a,
.entry-content a:visited {
  color: #333333 !important;
}
.entry-content a:hover {
  color: var(--the7-accent-color) !important; /* hover일 때만 포인트 컬러 */
}