/* css/workshop.css */
.workshop-page {
    background-color: #f8f9fb;
}

.intro-section {
    background-color: #fff;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: #4a4a4a;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* Elegant deep green theme for academic/workshop page */
.section-label {
    color: #1d4d42; 
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    border-bottom: 2px solid #1d4d42;
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Faculty layout */
.faculty-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
}
.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.faculty-name-zh {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d4d42;
    margin-bottom: 0.2rem;
}
.faculty-name-en {
    font-family: 'Inter', sans-serif;
    color: #999;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}
.faculty-title {
    color: #c99c56; /* Subtle Gold accent */
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.faculty-bio {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 0;
}

/* Action/Info Box */
.info-section {
    position: relative;
    z-index: 1;
}
.info-box {
    background: linear-gradient(135deg, #1d4d42 0%, #11332a 100%);
    color: #fff;
    border-radius: 16px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 40px rgba(29, 77, 66, 0.25);
    position: relative;
    overflow: hidden;
}
/* Subtle decorative circle behind the box */
.info-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}
.info-box::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
    bottom: -80px;
    left: -50px;
}

.info-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}
.info-subtitle {
    color: #e3bc75; /* Bright Gold */
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}
.info-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}
.info-list li {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.8rem;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-label {
    min-width: 120px;
    font-weight: 600;
    color: #e3bc75;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.info-value {
    letter-spacing: 1px;
    line-height: 1.5;
}

.btn-golden {
    background-color: #e3bc75;
    color: #1d4d42;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(227, 188, 117, 0.4);
}
.btn-golden:hover {
    background-color: #fce2a8;
    color: #1d4d42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 188, 117, 0.6);
}
