/*
Theme Name: AriaWell Child Theme
Theme URI: https://lawfirm-hero.ariawell.co.kr
Description: AriaWell 테마의 차일드 테마 - header, footer, front-page 커스터마이징용
Author: AriaWell
Template: ariawelltheme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ariawell-child
*/

/* ========================================
   차일드 테마 커스텀 스타일
   ======================================== */

/* 
 * 여기에 커스텀 CSS를 추가하세요 
 * 
 * 컴포넌트별 스타일은 assets/css/ 폴더에서 관리합니다:
 * - assets/css/header.css - 헤더 스타일
 * - assets/css/secret-code.css - 시크릿코드 이벤트 스타일
 */

/* ========================================
   삼성브라우저 다크모드 완전 차단
   ======================================== */

/* 루트 레벨에서 color-scheme 명시 및 필터 차단 */
:root {
	color-scheme: light only !important;
	-webkit-color-scheme: light only !important;
}

/* 전체 HTML과 BODY에 명시적 배경/텍스트 색상 지정 및 필터 차단 */
html,
body {
	color-scheme: light only !important;
	-webkit-color-scheme: light only !important;
	background-color: #ffffff !important;
	color: #333333 !important;
	/* 삼성브라우저의 다크모드 필터 강제 차단 */
	-webkit-filter: none !important;
	filter: none !important;
}

/* 모든 요소에 필터 차단 적용 (삼성브라우저가 자동으로 적용하는 반전 필터 제거) */
* {
	color-scheme: light only !important;
	-webkit-color-scheme: light only !important;
	-webkit-filter: none !important;
	filter: none !important;
}

/* 이미지는 필터 예외 처리 (원본 유지) */
img, 
picture, 
video, 
canvas, 
svg {
	-webkit-filter: none !important;
	filter: none !important;
}

/* 모든 텍스트 요소에 명시적 색상 지정 */
h1, h2, h3, h4, h5, h6,
p, span, div, a, label,
input, textarea, select, button,
li, td, th {
	color-scheme: light only !important;
	-webkit-color-scheme: light only !important;
}

/* 입력 필드 배경색 고정 */
input,
textarea,
select {
	background-color: #ffffff !important;
	color: #333333 !important;
	-webkit-filter: none !important;
	filter: none !important;
}

/* 배경 이미지 및 그라디언트 보호 */
[style*="background"],
[class*="gradient"],
[style*="gradient"] {
	-webkit-filter: none !important;
	filter: none !important;
}
