/**
 * 파일명: templates.css
 * 경로: /assets/css/
 * 기능: BizCard 명함 템플릿 스타일 (표준화 버전)
 * 작성일: 2025-10-27
 * 수정일: 2025-10-28
 */

/* ===================================
   템플릿 1: 심플 화이트
   =================================== */

/* ---- 배경 ---- */
.template-simple body {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
}

/* ---- 실제 명함 섹션 ---- */
.template-simple .business-card {
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

.template-simple .profile-image,
.template-simple .profile-placeholder {
    border-color: var(--theme1-primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.template-simple .profile-placeholder {
    background: linear-gradient(135deg, var(--theme1-primary) 0%, var(--theme1-secondary) 100%);
}

.template-simple .name-block {
    border-bottom-color: var(--theme1-primary);
    border-bottom-width: 3px;
}

.template-simple .contact-label {
    color: var(--theme1-primary);
}

.template-simple .contact-row a:hover {
    color: var(--theme1-primary);
}

.template-simple .qr-code-box {
    border: 2px dashed var(--theme1-primary);
}

/* ---- 소개 섹션 ---- */
.template-simple .section-title {
    border-bottom-color: var(--theme1-primary);
    border-bottom-width: 2px;
}

.template-simple .section-title i {
    color: var(--theme1-primary);
}

/* ---- 회사정보 섹션 ---- */
.template-simple .info-icon {
    background: linear-gradient(135deg, var(--theme1-primary) 0%, var(--theme1-secondary) 100%);
}

.template-simple .info-value,
.template-simple .info-value a {
    color: #1F2937;
}

.template-simple .info-value a:hover {
    color: var(--theme1-primary);
}

/* ---- 경력사항 섹션 ---- */
.template-simple .career-item::before {
    background: var(--theme1-primary);
}

.template-simple .career-period {
    color: var(--theme1-primary);
}

/* ---- SNS 섹션 ---- */
.template-simple .social-link {
    background: linear-gradient(135deg, var(--theme1-primary) 0%, var(--theme1-secondary) 100%);
}

.template-simple .social-link:hover {
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.4);
}

/* ---- 액션 버튼 ---- */
.template-simple .btn-save {
    background: linear-gradient(135deg, var(--theme1-primary) 0%, var(--theme1-secondary) 100%);
}

.template-simple .btn-save:hover {
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.3);
}

.template-simple .btn-share {
    border-color: var(--theme1-primary);
    color: var(--theme1-primary);
}

.template-simple .btn-share:hover {
    background: var(--theme1-primary);
    color: white;
}

/* ---- 하단 링크 ---- */
.template-simple .footer-link a {
    color: white;
}


/* ===================================
   템플릿 2: 모던 블루
   =================================== */

/* ---- 배경 ---- */
.template-modern body {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 50%, #3B82F6 100%);
}

/* ---- 실제 명함 섹션 ---- */
.template-modern .business-card {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.template-modern .profile-image,
.template-modern .profile-placeholder {
    border-color: var(--theme2-primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.template-modern .profile-placeholder {
    background: linear-gradient(135deg, var(--theme2-primary) 0%, var(--theme2-secondary) 100%);
}

.template-modern .name-block {
    border-bottom-color: var(--theme2-primary);
    border-bottom-width: 3px;
}

.template-modern .contact-label {
    color: var(--theme2-primary);
}

.template-modern .contact-row a:hover {
    color: var(--theme2-primary);
}

.template-modern .qr-code-box {
    border: 2px dashed var(--theme2-primary);
}

/* ---- 소개 섹션 ---- */
.template-modern .section-title {
    border-bottom-color: var(--theme2-primary);
    border-bottom-width: 2px;
}

.template-modern .section-title i {
    color: var(--theme2-primary);
}

/* ---- 회사정보 섹션 ---- */
.template-modern .info-icon {
    background: linear-gradient(135deg, var(--theme2-primary) 0%, var(--theme2-secondary) 100%);
}

.template-modern .info-value,
.template-modern .info-value a {
    color: #1F2937;
}

.template-modern .info-value a:hover {
    color: var(--theme2-primary);
}

/* ---- 경력사항 섹션 ---- */
.template-modern .career-item::before {
    background: var(--theme2-primary);
}

.template-modern .career-period {
    color: var(--theme2-primary);
}

/* ---- SNS 섹션 ---- */
.template-modern .social-link {
    background: linear-gradient(135deg, var(--theme2-primary) 0%, var(--theme2-secondary) 100%);
}

.template-modern .social-link:hover {
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.5);
}

/* ---- 액션 버튼 ---- */
.template-modern .btn-save {
    background: linear-gradient(135deg, var(--theme2-primary) 0%, var(--theme2-secondary) 100%);
}

.template-modern .btn-save:hover {
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.template-modern .btn-share {
    border-color: var(--theme2-primary);
    color: var(--theme2-primary);
}

.template-modern .btn-share:hover {
    background: var(--theme2-primary);
    color: white;
}

/* ---- 하단 링크 ---- */
.template-modern .footer-link a {
    color: white;
}


/* ===================================
   템플릿 3: 미니멀 그레이
   =================================== */

/* ---- 배경 ---- */
.template-minimal body {
    background: #F5F5F5;
}

/* ---- 실제 명함 섹션 ---- */
.template-minimal .business-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.template-minimal .profile-image,
.template-minimal .profile-placeholder {
    border-color: var(--theme3-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.template-minimal .profile-placeholder {
    background: linear-gradient(135deg, var(--theme3-primary) 0%, var(--theme3-secondary) 100%);
}

.template-minimal .name-block {
    border-bottom-color: var(--theme3-primary);
    border-bottom-width: 3px;
}

.template-minimal .contact-label {
    color: var(--theme3-primary);
}

.template-minimal .contact-row a:hover {
    color: var(--theme3-primary);
}

.template-minimal .qr-code-box {
    border: 2px dashed var(--theme3-primary);
}

/* ---- 소개 섹션 ---- */
.template-minimal .section-title {
    border-bottom-color: var(--theme3-primary);
    border-bottom-width: 2px;
}

.template-minimal .section-title i {
    color: var(--theme3-primary);
}

/* ---- 회사정보 섹션 ---- */
.template-minimal .info-icon {
    background: linear-gradient(135deg, var(--theme3-primary) 0%, var(--theme3-secondary) 100%);
}

.template-minimal .info-value,
.template-minimal .info-value a {
    color: #1F2937;
}

.template-minimal .info-value a:hover {
    color: var(--theme3-primary);
}

/* ---- 경력사항 섹션 ---- */
.template-minimal .career-item::before {
    background: var(--theme3-primary);
}

.template-minimal .career-period {
    color: var(--theme3-primary);
}

/* ---- SNS 섹션 ---- */
.template-minimal .social-link {
    background: linear-gradient(135deg, var(--theme3-primary) 0%, var(--theme3-secondary) 100%);
}

.template-minimal .social-link:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* ---- 액션 버튼 ---- */
.template-minimal .btn-save {
    background: linear-gradient(135deg, var(--theme3-primary) 0%, var(--theme3-secondary) 100%);
}

.template-minimal .btn-save:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.template-minimal .btn-share {
    border-color: var(--theme3-primary);
    color: var(--theme3-primary);
}

.template-minimal .btn-share:hover {
    background: var(--theme3-primary);
    color: white;
}

/* ---- 하단 링크 ---- */
.template-minimal .footer-link a {
    color: white;
}


/* ===================================
   템플릿 4: 컬러풀 그라데이션
   =================================== */

/* ---- 배경 ---- */
.template-colorful body {
    background: linear-gradient(135deg, #FEE2E2 0%, #D9F99D 100%);
}

/* ---- 실제 명함 섹션 ---- */
.template-colorful .business-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.template-colorful .profile-image,
.template-colorful .profile-placeholder {
    border-color: var(--theme4-primary);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.template-colorful .profile-placeholder {
    background: linear-gradient(135deg, var(--theme4-primary) 0%, var(--theme4-secondary) 100%);
}

.template-colorful .name-block {
    border-bottom-color: var(--theme4-primary);
    border-bottom-width: 3px;
}

.template-colorful .contact-label {
    color: var(--theme4-primary);
}

.template-colorful .contact-row a:hover {
    color: var(--theme4-primary);
}

.template-colorful .qr-code-box {
    border: 2px dashed var(--theme4-primary);
}

/* ---- 소개 섹션 ---- */
.template-colorful .section-title {
    border-bottom-color: var(--theme4-primary);
    border-bottom-width: 2px;
}

.template-colorful .section-title i {
    color: var(--theme4-primary);
}

/* ---- 회사정보 섹션 ---- */
.template-colorful .info-icon {
    background: linear-gradient(135deg, var(--theme4-primary) 0%, var(--theme4-secondary) 100%);
}

.template-colorful .info-value,
.template-colorful .info-value a {
    color: #1F2937;
}

.template-colorful .info-value a:hover {
    color: var(--theme4-primary);
}

/* ---- 경력사항 섹션 ---- */
.template-colorful .career-item::before {
    background: var(--theme4-primary);
}

.template-colorful .career-period {
    color: var(--theme4-primary);
}

/* ---- SNS 섹션 ---- */
.template-colorful .social-link {
    background: linear-gradient(135deg, var(--theme4-primary) 0%, var(--theme4-secondary) 100%);
}

.template-colorful .social-link:hover {
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.4);
}

/* ---- 액션 버튼 ---- */
.template-colorful .btn-save {
    background: linear-gradient(135deg, var(--theme4-primary) 0%, var(--theme4-secondary) 100%);
}

.template-colorful .btn-save:hover {
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.4);
}

.template-colorful .btn-share {
    border-color: var(--theme4-primary);
    color: var(--theme4-primary);
}

.template-colorful .btn-share:hover {
    background: var(--theme4-primary);
    color: white;
}

/* ---- 하단 링크 ---- */
.template-colorful .footer-link a {
    color: white;
}


/* ===================================
   템플릿 5: 클래식 비즈니스
   =================================== */

/* ---- 배경 ---- */
.template-classic body {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
}

/* ---- 실제 명함 섹션 ---- */
.template-classic .business-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}

.template-classic .profile-image,
.template-classic .profile-placeholder {
    border-color: var(--theme5-primary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.template-classic .profile-placeholder {
    background: linear-gradient(135deg, var(--theme5-primary) 0%, var(--theme5-secondary) 100%);
}

.template-classic .name-block {
    border-bottom-color: var(--theme5-primary);
    border-bottom-width: 3px;
}

.template-classic .contact-label {
    color: var(--theme5-primary);
}

.template-classic .contact-row a:hover {
    color: var(--theme5-primary);
}

.template-classic .qr-code-box {
    border: 2px dashed var(--theme5-primary);
}

/* ---- 소개 섹션 ---- */
.template-classic .section-title {
    border-bottom-color: var(--theme5-primary);
    border-bottom-width: 2px;
}

.template-classic .section-title i {
    color: var(--theme5-primary);
}

/* ---- 회사정보 섹션 ---- */
.template-classic .info-icon {
    background: linear-gradient(135deg, var(--theme5-primary) 0%, var(--theme5-secondary) 100%);
}

.template-classic .info-value,
.template-classic .info-value a {
    color: #1F2937;
}

.template-classic .info-value a:hover {
    color: var(--theme5-primary);
}

/* ---- 경력사항 섹션 ---- */
.template-classic .career-item::before {
    background: var(--theme5-primary);
}

.template-classic .career-period {
    color: var(--theme5-primary);
}

/* ---- SNS 섹션 ---- */
.template-classic .social-link {
    background: linear-gradient(135deg, var(--theme5-primary) 0%, var(--theme5-secondary) 100%);
}

.template-classic .social-link:hover {
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

/* ---- 액션 버튼 ---- */
.template-classic .btn-save {
    background: linear-gradient(135deg, var(--theme5-primary) 0%, var(--theme5-secondary) 100%);
}

.template-classic .btn-save:hover {
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
}

.template-classic .btn-share {
    border-color: var(--theme5-secondary);
    color: var(--theme5-secondary);
}

.template-classic .btn-share:hover {
    background: var(--theme5-secondary);
    color: white;
}

/* ---- 하단 링크 ---- */
.template-classic .footer-link a {
    color: white;
}


/* ===================================
   템플릿 6: 크리에이티브 스타일
   =================================== */

/* ---- 배경 ---- */
.template-creative body {
    background: linear-gradient(135deg, #FDF4FF 0%, #E9D5FF 50%, #DBEAFE 100%);
}

/* ---- 실제 명함 섹션 ---- */
.template-creative .business-card {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.template-creative .profile-image,
.template-creative .profile-placeholder {
    border-color: var(--theme6-primary);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.template-creative .profile-placeholder {
    background: linear-gradient(135deg, var(--theme6-primary) 0%, var(--theme6-secondary) 100%);
}

.template-creative .name-block {
    border-bottom-color: var(--theme6-primary);
    border-bottom-width: 3px;
}

.template-creative .contact-label {
    color: var(--theme6-primary);
}

.template-creative .contact-row a:hover {
    color: var(--theme6-primary);
}

.template-creative .qr-code-box {
    border: 2px dashed var(--theme6-primary);
}

/* ---- 소개 섹션 ---- */
.template-creative .section-title {
    border-bottom-color: var(--theme6-primary);
    border-bottom-width: 2px;
}

.template-creative .section-title i {
    color: var(--theme6-primary);
}

/* ---- 회사정보 섹션 ---- */
.template-creative .info-icon {
    background: linear-gradient(135deg, var(--theme6-primary) 0%, var(--theme6-secondary) 100%);
}

.template-creative .info-value,
.template-creative .info-value a {
    color: #1F2937;
}

.template-creative .info-value a:hover {
    color: var(--theme6-primary);
}

/* ---- 경력사항 섹션 ---- */
.template-creative .career-item::before {
    background: var(--theme6-primary);
}

.template-creative .career-period {
    color: var(--theme6-primary);
}

/* ---- SNS 섹션 ---- */
.template-creative .social-link {
    background: linear-gradient(135deg, var(--theme6-primary) 0%, var(--theme6-secondary) 100%);
}

.template-creative .social-link:hover {
    box-shadow: 0 6px 12px rgba(168, 85, 247, 0.4);
}

/* ---- 액션 버튼 ---- */
.template-creative .btn-save {
     background: linear-gradient(135deg, var(--theme6-primary) 0%, var(--theme6-secondary) 100%);
}

.template-creative .btn-save:hover {
    box-shadow: 0 6px 12px rgba(168, 85, 247, 0.4);
}

.template-creative .btn-share {
    border-color: var(--theme6-primary);
    color: var(--theme6-primary);
}

.template-creative .btn-share:hover {
    background: var(--theme6-primary);
    color: white;
}

/* ---- 하단 링크 ---- */
.template-creative .footer-link a {
    color: white;
}
