/* 重置和基本样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #8a0707;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

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

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-menu i {
    margin-right: 5px;
}

.search-bar {
    display: flex;
}

.search-bar input {
    padding: 8px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 200px;
}

.search-bar button {
    padding: 8px 15px;
    background-color: #d4a017;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #b88715;
}

/* Banner样式 */
.home-banner-section {
    margin-top: 100px;
    position: relative;
}


.home-banner {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/主页bannner.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    }

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.btn {
    display: inline-block;
    background-color: #d4a017;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b88715;
}

.btn-secondary {
    background-color: #8a0707;
}

.btn-secondary:hover {
    background-color: #6a0505;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.page-banner {
    margin-top: 100px;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../img/主页bannner.jpg'); /* 修改这里 */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner-content p {
    font-size: 1.3rem;
}

/* 详情页Banner */
.detail-banner {
    margin-top: 100px;
    height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/龙3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.detail-banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.detail-banner-content p {
    font-size: 1.5rem;
}

/* 部分标题 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8a0707;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4a017;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 介绍部分 */
.intro-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.intro-text {
    flex: 2;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-video {
    flex: 1;
}

.video-placeholder {
    height: 200px;
    background-color: #eee;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-icon {
    font-size: 4rem;
    color: #8a0707;
    margin-bottom: 15px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.video-desc {
    color: #666;
    font-style: italic;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #8a0707;
    margin-bottom: 5px;
}

.stat p {
    font-size: 1rem;
    color: #666;
}

/* 轮播图 */
.longmen-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.slider-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.slider {
    position: relative;
    margin: 0 auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    font-size: 1.2rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

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

/* 景点展示 */
.other-attractions-section {
    padding: 80px 0;
}

.attraction-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.attraction-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.attraction-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.attraction-card:hover .attraction-img img {
    transform: scale(1.05);
}

.attraction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 7, 7, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.attraction-card:hover .attraction-overlay {
    opacity: 1;
}

.attraction-info {
    padding: 20px;
}

.attraction-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8a0707;
}

.attraction-info p {
    color: #666;
    margin-bottom: 15px;
}

.attraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* 文化部分 */
.culture-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.highlight-icon {
    font-size: 3rem;
    color: #8a0707;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

.culture-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.culture-item.reverse {
    flex-direction: row-reverse;
}

.culture-img {
    flex: 1;
}

.culture-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.culture-text {
    flex: 1;
}

.culture-text h3 {
    font-size: 1.8rem;
    color: #8a0707;
    margin-bottom: 20px;
}

.culture-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* 节庆部分 */
.festival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.festival-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.festival-img {
    height: 200px;
}

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

.festival-info {
    padding: 20px;
}

.festival-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8a0707;
}

.festival-time {
    color: #d4a017;
    font-weight: bold;
    margin-bottom: 15px;
}

.festival-info p {
    color: #666;
    line-height: 1.6;
}

/* 美食部分 */
.food-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.food-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.food-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.food-card:hover .food-img img {
    transform: scale(1.05);
}

.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 7, 7, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.food-card:hover .food-overlay {
    opacity: 1;
}

.food-info {
    padding: 20px;
}

.food-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8a0707;
}

.food-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.food-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 美食地图 */
.food-map {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.map-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.map-text {
    flex: 2;
}

.map-text h3 {
    font-size: 1.8rem;
    color: #8a0707;
    margin-bottom: 20px;
}

.map-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.map-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.map-placeholder {
    flex: 1;
    height: 300px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

.map-placeholder:hover .map-image {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 7, 7, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.map-placeholder:hover .map-overlay {
    opacity: 1;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.map-overlay p {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}
/* 详情页内容 */
.detail-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.detail-text {
    flex: 2;
}

.detail-text h2 {
    font-size: 2rem;
    color: #8a0707;
    margin-bottom: 20px;
}

.detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.detail-info-card {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-info-card h3 {
    font-size: 1.5rem;
    color: #8a0707;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a017;
}

.detail-info-card ul {
    list-style: none;
}

.detail-info-card li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.detail-info-card li:last-child {
    border-bottom: none;
}

.detail-info-card strong {
    color: #333;
}

/* 特色景点 */
.feature-spots {
    margin-bottom: 60px;
}

.feature-spots h2 {
    font-size: 2rem;
    color: #8a0707;
    margin-bottom: 40px;
    text-align: center;
}

.spot-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.spot-item.reverse {
    flex-direction: row-reverse;
}

.spot-img {
    flex: 1;
}

.spot-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spot-text {
    flex: 1;
}

.spot-text h3 {
    font-size: 1.8rem;
    color: #8a0707;
    margin-bottom: 20px;
}

.spot-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* 旅游贴士 */
.travel-tips {
    margin-bottom: 60px;
}

.travel-tips h2 {
    font-size: 2rem;
    color: #8a0707;
    margin-bottom: 40px;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.tip-icon {
    font-size: 2.5rem;
    color: #8a0707;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* 交通信息 */
.transport-info {
    margin-bottom: 60px;
}

.transport-info h2 {
    font-size: 2rem;
    color: #8a0707;
    margin-bottom: 40px;
    text-align: center;
}

.transport-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.transport-text {
    flex: 2;
}

.transport-text h3 {
    font-size: 1.8rem;
    color: #8a0707;
    margin-bottom: 20px;
}

.transport-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.transport-map {
    flex: 1;
    height: 300px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 返回链接 */
.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* 预览部分 */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.preview-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

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

.preview-img {
    height: 250px;
    overflow: hidden;
}

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

.preview-card:hover .preview-img img {
    transform: scale(1.05);
}

.preview-info {
    padding: 20px;
}

.preview-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8a0707;
}

.preview-info p {
    color: #666;
}

/* 底部信息 */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 2.2rem;
}

.footer-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #d4a017;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu li {
        margin: 0 10px;
    }
    
    .search-bar input {
        width: 150px;
    }
}

@media (max-width: 992px) {
    .intro-content,
    .detail-intro,
    .culture-item,
    .spot-item,
    .map-content,
    .transport-content {
        flex-direction: column;
    }
    
    .attraction-row,
    .food-row {
        flex-direction: column;
    }
    
    .culture-item.reverse,
    .spot-item.reverse {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
    }
    
    .navbar .search-bar {
        display: none;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .page-banner-content h1,
    .detail-banner-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 80px;
    }
    
    .home-banner-section {
        margin-top: 80px;
    }
    
    .home-banner {
        height: 400px;
    }
    
    .page-banner,
    .detail-banner {
        margin-top: 80px;
        height: 250px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slide img {
        height: 400px;
    }
}

/* 深色模式切换按钮 */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8a0707;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(-90deg);
}

.theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

/* 深色模式样式 */
body.dark-mode {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

body.dark-mode .navbar {
    background-color: #16213e;
}

body.dark-mode .nav-menu a {
    color: #e0e0e0;
}

body.dark-mode .nav-menu a:hover,
body.dark-mode .nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .search-bar input {
    background-color: #0f3460;
    color: #e0e0e0;
    border: 1px solid #0f3460;
}

body.dark-mode .search-bar input::placeholder {
    color: #999;
}

body.dark-mode .search-bar button {
    background-color: #e94560;
}

body.dark-mode .section-title {
    color: #e94560;
}

body.dark-mode .section-subtitle {
    color: #b0b0b0;
}

body.dark-mode .intro-section,
body.dark-mode .culture-intro,
body.dark-mode .food-intro,
body.dark-mode .detail-content {
    background-color: #1a1a2e;
}

body.dark-mode .intro-text p,
body.dark-mode .culture-text p,
body.dark-mode .spot-text p,
body.dark-mode .detail-text p {
    color: #c0c0c0;
}

body.dark-mode .stats {
    background-color: #16213e;
}

body.dark-mode .stat h3 {
    color: #e94560;
}

body.dark-mode .stat p {
    color: #b0b0b0;
}

body.dark-mode .video-placeholder {
    background-color: #16213e;
}

body.dark-mode .video-desc {
    color: #b0b0b0;
}

body.dark-mode .preview-section,
body.dark-mode .other-attractions-section,
body.dark-mode .featured-food,
body.dark-mode .culture-details {
    background-color: #1a1a2e;
}

body.dark-mode .preview-card,
body.dark-mode .attraction-card,
body.dark-mode .food-card,
body.dark-mode .highlight-card,
body.dark-mode .festival-card,
body.dark-mode .tip-card {
    background-color: #16213e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .preview-info,
body.dark-mode .attraction-info,
body.dark-mode .food-info,
body.dark-mode .festival-info {
    background-color: #16213e;
}

body.dark-mode .preview-info h3,
body.dark-mode .attraction-info h3,
body.dark-mode .food-info h3,
body.dark-mode .festival-info h3,
body.dark-mode .highlight-card h3,
body.dark-mode .tip-card h3,
body.dark-mode .culture-text h3,
body.dark-mode .spot-text h3 {
    color: #e94560;
}

body.dark-mode .preview-info p,
body.dark-mode .attraction-info p,
body.dark-mode .food-info p,
body.dark-mode .festival-info p,
body.dark-mode .highlight-card p,
body.dark-mode .tip-card p {
    color: #b0b0b0;
}

body.dark-mode .tag {
    background-color: #0f3460;
    color: #e0e0e0;
}

body.dark-mode .highlight-icon,
body.dark-mode .tip-icon {
    color: #e94560;
}

body.dark-mode .longmen-section,
body.dark-mode .festival-section,
body.dark-mode .food-map {
    background-color: #16213e;
}

body.dark-mode .slider-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

body.dark-mode .slide-caption {
    background-color: rgba(0, 0, 0, 0.8);
}

body.dark-mode .btn {
    background-color: #e94560;
}

body.dark-mode .btn:hover {
    background-color: #c73e54;
}

body.dark-mode .btn-secondary {
    background-color: #16213e;
    border: 2px solid #e94560;
}

body.dark-mode .btn-secondary:hover {
    background-color: #e94560;
}

body.dark-mode footer {
    background-color: #0f3460;
}

body.dark-mode .footer-content p,
body.dark-mode .footer-links a,
body.dark-mode .copyright {
    color: #b0b0b0;
}

body.dark-mode .footer-links a:hover {
    color: #e94560;
}

body.dark-mode .detail-info-card {
    background-color: #16213e;
}

body.dark-mode .detail-info-card h3 {
    color: #e94560;
    border-bottom-color: #e94560;
}

body.dark-mode .detail-info-card li {
    border-bottom-color: #0f3460;
    color: #c0c0c0;
}

body.dark-mode .detail-info-card strong {
    color: #e0e0e0;
}

body.dark-mode .detail-text h2,
body.dark-mode .feature-spots h2,
body.dark-mode .travel-tips h2,
body.dark-mode .transport-info h2 {
    color: #e94560;
}

body.dark-mode .transport-text p,
body.dark-mode .transport-text h3 {
    color: #c0c0c0;
}

body.dark-mode .transport-text h3 {
    color: #e94560;
}

body.dark-mode .map-placeholder,
body.dark-mode .transport-map {
    background-color: #0f3460;
}

body.dark-mode .map-icon,
body.dark-mode .transport-map i {
    color: #e94560;
}

body.dark-mode .map-text h3 {
    color: #e94560;
}

body.dark-mode .map-text p,
body.dark-mode .map-text li {
    color: #c0c0c0;
}

body.dark-mode .festival-time {
    color: #e94560;
}

body.dark-mode .culture-img img,
body.dark-mode .spot-img img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* 深色模式下的切换按钮样式 */
body.dark-mode .theme-toggle {
    background-color: #e94560;
}

body.dark-mode .theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

body.dark-mode .theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(90deg);
}
