/* 工作室页面样式 */

/* 工作室页面基础布局 */
.studio {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    min-height: 100vh;
}

.studio h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    font-family: var(--font-serif);
    position: relative;
}

.studio h2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.studio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.studio-image:hover {
    transform: scale(1.05);
}

.studio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* 工作室介绍 */
.studio-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.studio-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.studio-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.studio-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* 创作过程展示 */
.studio-process {
    margin-bottom: 5rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-serif);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 2;
}

.step-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.step-image:hover img {
    transform: scale(1.05);
}

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

.step-image:hover .step-overlay {
    transform: translateY(0);
}

.step-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.step-content {
    padding: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* 创作理念 */
.studio-philosophy {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 5rem;
    text-align: center;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin: 0 0 2rem 0;
    position: relative;
    padding: 0 3rem;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -1rem;
}

.philosophy-quote::before {
    left: 0;
}

.philosophy-quote::after {
    right: 0;
}

.philosophy-author {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    font-style: normal;
}

/* 工作室特色 */
.studio-features {
    margin-bottom: 3rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-serif);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* 工作室图片查看器 */
.studio-viewer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studio-viewer-modal.show {
    opacity: 1;
}

.studio-viewer-modal .viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.studio-viewer-modal .viewer-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.studio-viewer-modal .viewer-content img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
}

.studio-viewer-modal .viewer-info {
    padding: 2rem;
}

.studio-viewer-modal .viewer-info h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-serif);
}

.studio-viewer-modal .viewer-info p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.studio-viewer-modal .viewer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.studio-viewer-modal .viewer-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .studio-title {
        font-size: 2.5rem;
    }
    
    .studio-subtitle {
        font-size: 1.1rem;
    }
    
    .process-title,
    .philosophy-title,
    .features-title {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-quote {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
    
    .philosophy-quote::before,
    .philosophy-quote::after {
        font-size: 3rem;
    }
    
    .studio-intro,
    .studio-philosophy {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* 基础工作室样式移动端适配 */
    .studio-content {
        grid-template-columns: 1fr;
    }

    .studio-gallery {
        grid-template-columns: 1fr;
    }

    .studio-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .studio-content {
        padding: 0 1rem;
    }
    
    .studio-title {
        font-size: 2rem;
    }
    
    .process-title,
    .philosophy-title,
    .features-title {
        font-size: 1.8rem;
    }
} 