/* ===== 基础样式 ===== */
:root {
    --primary: #b8860b;         /* 金色主色调 */
    --primary-light: #d4af37;   /* 浅金色 */
    --primary-dark: #8b6914;    /* 深金色 */
    --secondary: #1a2b48;       /* 深蓝色 */
    --light: #ffffff;           /* 白色 */
    --dark: #0b1221;            /* 黑蓝色 */
    --gray-light: #f8f9fa;      /* 浅灰色 */
    --gray: #e9ecef;            /* 灰色 */
    --gray-dark: #6c757d;       /* 深灰色 */
    --text: #333333;            /* 文本颜色 */
    --text-light: #777777;      /* 浅文本颜色 */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    --font-heading: 'Playfair Display', serif;
    --font-primary: 'Woodford Bourne Pro', 'Helvetica', sans-serif;
    --font-body: 'Woodford Bourne Pro', 'Helvetica', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: var(--font-primary);
}

/* 预加载动画 */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    z-index: 9999;
    display: none; /* 直接设置为不显示 */
}

.preloader-content {
    text-align: center;
    font-family: var(--font-primary);
}

.luxury-letter {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #8f1a1f;
    margin-bottom: 20px;
    opacity: 0;
    letter-spacing: 2px;
    white-space: nowrap;
}

.loader-line {
    width: 200px;
    height: 3px;
    background-color: rgba(143, 26, 31, 0.2);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loader-line span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #8f1a1f;  /* 更改为主题红色 */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes lineMove {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* 添加缺失的动画关键帧 */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* 导航样式 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    padding: 15px 0;
    background-color: var(--light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-right: 12px;
}

.logo h1 {
    color: var(--light);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
}

header.scrolled .logo h1 {
    color: var(--secondary);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    position: relative;
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
}

header.scrolled nav ul li a {
    color: var(--secondary);
}

nav ul li a span {
    position: relative;
    z-index: 2;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

.header-cta .btn {
    padding: 10px 20px;
}

/* 英雄区样式 */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.9;
}

.hero-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    color: var(--light);
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    font:Arial;
}


.hero-content h2 {

    font:Arial;
}


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

.scroll-down a {
    color: var(--light);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-down a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.scroll-down span {
    margin-bottom: 10px;
}

.scroll-down i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-social {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    z-index: 2;
}

.hero-social a {
    color: var(--light);
    font-size: 18px;
    margin-left: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.hero-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--primary);
}

/* 酒店展示区样式 - 左中右结构 */
.hotels-section {
    padding: 100px 0;
    background-color: var(--gray-light);
    position: relative;
}

.section-header {
    margin-bottom: 50px;
    padding: 20px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 30px;
    text-align: center;
}

.header-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.text-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.text-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #333;
}

.text-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
}

/* 酒店布局 - 左中右结构 */
.hotels-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hotels-left, .hotels-right {
    display: flex;
    flex-direction: column;
    gap: 30px; /* 确保左右两列垂直间距一致 */
}

/* 调整左侧酒店布局，两个酒店高度增加 */
.hotels-left .hotel-item {
    flex: 1;
    min-height: 420px; /* 调整统一酒店高度 */
}

.hotels-left .hotel-image {
    height: 240px; /* 统一酒店图片高度 */
}

/* 左侧酒店的空白减少 */
.hotels-left .hotel-info {
    padding: 15px; /* 减小内边距 */
}

.hotels-left .hotel-actions {
    padding: 12px; /* 减小按钮区域内边距 */
    margin-top: 5px; /* 减少顶部间距 */
}

.hotels-left .hotel-tags {
    margin: 10px 0; /* 减少上下边距 */
}

/* 调整右侧酒店布局，三个酒店高度减小 */
.hotels-right .hotel-item {
    flex: 1;
    min-height: 420px; /* 统一酒店高度 */
    display: flex;
    flex-direction: column;
}

.hotels-right .hotel-image {
    height: 240px; /* 统一酒店图片高度 */
}

