/**
 * 파트너 페이지 스타일시트
 * 버전: 1.3.0
 * 독립적인 CSS 클래스 네임 사용
 */

/* 페이지 헤더 */
.partner-page-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    padding: 4rem 0 3rem;
    color: #ffffff;
    text-align: center;
}

.partner-page-header .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.partner-page-header .page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* 파트너 소개 */
.partner-intro-section {
    background: #ffffff;
}

.partner-intro-box {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.partner-intro-box .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* 파트너 카드 */
.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    margin-bottom: 2rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partner-logo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
}

/* 파트너 로고 카드 (동적 로고 목록) */
.partner-logo-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    padding: 2rem;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.partner-logo-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.partner-logo-wrapper.partner-logo-svg {
    height: 160px;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.partner-logo-card:hover .partner-logo-img {
    transform: scale(1.05);
}

.partner-logo-img-svg {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-info {
    flex: 1;
}

.partner-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.partner-country {
    font-size: 1rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partner-country i {
    margin-right: 0.5rem;
}

.partner-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.partner-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partner-products .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* 섹션 제목 */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.partner-section-title,
.customer-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.partner-section-title i,
.customer-section-title i {
    color: #ff6b35;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.section-divider {
    border: none;
    border-top: 2px solid #dee2e6;
    margin: 0 0 2rem 0;
}

/* 고객사 섹션 */
.customer-list-section {
    background: #ffffff;
}

.customer-logo-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.customer-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.customer-logo-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
}

.customer-logo-img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.customer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.customer-company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.customer-company-name-ko {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

/* 협력 가치 */
.partner-value-section {
    background: #ffffff;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* 파트너 문의 */
.partner-inquiry-section {
    background: #f8f9fa;
}

.partner-inquiry-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.partner-inquiry-section .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.partner-inquiry-section .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .partner-page-header .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .partner-intro-box .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .partner-page-header {
        padding: 3rem 0 2rem;
    }
    
    .partner-page-header .page-title {
        font-size: 2rem;
    }
    
    .partner-intro-box {
        padding: 2rem;
    }
    
    .partner-card {
        margin-bottom: 2rem;
    }
    
    .partner-logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .partner-intro-box .section-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .partner-section-title,
    .customer-section-title {
        font-size: 1.5rem;
    }
    
    .partner-name {
        font-size: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .customer-logo-wrapper {
        height: 100px;
    }
    
    .customer-logo-img {
        max-height: 80px;
    }
    
    .customer-company-name {
        font-size: 1.1rem;
    }
    
    .partner-logo-card {
        min-height: 160px;
        padding: 1.5rem;
    }
    
    .partner-logo-wrapper {
        height: 120px;
    }
    
    .partner-logo-wrapper.partner-logo-svg {
        height: 120px;
    }
    
    .partner-logo-img,
    .partner-logo-img-svg {
        max-height: 120px;
    }
}

