/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.logo-ko {
    font-weight: 500;
    letter-spacing: 0.1em;
}

.logo-en {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-section {
    margin-right: auto;
}

.logo {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo-ko {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.logo-en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #666;
}

/* Navigation */
.main-nav {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background-color: #333;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}


/* Main Content */
.main-content {
    flex: 1;
    padding: 0;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-subtitle {
    font-size: 18px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.intro-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cta-button.primary {
    background-color: #1a1a1a;
    color: #fff;
}

.cta-button.secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-button.secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background-color: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

.featured-image {
    display: flex;
    justify-content: center;
}

.placeholder-art {
    width: 400px;
    height: 400px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.placeholder-art img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.calligraphy-char {
    font-size: 120px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
    color: #333;
}

.no-image-icon {
    font-size: 120px;
    color: #ccc;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Recent Works */
.recent-works {
    padding: 80px 0;
    background-color: #fafafa;
}

.text-center {
    text-align: center;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.artwork-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.artwork-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.artwork-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.artwork-image.dark {
    background: #1a1a1a;
}

.artwork-image.dark .calligraphy-char {
    color: #fff;
}

.artwork-image.gradient {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.artwork-card h4 {
    padding: 20px 20px 5px;
    font-size: 18px;
    font-weight: 500;
}

.artwork-card p {
    padding: 0 20px 20px;
    color: #999;
    font-size: 14px;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

/* Page Content Styles */
.page-content {
    padding: 60px 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-section {
        text-align: center;
        margin-right: 0;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .artwork-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .placeholder-art {
        width: 100%;
        max-width: 300px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .calligraphy-char {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .calligraphy-char {
        font-size: 60px;
    }
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.philosophy-item {
    text-align: center;
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-char {
    font-size: 40px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
}

.philosophy-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.philosophy-desc {
    font-size: 14px;
    color: #999;
}

.quote-section {
    background: #f8f8f8;
    padding: 40px;
    text-align: center;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    color: #666;
    line-height: 1.8;
}

/* Artworks Page Styles */
.artworks-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.year-section-artworks {
    margin-bottom: 80px;
}

.year-section-artworks:last-child {
    margin-bottom: 0;
}

.year-divider {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.year-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
    z-index: 0;
}

.year-label {
    display: inline-block;
    background: #fafafa;
    padding: 8px 30px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 300;
    color: #999;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.artworks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.artwork-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.artwork-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.artwork-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artwork-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.artwork-item:hover .artwork-overlay {
    transform: translateY(0);
}

.artwork-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: white;
}

.artwork-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.artwork-year {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* 작품 모달 스타일 */
/* 작품 모달 스타일 제거 - 개별 페이지로 이동하므로 불필요 */

.artwork-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.artwork-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 10px;
    min-height: 400px;
}

.calligraphy-char-large {
    font-size: 200px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
    color: #333;
}

.artwork-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artwork-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.artwork-detail-meta {
    margin-bottom: 30px;
}

.artwork-detail-meta p {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 30px 0 20px 0;
    border-bottom: none;
}

.breadcrumb-nav {
    font-size: 13px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.breadcrumb-nav a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-nav a:hover {
    color: #1a1a1a;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
    font-weight: 300;
}

.breadcrumb-current {
    color: #1a1a1a;
    font-weight: 400;
}

/* Artwork Detail Page */
.artwork-detail-page {
    padding: 60px 0;
    background-color: #fff;
}

.artwork-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.artwork-detail-image-section {
    position: sticky;
    top: 100px;
}

.artwork-image-container {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.artwork-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.artwork-image-container .calligraphy-char-large {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    font-size: 200px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
    color: #333;
}

.artwork-detail-info-section {
    padding: 20px 0;
}

.artwork-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.artwork-meta {
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

.meta-value {
    color: #333;
    font-size: 14px;
}

.artwork-description {
    margin-bottom: 40px;
}

.artwork-description h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 500;
}

.artwork-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.artwork-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-button {
    padding: 12px 24px;
    background: transparent;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans KR', sans-serif;
}

.share-button:hover {
    background: #f8f8f8;
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-button i {
    font-size: 14px;
}

.btn-back {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

/* Current Exhibition Section */
.current-exhibition-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.current-exhibition-block {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.current-exhibition-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.current-exhibition-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 15px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.current-exhibition-image .exhibition-poster {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.current-exhibition-image .exhibition-char-large {
    position: relative;
    z-index: 1;
}

.exhibition-char-large {
    font-size: 120px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
    color: #fff;
    font-weight: 400;
}

.current-exhibition-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exhibition-status {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    width: fit-content;
}

.current-exhibition-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.current-exhibition-meta {
    margin-bottom: 25px;
}

.current-exhibition-meta .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 16px;
}

.current-exhibition-meta .meta-item i {
    margin-right: 10px;
    color: #007bff;
    width: 20px;
}

.current-exhibition-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Past Exhibitions Section */
.past-exhibitions-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.past-exhibitions-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.past-exhibition-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.past-exhibition-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.past-exhibition-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 10px;
    min-height: 200px;
    width: 200px;
    position: relative;
    overflow: hidden;
}

.past-exhibition-image .exhibition-poster-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.past-exhibition-image .exhibition-char {
    position: relative;
    z-index: 1;
}

.exhibition-char {
    font-size: 32px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
    color: #fff;
    font-weight: 400;
}

.past-exhibition-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.past-exhibition-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.past-exhibition-period {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.past-exhibition-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.past-exhibition-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* Exhibition Detail Page Styles */
.exhibition-detail-page {
    padding: 60px 0;
    background-color: #fff;
}

.exhibition-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.exhibition-detail-image-section {
    position: sticky;
    top: 100px;
}

.exhibition-image-container {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.exhibition-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.exhibition-image-container .exhibition-char-large {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    font-size: 200px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
    color: #333;
}

.exhibition-detail-info-section {
    padding: 20px 0;
}

.exhibition-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.exhibition-meta {
    margin-bottom: 40px;
}

.exhibition-description {
    margin-bottom: 40px;
}

.exhibition-description h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 500;
}

.exhibition-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.exhibition-description .description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.exhibition-description .description-content p {
    margin-bottom: 15px;
}

.exhibition-description .description-content b,
.exhibition-description .description-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.exhibition-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.artwork-image {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-image.light {
    background: #f8f8f8;
}

.artwork-image.dark {
    background: #1a1a1a;
}

.artwork-image.gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.artwork-image.gradient-light {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.artwork-image.warm {
    background: #fff3e0;
}

.artwork-image.green {
    background: #e8f5e9;
}

.artwork-large-char {
    font-size: 100px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
}

.artwork-large-char.light {
    color: #333;
}

.artwork-large-char.dark {
    color: #fff;
}

.artwork-large-char.gradient {
    color: #fff;
}

.artwork-large-char.warm {
    color: #ff6b35;
}

.artwork-large-char.green {
    color: #4caf50;
}

.artwork-info {
    padding: 20px;
}

.artwork-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.artwork-medium {
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
}

.artwork-year {
    color: #666;
    font-size: 14px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-section {
    margin-bottom: 30px;
}

.contact-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.social-container {
    margin-bottom: 30px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.social-btn:hover {
    background: #333;
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #333;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    background: transparent;
    font-size: 14px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: #333;
}

.form-select {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    font-size: 14px;
    color: #666;
    transition: border-color 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: #333;
}

.submit-btn {
    padding: 12px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: #333;
}

.map-section {
    margin-top: 60px;
    padding: 40px;
    background: #f8f8f8;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.map-placeholder {
    height: 400px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: #999;
}

.map-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.map-address {
    margin-top: 10px;
    font-size: 14px;
}

/* Exhibitions Page Styles */
.exhibitions-content {
    max-width: 900px;
    margin: 0 auto;
}

.exhibition-section {
    margin-bottom: 80px;
}

.exhibition-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a1a1a;
}

.current-exhibition {
    background: #f8f8f8;
    padding: 40px;
    margin-bottom: 30px;
}

.exhibition-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.exhibition-image {
    background: #fff;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-large-char {
    font-size: 60px;
    font-family: 'KaiTi', 'SimSun', 'Noto Sans CJK KR', 'Malgun Gothic', serif;
    color: #333;
}

.exhibition-name {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.exhibition-date {
    color: #666;
    margin-bottom: 10px;
}

.exhibition-location {
    color: #666;
    margin-bottom: 15px;
}

.exhibition-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.year-section {
    margin-bottom: 40px;
}

.year-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f8f8;
}

.exhibition-list {
    list-style: none;
    padding: 0;
}

.exhibition-item {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.exhibition-item-title {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.exhibition-item-meta {
    color: #666;
    font-size: 14px;
}

.awards-section {
    margin-top: 60px;
    padding: 40px;
    background: #1a1a1a;
    color: #fff;
}

.awards-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.awards-list {
    list-style: none;
    padding: 0;
}

.awards-item {
    padding: 10px 0;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exhibition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artworks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .intro-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .video-title {
        font-size: 36px;
    }
    
    .video-subtitle {
        font-size: 16px;
    }
    
    .current-exhibition-block {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .current-exhibition-image {
        min-height: 200px;
    }
    
    .exhibition-char-large {
        font-size: 80px;
    }
    
    .current-exhibition-title {
        font-size: 24px;
    }
    
    .exhibition-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exhibition-detail-image-section {
        position: static;
    }
    
    .past-exhibition-item {
        grid-template-columns: 150px 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .past-exhibition-image {
        min-height: 150px;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .artworks-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-title {
        font-size: 28px;
    }
    
    .intro-title {
        font-size: 28px;
    }
    
    .artwork-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .artwork-detail-image-section {
        position: static;
    }
    
    .calligraphy-char-large {
        font-size: 120px;
    }
    
    .artwork-detail-title {
        font-size: 24px;
    }
    
    .past-exhibition-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .past-exhibition-image {
        min-height: 200px;
        width: 100%;
        margin: 0 auto;
    }
}