/* 金面王朝专用样式表 */

/* 页面整体布局 */
.golden-face-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 标题样式 */
.golden-title {
    font-size: 2.8rem;
    color: #c0932b;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.golden-subtitle {
    font-size: 1.5rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

/* 主要内容区域 */
.featured-show {
    display: flex;
    margin: 40px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

/* 海报容器样式 */
.show-poster {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 20px;
    height: auto;
}

.show-poster img {
    width: 100%;
    max-height: 800px;
    object-fit: contain;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* 二维码样式 */
.wechat-code {
    text-align: center;
    width: 100%;
    margin-top: 280px;
    position: relative;
    z-index: 10;
}

.wechat-code img {
    width: 350px !important;
    height: 350px !important;
    border: 3px solid #ddd;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.wechat-code p {
    font-size: 18px;
    color: #444;
    font-weight: 600;
}

/* 描述区域 */
.show-description {
    flex: 0 0 60%;
    padding: 30px;
    overflow: visible;
    height: auto;
}

.show-title {
    font-size: 2.2rem;
    color: #c0932b;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.show-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.show-text {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* 演出信息框 */
.show-info-box {
    background-color: #f5f5f5;
    border-left: 4px solid #c0932b;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 0 4px 4px 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 价格表 */
.price-table-container {
    width: 100%;
    margin: 30px 0;
    overflow-x: auto;
}

.ticket-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    margin: 30px 0;
}

.ticket-table th, .ticket-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.ticket-table th {
    background-color: #c0932b;
    color: white;
}

.ticket-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.ticket-table tr:hover {
    background-color: #e9e9e9;
}

.discount-price {
    color: #e74c3c;
    font-weight: bold;
}

/* 特别提示 */
.special-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 0 4px 4px 0;
}

.special-notice h4 {
    color: #856404;
    margin-bottom: 10px;
}

.special-notice p {
    color: #856404;
    margin-bottom: 5px;
}

/* 联系信息 */
.contact-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-title {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    margin-right: 10px;
    color: #c0932b;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .featured-show {
        flex-direction: column;
    }
    
    .show-poster, .show-description {
        flex: auto;
        max-width: 100%;
    }
    
    .wechat-code {
        margin-top: 50px;
    }
    
    .wechat-code img {
        width: 250px !important;
        height: 250px !important;
    }
}

@media (max-width: 768px) {
    .golden-title {
        font-size: 2.2rem;
    }
    
    .golden-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

/* 座位图弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #666;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

.seat-map-image {
    width: 100%;
    height: auto;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.seat-map-link {
    color: #c0932b;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.seat-map-link:hover {
    color: #e74c3c;
}

/* 图片与视频页面样式 */
.gallery-intro {
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: justify;
}

.gallery-tabs {
    display: flex;
    margin-bottom: 30px;
}

.tab {
    padding: 12px 25px;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px 4px 0 0;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.tab.active {
    background-color: #c0932b;
    color: white;
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

.feature-section {
    display: flex;
    margin-bottom: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    cursor: pointer;
}

.feature-image img:hover {
    transform: scale(1.05);
}

.feature-text {
    flex: 0 0 60%;
    padding: 25px;
}

.feature-text.full-width {
    flex: 0 0 100%;
}

.feature-text h3 {
    color: #c0932b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.video-item h3 {
    padding: 15px;
    font-size: 16px;
    color: #444;
}

/* 灯箱效果 */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .feature-section {
        flex-direction: column;
    }
    
    .feature-image, .feature-text {
        flex: auto;
        max-width: 100%;
    }
    
    .feature-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gallery-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab {
        width: 100%;
        border-radius: 4px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* 演出信息页面样式 */
.show-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.show-info-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.show-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.show-info-card.full-width {
    flex: 1 1 100%;
}

.show-info-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #c0932b;
    color: white;
}

.show-info-icon {
    font-size: 24px;
    margin-right: 15px;
}

.show-info-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.show-info-content {
    padding: 25px;
}

.show-info-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c0932b;
    margin-bottom: 15px;
}

.note {
    color: #666;
    font-size: 0.95rem;
}

/* 日历部分 */
.calendar-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c0932b;
}

.calendar-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #c0932b;
    color: white;
}

.calendar-nav {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.calendar-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f5f5f5;
    border-bottom: 1px solid #eee;
}

.calendar-weekdays div {
    text-align: center;
    padding: 10px;
    font-weight: 500;
    color: #555;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    gap: 5px;
}

.calendar-day {
    height: 80px;
    border-radius: 5px;
    padding: 5px;
    position: relative;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-day:hover {
    background-color: #f0f0f0;
}

.calendar-day.empty {
    background-color: transparent;
    cursor: default;
}

.calendar-day span {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 14px;
    color: #333;
}

.show-mark {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #c0932b;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
}

/* 票价信息部分 */
.ticket-info-section {
    margin-bottom: 50px;
}

.ticket-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.ticket-table th, .ticket-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ticket-table th {
    background-color: #c0932b;
    color: white;
    font-weight: 500;
}

.ticket-table tr:last-child td {
    border-bottom: none;
}

.ticket-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.ticket-notes {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ticket-notes h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ticket-notes ul {
    padding-left: 20px;
}

.ticket-notes li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #555;
}

/* 行动号召部分 */
.cta-section {
    text-align: center;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #c0932b;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(192, 147, 43, 0.3);
}

.cta-button:hover {
    background-color: #a87d24;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 147, 43, 0.4);
}

.cta-note {
    margin-top: 15px;
    color: #777;
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .show-info-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .calendar-day {
        height: 60px;
    }
    
    .show-mark {
        font-size: 10px;
        padding: 1px 4px;
    }
    
    .ticket-table th, .ticket-table td {
        padding: 10px 15px;
    }
}
