/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: #D4AF37;
    --secondary-color: #1a1a1a;
    --accent-color: #8B7355;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.lang-link.active {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.15);
    font-weight: 700;
}

.burger {
    display: none;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* 主视觉区域 */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    to { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 1.3rem;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 5px; }
    50% { opacity: 1; top: 15px; }
}

/* 章节标题 */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto;
}

/* 关于我们 */
.about {
    padding: 8rem 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    padding: 2rem 0;
    position: relative;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.about-main-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

/* 表演节目 */
.performances {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1a 100%);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.performance-card {
    background: rgba(45, 45, 45, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.performance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.performance-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.performance-card:hover .performance-image img {
    transform: scale(1.1);
}

.performance-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}

.performance-info {
    padding: 2rem;
}

.performance-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.performance-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.performance-time {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

/* 画廊 */
.gallery {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* 活动日程 */
.events {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1a 100%);
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.event-date,
.event-details {
    position: relative;
    z-index: 1;
}

.event-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.date-day {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.event-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-price {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

/* 价格信息 */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1a 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid:has(.pricing-card:only-child),
.pricing-grid-single {
    grid-template-columns: 1fr;
    max-width: 800px;
    justify-items: center;
    width: 100%;
}

.pricing-card {
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.pricing-grid-single .pricing-card {
    padding: 4rem 3.5rem;
    max-width: 100%;
}

.pricing-grid-single .pricing-header h3 {
    font-size: 1.8rem;
}

.pricing-grid-single .amount {
    font-size: 4rem;
}

.pricing-grid-single .pricing-features li {
    font-size: 1.1rem;
    padding: 1.2rem 0;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.pricing-grid:has(.pricing-card:only-child) .pricing-card.featured,
.pricing-grid-single .pricing-card.featured {
    transform: scale(1);
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
}

.pricing-grid:has(.pricing-card:only-child) .pricing-card.featured:hover,
.pricing-grid-single .pricing-card.featured:hover {
    transform: translateY(-15px) scale(1);
}

.pricing-card.featured::after {
    content: '推荐';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    padding: 0.4rem 2.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 2rem;
    width: 100%;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.currency-unit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-left: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.pricing-features {
    width: 100%;
    flex: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: left;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0.5rem 0;
    font-style: italic;
    line-height: 1.8;
}

.pricing-note .extension-note {
    color: rgba(212, 175, 55, 0.9);
    font-size: 1rem;
    font-weight: 500;
    font-style: normal;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-note .extension-note:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

/* 联系我们 */
.contact {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.contact-whatsapp {
    margin-top: 1.5rem;
    text-align: left;
}

.contact-whatsapp .btn-whatsapp {
    display: inline-flex;
}

.phone-link,
.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.phone-link:hover,
.email-link:hover {
    color: #C5A028;
    border-bottom-color: #C5A028;
}

.address-en {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-text h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #C5A028;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    padding: 0.8rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-map {
    background: rgba(45, 45, 45, 0.5);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 500px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-map:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* 页脚 */
.footer {
    background: #0d0d0d;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    line-height: 1.2;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

.footer-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.6rem 0;
        min-height: 60px;
    }

    .navbar .container {
        align-items: center;
        position: relative;
    }

    .navbar .logo {
        flex: 0 0 auto;
        max-width: calc(100% - 120px);
    }

    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
        line-height: 1.1;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .burger {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .language-switcher {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 50px;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }

    .lang-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .hero {
        padding: 0 20px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.8rem;
    }

    .btn {
        width: 90%;
        max-width: 300px;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about {
        padding: 5rem 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .about-text p {
        text-align: left;
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-main-image {
        height: 300px;
        border-radius: 15px;
    }

    .features {
        grid-template-columns: 1fr;
        margin-top: 3rem;
        gap: 1.2rem;
    }

    .feature-item {
        min-height: 140px;
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .performance-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .pricing-header h3 {
        font-size: 1.4rem;
    }

    .amount {
        font-size: 3rem;
    }

    .currency {
        font-size: 1.3rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
        padding: 0.9rem 0;
    }

    .pricing-note p {
        font-size: 0.9rem;
    }

    .performance-card {
        margin-bottom: 1rem;
    }

    .performance-image {
        height: 220px;
    }

    .performance-info {
        padding: 1.5rem;
    }

    .performance-info h3 {
        font-size: 1.3rem;
    }

    .performance-info p {
        font-size: 0.95rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-overlay span {
        font-size: 1.2rem;
    }

    .event-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .event-date {
        min-width: auto;
    }

    .date-day {
        font-size: 2.5rem;
    }

    .date-month {
        font-size: 0.9rem;
    }

    .event-details h3 {
        font-size: 1.5rem;
    }

    .event-details p {
        font-size: 0.95rem;
    }

    .contact-map {
        height: 350px;
        padding: 0.5rem;
    }

    .info-item {
        margin-bottom: 2rem;
        text-align: center;
    }

    .info-text {
        text-align: center;
    }

    .info-text h4 {
        font-size: 1.2rem;
    }

    .info-text p {
        font-size: 0.95rem;
    }

    .contact-whatsapp {
        text-align: center;
    }

    .contact-whatsapp .btn-whatsapp {
        display: inline-flex;
        justify-content: center;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icon {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .footer-note {
        font-size: 0.85rem;
    }

    .section-cta {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .btn-whatsapp {
        width: 90%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
    }

    .navbar {
        padding: 0.5rem 0;
        min-height: 55px;
    }

    .navbar .container {
        position: relative;
    }

    .navbar .logo {
        max-width: calc(100% - 100px);
    }

    .nav-menu {
        top: 55px;
        padding: 1.5rem 0;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .language-switcher {
        right: 40px;
        gap: 0.25rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .lang-link {
        font-size: 0.7rem;
        padding: 0.25rem 0.4rem;
    }

    .burger {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .btn {
        width: 95%;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .title-underline {
        width: 80px;
    }

    .about {
        padding: 4rem 0;
    }

    .about-content {
        gap: 2rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-main-image {
        height: 240px;
        border-radius: 12px;
    }

    .features {
        margin-top: 2.5rem;
        gap: 1rem;
    }

    .feature-item {
        min-height: 130px;
        padding: 1.3rem 1rem;
    }

    .feature-icon {
        font-size: 2.8rem;
        margin-bottom: 0.6rem;
    }

    .feature-item h4 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .performances,
    .gallery,
    .events,
    .pricing,
    .contact {
        padding: 4rem 0;
    }

    .pricing-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .pricing-grid:has(.pricing-card:only-child) {
        max-width: 100%;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2rem 1.3rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2.8rem;
    }

    .currency {
        font-size: 1.2rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }

    .pricing-note {
        margin-top: 3rem;
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pricing-note p {
        font-size: 0.85rem;
    }

    .pricing-note .extension-note {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        margin-top: 1.2rem;
        display: block;
        text-align: left;
    }

    .pricing-note .extension-note:hover {
        transform: translateX(3px);
    }

    .pricing-card.featured::after {
        font-size: 0.75rem;
        padding: 0.3rem 2rem;
    }

    .performance-grid,
    .gallery-grid {
        gap: 1.2rem;
    }

    .performance-image {
        height: 200px;
    }

    .performance-info {
        padding: 1.3rem;
    }

    .performance-info h3 {
        font-size: 1.2rem;
    }

    .performance-info p {
        font-size: 0.9rem;
    }

    .performance-time {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .performance-overlay {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        top: 15px;
        right: 15px;
    }

    .gallery-overlay span {
        font-size: 1.1rem;
    }

    .event-item {
        padding: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .date-day {
        font-size: 2.2rem;
    }

    .date-month {
        font-size: 0.85rem;
    }

    .event-details h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .event-details p {
        font-size: 0.9rem;
    }

    .event-price {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-map {
        height: 280px;
        padding: 0.3rem;
        border-radius: 12px;
    }

    .info-item {
        margin-bottom: 1.8rem;
        text-align: center;
    }

    .info-text {
        text-align: center;
    }

    .info-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .info-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-whatsapp {
        text-align: center;
    }

    .contact-whatsapp .btn-whatsapp {
        display: inline-flex;
        justify-content: center;
    }

    .map-link {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-icon {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .footer {
        padding: 2.5rem 0;
    }

    .footer-logo {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .footer-note {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        width: 18px;
        height: 26px;
    }

    .section-cta {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .btn-whatsapp {
        width: 95%;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .whatsapp-icon {
        font-size: 1.2rem;
    }
}

/* 特别优化：超小屏幕（如iPhone SE） */
@media screen and (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.75rem 1.3rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-main-image {
        height: 220px;
    }

    .feature-item {
        padding: 1.2rem 0.9rem;
    }

    .performance-image {
        height: 180px;
    }

    .contact-map {
        height: 250px;
    }

    .pricing-card {
        padding: 1.8rem 1.2rem;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.1rem;
    }

    .pricing-card.featured::after {
        font-size: 0.7rem;
        padding: 0.3rem 1.8rem;
    }
}

/* 横屏优化 */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 20px 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .btn {
        padding: 1rem 2rem;
        min-height: 44px;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        min-height: 44px;
    }

    .gallery-item {
        -webkit-tap-highlight-color: transparent;
    }

    .social-icon,
    .map-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* 移动端性能优化 */
    .performance-card,
    .gallery-item,
    .feature-item,
    .event-item {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

/* 优先加载首屏内容 */
.hero {
    content-visibility: auto;
}

.about,
.performances,
.gallery,
.events,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