.hotels-right .hotel-info {
    padding: 15px; /* 统一内边距 */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotels-right .hotel-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px; /* 调整标题下方间距 */
    line-height: 1.3;
}

.hotels-right .hotel-location,
.hotels-right .hotel-contact p {
    margin-bottom: 6px; /* 调整间距 */
    font-size: 0.9rem; /* 调整字体大小 */
}

.hotels-right .hotel-tags {
    margin: 10px 0; /* 统一标签区域的上下边距 */
    gap: 8px; /* 标签之间的间距 */
}

.hotels-right .hotel-tags span {
    padding: 5px 12px; /* 调整标签内边距 */
    font-size: 0.85rem; /* 调整标签字体 */
}

.hotels-right .hotel-actions {
    padding: 12px; /* 统一按钮区域的内边距 */
    gap: 8px; /* 按钮与通知之间的间距 */
}

.hotels-right .btn-hotel {
    padding: 8px 20px; /* 按钮内边距 */
    font-size: 0.9rem; /* 按钮文字大小 */
}

.hotels-right .event-code-notice {
    padding: 5px 10px; /* 事件代码通知内边距 */
    font-size: 0.8em; /* 字体大小 */
    margin-bottom: 0; /* 移除底部边距 */
}

/* 右侧酒店通用间距压缩 */
.hotels-right > div:not(:last-child) {
    margin-bottom: 0; /* 移除额外的底部边距，因为已经使用了gap属性 */
}

.hotel-item {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 500px;  /* 减小最小高度 */
}

.hotel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hotel-image {
    height: 240px;  /* 增加图片高度 */
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 8px 8px 0 0;
}

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

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

.hotel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(143, 26, 31, 0.9);  /* 使用带透明度的红色 */
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-primary);
}

.hotel-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.hotel-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hotel-rating .stars {
    color: #8f1a1f;  /* 统一使用红色主题色 */
    margin-right: 10px;
}

.hotel-rating span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.hotel-rating span i {
    color: #8f1a1f;
    margin-right: 6px;
}

.hotel-location, 
.hotel-contact,
.hotel-tags {
    margin-bottom: 10px;  /* 统一边距 */
}

.hotel-location, 
.hotel-contact p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.hotel-location i,
.hotel-contact i {
    color: #8f1a1f;  /* 统一图标颜色 */
    width: 20px;
    margin-right: 8px;
}

.hotel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.hotel-tags span {
    background: #f8f8f8;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
}

.hotel-tags span i {
    color: #8f1a1f;  /* 统一图标颜色 */
    margin-right: 6px;
}

.hotel-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.hotel-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.hotel-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;  /* 居中对齐 */
    gap: 12px;
    padding: 15px;
    background: white;
    text-align: center;  /* 文字居中 */
}

