/* 시리즈별 전시회 공통 스타일 */
.series-header {
    background: transparent;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.series-header h1 {
    font-size: 5.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    padding: 10px 0;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.series-header p {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
}

.series-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.series-description {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.series-description h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.series-description p {
    line-height: 1.8;
    color: #555;
}

.exhibition-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.exhibition-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.exhibition-logo {
    height: 120px;
    background: #f8f9fa no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.exhibition-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 27, 0.39);
    z-index: 1;
}

.exhibition-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.exhibition-info {
    padding: 25px;
}

.exhibition-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exhibition-title-eng {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exhibition-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.exhibition-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.exhibition-detail i {
    width: 16px;
}

.exhibition-detail span {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.exhibition-link {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.exhibition-link:hover {
    color: white;
    opacity: 0.8;
}

.pagination {
    text-align: center;
    margin: 40px 0;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    color: white;
}

.breadcrumb {
    padding: 20px 0;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 배경 이미지 Swiper 슬라이드 스타일 */
.series-swiper-slide {
    box-sizing: border-box;
    padding: 0;
}

/* 시리즈별 특화 스타일 */
.series-flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.series-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.series-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

/* 시리즈별 색상 테마 */
.series-japan {
    --series-color: #dc3545;
}

.series-china {
    --series-color: #d63384;
}

.series-hongkong {
    --series-color: #fd7e14;
}

.series-vietnam {
    --series-color: #198754;
}

.series-thailand {
    --series-color: #0d6efd;
}

.series-germany {
    --series-color: #6f42c1;
}

.series-usa {
    --series-color: #0dcaf0;
}

@media (max-width: 768px) {
    .series-header h1 {
        font-size: 2.8rem;
    }
    .exhibition-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .series-content {
        padding: 0 10px;
    }
    .series-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .series-flag {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .series-header {
        padding: 30px 0;
    }
    .series-header h1 {
        font-size: 1.5rem;
    }
    .series-header p {
        font-size: 1rem;
    }
}

.series-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 80px 0;
}

.series-button {
    background: #000000;
    color: #ffffff;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: background 0.3s, color 0.3s;
}

.series-button:hover {
    background: #838383;
    color: #ffffff;
}

.series-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 