/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* 导航栏 */
nav {
    background: #f8e1e9;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav img.logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    color: #d81b60;
}

/* 通用容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Banner */
.banner {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.banner h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 案例展示 */
.cases {
    padding: 50px 0;
    text-align: center;
}

.cases h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* 客户评价 */
.reviews {
    background: #f8e1e9;
    padding: 50px 0;
    text-align: center;
}

.reviews h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.review-item {
    margin: 20px auto;
    max-width: 600px;
    font-style: italic;
}

/* 关于我们摘要 */
.about-summary {
    padding: 50px 0;
    text-align: center;
}

.about-summary h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

/* 页脚 */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* 关于我们、联系我们等页面 */
.page-content {
    padding: 100px 0;
    text-align: center;
}

.page-content h1 {
    margin-bottom: 20px;
    font-size: 36px;
}

/* 预定表单 */
.booking-form {
    max-width: 600px;
    margin: 100px auto;
    text-align: left;
}

.booking-form h1 {
    text-align: center;
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin: 10px 0 5px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking-form button {
    background: #d81b60;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.booking-form button:hover {
    background: #b0003a;
}

/* 设计师页面 */
.designers {
    padding: 100px 0;
    text-align: center;
}

.designers h1 {
    margin-bottom: 30px;
    font-size: 36px;
}

.designer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.designer-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}