@charset "utf-8";

/* 공통 변수 및 초기화 */
.curri_page { background:#000; color:#fff; padding:100px 0; font-family: 'Pretendard', sans-serif; line-height:1.7; word-break:keep-all; }
.inner_1200 { max-width:1200px; margin:0 auto; padding:0 20px; }
.point_color { color:#ff3061 !important; }

/* 탭 버튼 스타일 */
.curri_tab_wrap { text-align: center; margin-bottom: 60px; display: flex; justify-content: center; gap: 10px; }
.tab_btn {
    background: #222; color: #888; border: 1px solid #333; padding: 15px 40px;
    font-size: 18px; font-weight: 700; border-radius: 50px; cursor: pointer; transition: 0.3s;
}
.tab_btn.active { background: #ff3061; color: #fff; border-color: #ff3061; box-shadow: 0 5px 15px rgba(255, 48, 97, 0.4); }
.tab_btn:hover { border-color: #ff3061; color: #fff; }

/* 콘텐츠 표시/숨김 및 애니메이션 */
.curri_content { display: none; }
.curri_content.active { display: block; animation: fadeIn 0.8s; }

/* 1번 섹션 (타이틀) */
.up_ani { animation: fadeInUp 1.2s; text-align: center; margin-bottom: 80px; }
.up_ani .sub_tt { color:#ff3061; font-weight:600; margin-bottom:10px; }
.up_ani h2 { font-size:36px; font-weight:800; letter-spacing:-1px; }

/* 2번 섹션 (강조 박스 - 수정완료) */
.curri_section { margin-bottom:100px; }
.point_box_center {
    /* [수정] 배경색은 PHP에서 이미지로 대체, 가로폭은 철학섹션과 동일하게 1200px로 확장 */
    background:#1a1a1a;
    padding:60px 40px;
    border-radius:25px;
    border:1px solid #333;
    max-width:1200px; /* 기존 950px에서 철학섹션과 동일한 1200px로 수정 */
    width: 100%;
    margin:0 auto;
    text-align:center;
    box-sizing: border-box;
}
.point_box_center h3 { font-size:26px; color:#ff3061; margin-bottom:25px; font-weight:800; }
.point_box_center p { font-size:18px; color:#ccc; margin-bottom:5px; }
.line_divider { width:30px; height:1px; background:#444; margin:25px auto; }
.highlight_txt { font-weight:800; color:#fff !important; font-size:21px; padding-top:10px; }

/* 3번 섹션 (카드 그리드) */
.section_tt { font-size:32px; font-weight:800; margin-bottom:60px; text-align:center; }
.direction_grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.direction_card {
    background: #ff3061; color: #fff; width: 300px; height: 180px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    border-radius: 15px; padding: 20px; text-align: center;
    box-shadow: 0 10px 20px rgba(255, 48, 97, 0.2); transition: 0.3s;
}
.direction_card:hover { transform: translateY(-10px); background: #fff; color: #ff3061; }
.direction_card i { font-size: 35px; margin-bottom: 15px; }
.direction_card span { font-size: 19px; font-weight: 700; }

/* 취미용 카드 스타일 변형 */
.direction_card.hobby { background: #333; border: 1px solid #ff3061; }

/* 하단 레슨 시스템 체크리스트 */
.check_list { list-style:none; padding:0; display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:20px; }
.check_list li { background:#1a1a1a; padding:35px 25px; border-radius:15px; font-size:18px; text-align:center; border:1px solid #333; transition:0.3s; }
.check_list li:hover { border-color:#ff3061; transform:translateY(-5px); }
.check_list li i { display:block; font-size:32px; margin-bottom:15px; color:#ff3061; }

/* 4번 섹션 (철학 박스 - 기준점) */
.philosophy_box {
    /* 배경은 PHP inline style에서 덮어씌워질 수 있음 */
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&q=80&w=1200');
    background-size: cover; background-position: center;
    padding: 100px 40px; border-radius: 25px; text-align: center; border: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}
.philosophy_box .brand_name { color:#ff3061; font-weight:700; margin-bottom:15px; letter-spacing:1px; }
.philosophy_box h4 { font-size:32px; margin-bottom:25px; font-weight:800; }
.philosophy_box .short_line { width:40px; height:2px; background:#555; margin:0 auto 30px; }
.philosophy_box .philo_desc { font-size:20px; color:#eee; line-height:1.8; max-width:850px; margin:0 auto; }

/* 애니메이션 및 모바일 대응 (스크롤 시 위로 올라오는 효과) */
.scroll_ani { opacity: 0; transform: translateY(50px); transition: all 1.2s ease-out; }
.scroll_ani.active { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 50%, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width:768px) {
    .up_ani h2 { font-size:26px; }
    .direction_card { width: 100%; height: 140px; }
    .philosophy_box h4 { font-size:24px; }
    .philosophy_box .philo_desc { font-size:17px; }
    .tab_btn { padding: 12px 25px; font-size: 16px; }
    .point_box_center { padding: 40px 20px; } /* 모바일용 패딩 축소 */
}

.contact_area { text-align:center; margin-top:50px; }
.btn_contact { display:inline-block; background:#ff3061; color:#fff; padding:20px 50px; border-radius:50px; font-weight:700; font-size:20px; text-decoration:none; transition:0.3s; }
.btn_contact:hover { background:#fff; color:#ff3061; }
