/* 页面标题banner */
.page-banner {
    margin-top: 80px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
}

/* 预订选项卡 */
.booking-tabs {
    background: #f9f9f9;
    padding: 20px 0;
    margin-bottom: 30px;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tab {
    padding: 10px 30px;
    border-radius: 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.tab:hover,
.tab.active {
    background: #2c5530;
    color: #fff;
}

/* 预订表单 */
.booking-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: none;
}

.booking-form.active {
    display: block;
}

/* 门票预订 */
.ticket-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.ticket-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-info h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    color: #e74c3c;
    margin-bottom: 5px;
}

.desc {
    color: #666;
    font-size: 14px;
}

.ticket-count {
    display: flex;
    align-items: center;
    gap: 10px;
}

.count-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.count-btn:hover {
    background: #f5f5f5;
}

.ticket-count input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 特色服务预订 */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.time-slots {
    margin-top: 15px;
}

.time-slots select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
}

/* 预订详情 */
.booking-details {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    padding: 12px;
    background: #2c5530;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1e3c22;
}

/* 预订流程 */
.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    position: relative;
}

.process-item {
    text-align: center;
    padding: 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.process-icon img {
    width: 100%;
    height: 100%;
}

.process-item h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.process-item p {
    color: #666;
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
    .ticket-options,
    .service-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .ticket-options,
    .service-options {
        grid-template-columns: 1fr;
    }

    .process-container {
        grid-template-columns: 1fr;
    }

    .ticket-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
} 