/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* 导航栏样式 */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* 预订表单样式优化 */
.booking-form {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/top.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.booking-form h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-form form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin: 1rem;
    display: inline-block;
    text-align: left;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group select option {
    background: #333;
    color: #fff;
}

/* 主要内容区域样式 */
main section {
    padding: 4rem 5%;
    text-align: center;
}

main section h2 {
    margin-bottom: 1rem;
}

/* 页脚样式 */
footer {
    background: #292929;
    color: #fff;
    padding: 3rem 5% 1.5rem 5%;
    font-size: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    gap: 2rem;
}

.contact-info h3,
.social-links h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-info p {
    margin: 0.2rem 0;
    color: #e0e0e0;
    font-size: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #222;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(66,133,244,0.08);
    text-decoration: none;
}

.social-icons a:hover {
    background: #4285F4;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
}

.copyright {
    border-top: 1px solid #444;
    text-align: center;
    padding-top: 1.2rem;
    color: #bbb;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .social-links {
        align-items: center;
    }
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .booking-form {
        padding: 2rem 1rem;
    }

    .booking-form h2 {
        font-size: 2rem;
    }

    .booking-form form {
        padding: 1.5rem;
    }

    .form-group {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* 应用动画 */
.booking-form {
    animation: fadeIn 1s ease-in;
}

main section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-out;
}

main section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 悬停效果 */
.nav-links a {
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s;
}

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

/* 预订按钮样式优化 */
.book-now-btn {
    display: inline-block;
    padding: 1rem 3rem;
    margin-top: 2rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    background: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Logo样式 */
.logo h1 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

/* 图片部分样式 */
.section-with-image {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 4rem 5%;
}

.image-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    height: 400px;
    min-width: 350px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

/* 设施列表样式 */
.amenities-list {
    list-style: none;
    margin: 1rem 0;
}

.amenities-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

/* 图片画廊样式 */
.gallery-section {
    padding: 4rem 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .section-with-image {
        flex-direction: column;
        align-items: stretch;
    }
    .image-container {
        width: 100%;
        min-width: 0;
        height: 250px;
    }
    .image-container img {
        height: 250px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* 地图按钮样式 */
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-top: 1rem;
    background: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.map-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.map-btn i {
    font-size: 1.2rem;
}

/* 语言切换按钮样式 */
.language-switch {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.lang-btn {
    padding: 5px 10px;
    border: 1px solid #333;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #333;
    color: #fff;
}

.lang-btn:hover {
    background: #333;
    color: #fff;
}

/* 图片容器叠加内容样式 */
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.image-container:hover .overlay-content {
    opacity: 1;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-container:hover .explore-btn {
    transform: translateY(-3px);
}

.explore-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.explore-btn i {
    font-size: 1.4rem;
}

/* Amenities 部分样式 */
.amenities-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

.amenities-intro {
    font-size: 1.1rem;
    color: #4285F4;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.amenities-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: start;
}

.amenity-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(66, 133, 244, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 1.2rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #f0f4fa;
}

.amenity-card:hover {
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.18), 0 3px 12px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.03);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285F4 60%, #90caf9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.icon-circle i {
    color: #fff;
    font-size: 2rem;
}

.amenity-card h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.amenity-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media screen and (max-width: 1200px) {
    .amenities-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .amenities-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.room-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(66, 133, 244, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 1.5rem 2rem;
    gap: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.room-row:hover {
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.18), 0 3px 12px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.02);
}

.room-name {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    text-align: left;
    padding-left: 1rem;
}

.room-picture {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.room-picture img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.10);
}

.room-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.room-action .book-now-btn {
    margin-top: 0;
    padding: 0.8rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 900px) {
    .room-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem 1rem;
    }
    .room-name, .room-action {
        padding-left: 0;
        justify-content: center;
    }
    .room-picture img {
        width: 100%;
        max-width: 320px;
        height: 180px;
    }
}

.rooms-two-columns {
    padding: 4rem 5%;
    text-align: center;
}

.rooms-two-columns h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rooms-intro {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.rooms-columns {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.room-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.10), 0 3px 12px rgba(0,0,0,0.06);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    min-width: 340px;
    max-width: 520px;
}

.room-card:hover {
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.18), 0 3px 12px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.03);
}

.room-card img {
    width: 100%;
    max-width: 520px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.13);
}

.room-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.room-card p {
    color: #666;
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.room-card .book-now-btn {
    margin-top: auto;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
}

@media screen and (max-width: 1200px) {
    .rooms-columns {
        gap: 2rem;
    }
    .room-card {
        min-width: 260px;
        max-width: 95vw;
        padding: 2rem 1.2rem 1.5rem 1.2rem;
    }
    .room-card img {
        max-width: 100%;
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .rooms-columns {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .room-card {
        min-width: 0;
        max-width: 95vw;
        width: 100%;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
} 