* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Serif SC', serif;
            background-color: #f5f1e8;
            color: #333;
            line-height: 1.6;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%23d4b483" stroke-width="0.5" opacity="0.3"/></svg>');
        }
        
        .container {
            display: grid;
            grid-template-areas: 
                "header header"
                "nav main"
                "footer footer";
            grid-template-columns: 220px 1fr;
            grid-template-rows: auto 1fr auto;
            min-height: 100vh;
            max-width: 1500px;
            margin: 0 auto;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            background-color: #fffef9;
        }
        
        /* 头部样式 */
        header {
            grid-area: header;
            background: linear-gradient(to right, #8b1a1a, #b22222);
            color: #f5f1e8;
            padding: 20px;
            border-bottom: 8px solid #d4b483;
            position: relative;
            overflow: hidden;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            margin-right: 15px;
            color: #d4b483;
        }
        
        .hotel-name {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 2.8rem;
            letter-spacing: 4px;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
        }
        
        .hotel-subtitle {
            font-size: 1.2rem;
            letter-spacing: 8px;
            margin-top: 5px;
            opacity: 0.9;
            text-align: center;
        }
        
        .header-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background: repeating-linear-gradient(90deg, #d4b483, #d4b483 10px, #8b1a1a 10px, #8b1a1a 20px);
        }
        
        /* 导航样式 */
        nav {
            grid-area: nav;
            background-color: #2f4f2f;
            padding: 25px 15px;
            border-right: 5px solid #d4b483;
        }
        
        .nav-title {
            color: #d4b483;
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4b483;
        }
        
        .nav-menu {
            list-style: none;
        }
        
        .nav-menu li {
            margin-bottom: 15px;
        }
        
        .nav-menu a {
            display: block;
            color: #f5f1e8;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        
        .nav-menu a:hover, .nav-menu a.active {
            background-color: #3a5f3a;
            border-left: 4px solid #d4b483;
            color: #d4b483;
            transform: translateX(5px);
        }
        
        .nav-icon {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* 主要内容区样式 */
        main {
            grid-area: main;
            padding: 30px;
            background-color: #fffef9;
        }
        
        .page-title {
            font-family: 'Ma Shan Zheng', cursive;
            color: #8b1a1a;
            font-size: 2.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px double #d4b483;
            text-align: center;
        }
        
        .welcome-section {
            display: flex;
            margin-bottom: 30px;
            background-color: #f9f5f0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .welcome-text {
            flex: 1;
            padding: 25px;
        }
        
        .welcome-text h2 {
            color: #2f4f2f;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .welcome-image {
            flex: 1;
            background: linear-gradient(rgba(139, 26, 26, 0.1), rgba(139, 26, 26, 0.1)), url(../images/10.jpg);
            background-size: cover;
            background-position: center;
            min-height: 300px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .feature-card {
            background-color: #f9f5f0;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            border-top: 5px solid #d4b483;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #8b1a1a;
            margin-bottom: 15px;
        }
        
        .feature-card h3 {
            color: #2f4f2f;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .booking-prompt {
            background: linear-gradient(to right, #8b1a1a, #b22222);
            color: #f5f1e8;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(139, 26, 26, 0.2);
        }
        
        .booking-prompt h2 {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: #d4b483;
            color: #2f4f2f;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: all 0.3s;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e6c9a0;
            transform: scale(1.05);
        }
        
        /* 页脚样式 */
        footer {
            grid-area: footer;
            background-color: #2f4f2f;
            color: #f5f1e8;
            padding: 25px;
            text-align: center;
            border-top: 8px solid #d4b483;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            color: #d4b483;
            margin-bottom: 15px;
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 1.4rem;
        }
        
        .copyright {
            width: 100%;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #3a5f3a;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-icon {
            margin-right: 10px;
            color: #d4b483;
        }
        /* 响应式设计 */
        @media (max-width: 768px) {
            .container {
                grid-template-areas: 
                    "header"
                    "nav"
                    "main"
                    "footer";
                grid-template-columns: 1fr;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .welcome-section {
                flex-direction: column;
            }
            
            .welcome-image {
                min-height: 200px;
            }
        }
        
        /* 古风装饰元素 */
        .decoration-border {
            position: relative;
            padding: 15px;
            margin: 20px 0;
        }
        
        .decoration-border:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, #d4b483, transparent);
        }
        
        .decoration-border:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, #d4b483, transparent);
        }