.btn-hotel {
    display: inline-block;
    padding: 10px 25px;
    background: #8f1a1f;
    color: white !important;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.btn-hotel:hover {
    background: #701418;
    transform: translateY(-2px);
}

.event-code-notice {
    font-size: 0.9em;
    line-height: 1.2;
    padding: 8px 15px;  /* 增加左右内边距 */
    margin-bottom: 5px;
    color: #8f1a1f;
    position: relative;
    z-index: 2;
    background-color: #fff8f8;
    width: 100%;
    text-align: center;  /* 文字居中 */
    border-radius: 4px;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* 联系信息容器样式 */
.hotel-contact {
    margin: 6px 0;
    font-family: var(--font-primary);
}

/* 联系信息行样式 - 使电话和邮箱在同一行 */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

/* 针对左侧酒店的联系信息调整 */
.hotels-left .contact-row {
    flex-direction: column;
    gap: 5px;
}

/* 针对右侧酒店的联系信息调整 - 改为与左侧相同的垂直排列 */
.hotels-right .contact-row {
    flex-direction: column;
    gap: 5px;
}

.hotels-right .contact-row p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.hotels-right .contact-row p i {
    width: 20px;
    margin-right: 8px;
    color: #8f1a1f;
}

.hotels-right .contact-row p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotels-right .contact-row p a:hover {
    color: #8f1a1f;
}

.hotel-contact p {
    margin: 4px 0;
    display: flex;
    align-items: center;
}

/* 邮件链接样式 */
.hotel-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotel-contact a:hover {
    color: #8f1a1f;
}

/* 地图容器 */
.map-container {
    position: relative;
    height: 100%;
    min-height: 600px; /* 进一步减少地图高度 */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

#map {
    width: 100%;
    height: 100%;
    min-height: 600px; /* 地图最小高度 */
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    z-index: 2;
}

.map-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.map-overlay p {
    font-size: 14px;
    color: var(--text-light);
}

/* 关于我们 */
.about-section {
    padding: 100px 0;
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    top: -20px;
    left: -20px;
    border-radius: 10px;
    z-index: -1;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    margin-bottom: 0;
}

/* 联系我们 */
.contact-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.contact-info {
    padding: 20px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-light);
}

.social-media {
    display: flex;
    margin-top: 40px;
}

.social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

/* 页脚 */
footer {
    background-color: var(--secondary);
    color: var(--gray);
    padding: 80px 0 30px;
    font-family: var(--font-primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    display: block;
    margin: 0 auto 20px;
}

.footer-logo h2 {
    color: var(--light);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-description {
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--light);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    margin-bottom: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

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

.newsletter h4 {
    color: var(--light);
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter form {
    display: flex;
    height: 45px;
}

.newsletter input {
    flex: 1;
    padding: 0 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-primary);
}

.newsletter button {
    width: 45px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    width: 100%;
}

/* AOS动画自定义 */
[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(50px);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hotels-layout {
        grid-template-columns: 1fr 1.2fr 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1400px) {
    .text-content h2 {
        font-size: 38px;
        white-space: normal;
    }
}

@media (max-width: 992px) {
    .hotels-layout {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .hotels-left, .hotels-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .map-container {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image:before {
        display: none;
    }

    .header-content {
        gap: 30px;
    }

    .logo-container {
        width: 350px;
    }

    .header-logo {
        height: 140px;
    }

    .text-content h2 {
        font-size: 34px;
    }

    .marco-polo-wrapper {
        padding: 0 20px;
    }
    
    .marco-polo-wrapper .hotel-item {
        max-width: 100%;
    }

    .hotels-left .hotel-item,
    .hotels-right .hotel-item {
        min-height: 400px; /* 在平板上统一酒店高度 */
    }
    
    .hotels-left .hotel-image,
    .hotels-right .hotel-image {
        height: 220px; /* 在平板上统一图片高度 */
    }
    
    .hotels-left .contact-row,
    .hotels-right .contact-row {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    nav ul {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hotels-left, .hotels-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hotels-left .hotel-item,
    .hotels-right .hotel-item {
        min-height: 450px;  /* 移动端统一高度 */
    }

    .hotels-left .hotel-image,
    .hotels-right .hotel-image {
        height: 220px;  /* 移动端统一图片高度 */
    }

    .hotels-left .hotel-info,
    .hotels-right .hotel-info {
        padding: 15px;
    }
    
    .hotels-left .contact-row,
    .hotels-right .contact-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .hotels-left .contact-row p,
    .hotels-right .contact-row p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .hotels-left .hotel-actions,
    .hotels-right .hotel-actions {
        padding: 12px 15px;  /* 保持左右内边距 */
    }
    
    .hotels-left .hotel-info h3,
    .hotels-right .hotel-info h3 {
        font-size: 1.1rem;
    }
    
    .hotels-left .hotel-tags span,
    .hotels-right .hotel-tags span {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .event-code-notice {
        font-size: 0.85em;
        padding: 6px 15px;  /* 保持左右内边距 */
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo-container {
        width: 300px;
    }

    .header-logo {
        height: 100px;
    }

    .text-content h2 {
        font-size: 20px;
    }

    .text-content p {
        font-size: 15px;
    }
} 