/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'LuxuryFont';
    src: local('Times New Roman'), local('Georgia');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'LuxuryFont', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f3f0;
    overflow-x: hidden;
}

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页头样式 */
.luxury-header {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #d4af37;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo-container .logo img {
    max-height: 70px;
}

.header-contact {
    font-size: 18px;
    font-weight: 500;
    color: #d4af37;
}

.main-nav {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 15px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.main-nav ul li {
    margin: 0 30px;
    position: relative;
}

.main-nav ul li a {
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 0;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: #fff;
    transform: translateY(-3px);
}

/* 移动端菜单按钮 */
.mobile-menu-trigger {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
}

.mobile-menu-trigger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #d4af37;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* 移动端菜单 */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    padding: 100px 30px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-navigation.active {
    right: 0;
}

.mobile-navigation ul {
    list-style: none;
}

.mobile-navigation ul li {
    margin: 20px 0;
}

.mobile-navigation ul li a {
    color: #d4af37;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-navigation ul li a:hover,
.mobile-navigation ul li.active a {
    color: #fff;
    padding-left: 10px;
}

/* 首页大图 */
.hero-luxury {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/hero.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 160px;
    position: relative;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #d4af37;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.btn-gold {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d4af37, #f0c14b);
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f0c14b, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* 品牌理念 */
.brand-philosophy {
    background: linear-gradient(135deg, #f5f3f0, #e9e5e0);
    padding: 100px 0;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.philosophy-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
}

.philosophy-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* 通用区块标题 */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-decoration {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    margin: 20px auto 0;
}

/* 尊荣系列 */
.collection-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #e9e5e0, #f5f3f0);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.collection-item {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.collection-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.item-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.item-image {
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f3f0;
}

.item-image img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.5s ease;
}

.collection-item:hover .item-image img {
    transform: scale(1.1);
}

.item-info {
    padding: 30px;
    text-align: center;
}

.item-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.item-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* 皇家工艺 */
.craftsmanship-luxury {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #fff;
}

.craftsmanship-luxury .section-title h2 {
    color: #d4af37;
}

.craftsmanship-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.craftsmanship-images {
    flex: 1;
    min-width: 500px;
    position: relative;
}

.main-image {
    position: relative;
    z-index: 2;
}

.main-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.side-images {
    position: absolute;
    top: 50px;
    right: -50px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-images img {
    width: 150px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #d4af37;
    transition: transform 0.3s ease;
}

.side-images img:hover {
    transform: scale(1.05);
}

.craftsmanship-text {
    flex: 1;
    min-width: 400px;
}

.craftsmanship-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #d4af37;
    position: relative;
    padding-bottom: 15px;
}

.craftsmanship-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
}

.craftsmanship-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

/* 品牌传承 */
.heritage-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f3f0, #e9e5e0);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #b8860b);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 40%;
    text-align: right;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    padding-right: 50px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: 0;
}

.timeline-content {
    width: 40%;
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* 名士品鉴 */
.reviews-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #e9e5e0, #f5f3f0);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.review-item {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.reviewer-avatar {
    margin-right: 20px;
}

.reviewer-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4af37;
}

.reviewer-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-weight: 700;
}

.reviewer-details p {
    font-size: 1rem;
    color: #666;
}

.review-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.review-content p::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    color: #d4af37;
    opacity: 0.3;
    line-height: 1;
}

/* 尊贵服务 */
.vip-service {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.service-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.service-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* 友情链接 */
.luxury-links {
    background: linear-gradient(135deg, #f5f3f0, #e9e5e0);
    padding: 60px 0;
}

.links-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.links-wrapper a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.links-wrapper a:hover {
    color: #d4af37;
}

.links-wrapper a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.links-wrapper a:hover::after {
    width: 100%;
}

/* 页脚 */
.luxury-footer {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #d4af37;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo img {
    max-height: 100px;
    margin-bottom: 30px;
}

.footer-info p {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #888;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .timeline-year {
        width: auto;
        text-align: left !important;
        padding-right: 0 !important;
        padding-left: 70px !important;
        margin-bottom: 20px;
    }
    
    .timeline-year::after {
        right: auto !important;
        left: 30px !important;
    }
    
    .timeline-content {
        width: 100%;
        padding-left: 70px;
    }
    
    .side-images {
        position: relative;
        top: 20px;
        right: 0;
        flex-direction: row;
        justify-content: center;
    }
    
    .side-images img {
        width: 120px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul li {
        margin: 0 15px;
    }
    
    .main-nav ul li a {
        font-size: 16px;
    }
    
    .craftsmanship-content {
        flex-direction: column;
    }
    
    .craftsmanship-images,
    .craftsmanship-text {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .btn-gold {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-trigger {
        display: block;
    }
    
    .collection-grid,
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .item-image {
        height: 300px;
    }
    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .reviewer-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn-gold {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .item-info,
    .review-item {
        padding: 20px;
    }
    
    .links-wrapper {
        gap: 20px;
    }
    
    .timeline-content {
        padding-left: 50px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection-item,
.review-item,
.timeline-item {
    animation: fadeIn 0.6s ease-out;
}

.collection-item:nth-child(2),
.review-item:nth-child(2),
.timeline-item:nth-child(2) {
    animation-delay: 0.1s;
}

.collection-item:nth-child(3),
.review-item:nth-child(3),
.timeline-item:nth-child(3) {
    animation-delay: 0.2s;
}

.collection-item:nth-child(4),
.review-item:nth-child(4),
.timeline-item:nth-child(4) {
    animation-delay: 0.3s;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #b8860b);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b8860b, #d4af37);
}