/* ================================================
   쿨에어(CoolAir) 스킨 전용 CSS
   스킨 slug: coolair
   ================================================ */

/* 기본 폰트 한글 적용 (시스템 내장 폰트 우선) */
body {
    font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', 'Noto Sans KR', sans-serif;
}

/* ===== 한글 세로 텍스트 정방향 처리 =====
   원본 vendor CSS는 영문 기준으로 writing-mode + rotate(-180deg) 를 사용해
   세로 텍스트를 표시하지만, 한글은 각 글자가 독립 음절이라 회전 시 뒤집혀 보임.
   해당 요소들은 회전을 해제하고 text-orientation: upright 로 글자를 정방향 유지. */
.float-text span,
.float-text-right span {
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    text-orientation: upright;
    -webkit-text-orientation: upright;
    letter-spacing: 2px;
}

/* ===== S01 히어로 슬라이더 ===== */
#ca-hero .slider-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== S02 회사소개 ===== */
#ca-about .subtitle {
    color: var(--primary-color, #0d6efd);
}

/* ===== S03 서비스 그리드 ===== */
#ca-services .rounded-20px {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#ca-services .rounded-20px:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===== S08 고객 후기 ===== */
#ca-testimonials .de_testi s2 {
    text-align: left;
}

/* ===== S13 하단 CTA 바 ===== */
#ca-cta-bar h3 {
    font-size: 1.3rem;
}
