/* ==================== Hero 区域 ==================== */
.hero {
    margin-top: 80px;
    position: relative;
    background: var(--bg-white);
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

/* 左侧缩略图竖向排列 */
.thumbnail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
    padding: 10px;
}

.thumbnail-item {
    width: 90px;
    height: 90px;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 中间大图区域 */
.hero-gallery {
    flex: 0 0 60%;
    position: relative;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
    background: var(--bg-cream);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

/* 右侧内容区域 */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 40px 40px;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', 'STZhongYuan', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero-highlights li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.hero-location {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* ==================== 导航标签 ==================== */
.nav-tabs {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
    z-index: 99;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
}

.tab-item {
    padding: 20px 0;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    bottom: -1px;
}

.tab-item:hover,
.tab-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ==================== 工坊流程 ==================== */
.workshop-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

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

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.process-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.process-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.process-content {
    flex: 1;
}

.process-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* 单栏布局 */
.process-item.full-width {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ==================== 预约区域 ==================== */
.booking-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中（如果需要的话） */
}

.booking-content {
    max-width: 600px;
    color: white;
    text-align: center; /* 文本内容居中 */
}

.booking-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.booking-title {
    font-family: 'Cormorant Garamond', 'STZhongYuan', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.booking-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.booking-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: white;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.booking-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.booking-image {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 500px;
}

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