/* 婚礼习俗页面特定样式 */
.wedding-content {
    padding-top: 60px;
}

/* 英雄区域样式 */
.hero-section {
    height: 500px;
    position: relative;
    background-image: url('https://example.com/wedding-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* 婚礼六礼时间线样式 */
.ceremony-steps {
    padding: 60px 0;
    background-color: #fff;
}

.ceremony-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--primary-color);
    z-index: 0;
}

.step-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

/* 婚礼仪式部分 */
.wedding-customs {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.wedding-customs h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.customs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-image {
    height: 200px;
    overflow: hidden;
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-card:hover .custom-image img {
    transform: scale(1.1);
}

.custom-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0 10px;
}

.custom-card p {
    padding: 0 20px 20px;
    text-align: center;
    color: #666;
}

/* 地域特色部分 */
.regional-differences {
    padding: 60px 0;
    background-color: #fff;
}

.regional-differences h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.region-item {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.region-item:hover {
    transform: translateY(-5px);
}

.region-item h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.region-item ul {
    list-style: none;
    padding: 0;
}

.region-item li {
    padding: 8px 0;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.region-item li:last-child {
    border-bottom: none;
}

/* 现代传承部分 */
.modern-adaptation {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.modern-adaptation h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.adaptation-content {
    max-width: 800px;
    margin: 0 auto;
}

.adaptation-text {
    text-align: center;
    margin-bottom: 40px;
}

.adaptation-text p {
    color: #666;
    line-height: 1.6;
}

.adaptation-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.example-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.example-item:hover {
    transform: translateY(-5px);
}

.example-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.example-item p {
    color: #666;
} 