/**
 * 초량한의원 테마 오버라이드
 *
 * 위치: public/local/theme-override.css
 * core:pull로부터 안전하게 보호됩니다.
 *
 * 코어의 기본 slate 컬러를 blue 계열로 오버라이드합니다.
 */

/* ── 1. CSS Custom Properties 오버라이드 ── */
:root {
    /* Accent → Blue */
    --accent: #2563eb;
    --accent-soft: #dbeafe;
    --accent-strong: #1d4ed8;

    /* Primary (Accent 동기화) */
    --primary: #2563eb;
    --primary-soft: #dbeafe;
    --primary-strong: #1d4ed8;

    /* Gradient → Blue */
    --accent-gradient-start: #2563eb;
    --accent-gradient-end: #1d4ed8;
}

/* ── 2. 버튼 스타일 오버라이드 ── */
.btn--primary {
    background: var(--accent) !important;
    color: white !important;
}

.btn--primary:hover {
    background: var(--accent-strong) !important;
}

/* ── 3. Navbar transparent 모드 텍스트 색상 ── */
nav[data-transparent="true"] {
    color: #334155 !important; /* slate-700: 밝은 배경에서 잘 보이는 색 */
}

/* ── 4. SnowyMountainHero 오버라이드 ── */
/* 배경색 */
.hero-section [class*="bg-white"] {
    background-color: #f0f7ff !important;
}

/* 히어로 CTA 버튼 blue 테마 */
.hero-section a[class*="bg-slate-900"],
.hero-section a[class*="bg-black"] {
    background-color: #2563eb !important;
}

.hero-section a[class*="bg-slate-900"]:hover,
.hero-section a[class*="bg-black"]:hover {
    background-color: #1d4ed8 !important;
}

/* ── 5. 푸터 환불/취소 안내 링크 숨김 ── */
footer a[href*="/refund"] {
    display: none !important;
}

/* ── 6. 히어로 뱃지 카드: 별표+글자 흰색, 배경 투명, 테두리 검정 ── */
section .absolute.-bottom-6.-left-6 {
    background-color: transparent !important;
    border-color: #000000 !important;
}

section .absolute.-bottom-6.-left-6 .font-bold,
section .absolute.-bottom-6.-left-6 .text-xs,
section .absolute.-bottom-6.-left-6 .rounded-full {
    color: #ffffff !important;
}
