/* 首页模块样式 */

/* 顶部导航栏 */
header {
    width: 100%;
    background: #d6992e;
    margin: 0 auto;
}

/* LOGO区域 */
.logo-section {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-section img {
    height: 60px;
    margin-bottom: 5px;
}



/* 主导航菜单 */
.main-nav {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Alibaba PuHuiTi 2.0', Arial, sans-serif;
    font-weight: 300;
    text-align: center;
    padding-bottom: 5px;
    position: relative;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

/* 主图区域 */
.hero-section {
    position: relative;
    height: 900px;
    overflow: hidden;
}

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

/* 查询表单 */
.booking-form {
    position: absolute;
    right: 5%;
    top: 10%;
    padding: 30px;
    color: #fff;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #fff;
}

/* 只影响顶部预订表单 */
.booking-form .form-group input[type="text"],
.booking-form .form-group select {
    width: 320px;
    height: 48px;
    background: transparent;
    border: 1px solid #dfe2e7;
    color: #fff;
    padding: 0 15px;
    font-size: 14px;
    cursor: pointer;
}

.booking-form .form-group input[type="text"]::placeholder,
.booking-form .form-group select::placeholder {
    color: #fff;
}

.booking-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L0 3h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

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

.search-btn {
    width: 320px;
    height: 48px;
    background-color: #d6992e;
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: 'Alibaba PuHuiTi 2.0', Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    margin-top: 10%;
}

/* 酒店名称和介绍 */
.hotel-name-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    margin-top: 80px;
}

.hotel-name-section h1 {
    font-size: 36px;
    color: #d6992e;
    margin-bottom: 20px;
}

.hotel-name-section p {
    font-size: 16px;
    font-family: 'Alibaba PuHuiTi 2.0', 'Alibaba PuHuiTi 2.0-300';
    font-weight: 300;
    text-align: center;
    color: #000000;
    line-height: 28px;
    width: 1200px;
    margin: 0 auto;
    height: 84px;
}

.home-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

.home-intro-content p {
    width: auto;
    height: auto;
    margin: 0;
}

/* 服务图标区域 */
.services {
    padding: 60px 20px;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e0e0e0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
}

.service-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}