@charset "utf-8";
/* CSS Document */
 
        :root {
            --lavender-dark: #7e6baf;
            --lavender-medium: #a394d4;
            --lavender-light: #e2d9f3;
            --text-color: #333333;
            --section-bg: #f9f7fd;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: white;
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 80px; /* 为固定头部添加内边距 */
        }
        
        /* 头部样式 */
        header {
            background-color: rgba(255, 255, 255, 0.98);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(126, 107, 175, 0.1);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--lavender-dark);
        }
        
        .logo span {
            color: var(--lavender-medium);
        }
        
        /* 桌面导航 */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav ul li {
            margin-left: 25px;
        }
        
        .desktop-nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .desktop-nav ul li a:hover {
            color: var(--lavender-dark);
        }
        
        /* 移动菜单 */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--lavender-dark), var(--lavender-medium), var(--lavender-dark));
            background-size: 200% 100%;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            animation: gradientMove 3s infinite;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-menu ul li {
            margin: 20px 0;
        }
        
        .mobile-menu ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 24px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-menu ul li a:hover {
            color: var(--lavender-dark);
        }
        
        .close-menu {
            
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 40px;
            cursor: pointer;
        }
        
        /* 英雄区域 */
        .hero {
            height: 70vh;
            background: linear-gradient(rgba(126, 107, 175, 0.7), rgba(163, 148, 212, 0.7)),  url('../images/hero1.jpg');
			 background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: white;
        }
        
        .cta-button {
            display: inline-block;
            background-color: white;
            color: var(--lavender-dark);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: var(--lavender-light);
        }
        
        /* 内容区域 */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--lavender-dark);
            font-size: 36px;
        }
        
        .about-content {
            background-color: var(--section-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(126, 107, 175, 0.1);
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        /* 按摩师区域 */
        .models-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .model-card {
            display: flex;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(126, 107, 175, 0.1);
        }
        
        .model-image {
           
            height: 500px;
            object-fit: cover;
        }
        
        .model-info {
            padding: 30px;
            flex: 1;
        }
        
        .model-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--lavender-dark);
        }
        
        .model-nationality {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--lavender-medium);
        }
        
        .price-list {
            margin-top: 25px;
        }
        
        .price-list h3 {
            color: var(--lavender-dark);
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .service-name {
            font-weight: 500;
        }
        
        .service-price {
            color: var(--lavender-medium);
            font-weight: bold;
        }
        
        /* 热门区域 */
        .popular-areas {
            margin-top: 50px;
        }
        
        .popular-areas h3 {
            color: var(--lavender-dark);
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .area-card {
            background-color: var(--section-bg);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-card h4 {
            color: var(--lavender-medium);
            margin-bottom: 10px;
        }
        
        /* 页脚 */
        footer {
            background-color: var(--lavender-dark);
            padding: 40px 0;
            text-align: center;
            color: white;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }
        
        .copyright {
            margin-top: 20px;
            color: var(--lavender-light);
        }
        
        /* Fixed Social Buttons */
        .social-buttons {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }

        .social-drawer {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .social-buttons:hover .social-drawer {
            transform: translateY(0);
            opacity: 1;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, background-color 0.3s;
        }

        .social-btn.telegram {
            background-color: #0088cc;
        }

        .social-btn.call {
            background-color: #25D366;
        }

        .social-btn:hover {
            transform: scale(1.1);
        }

        .social-trigger {
            width: 60px;
            height: 60px;
            border-radius: 30px;
            background: #927ccb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(44, 95, 122, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            padding: 10px;
            text-align: center;
            line-height: 1.2;
        }

        .social-trigger:hover {
            width: 120px;
            border-radius: 30px;
        }

        .social-trigger span {
            position: absolute;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover span {
            opacity: 1;
        }

        .social-trigger i {
            transition: opacity 0.3s ease;
        }

        .social-trigger:hover i {
            opacity: 0;
        }
	   
	   
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--lavender-medium);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: none;
            z-index: 99;
            transition: background-color 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top:hover {
            background-color: var(--lavender-dark);
        }
        
        /* 响应式样式 */
        @media (max-width: 768px) {
            body {
                padding-top: 70px; /* 移动设备上的内边距调整 */
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .model-card {
                flex-direction: column;
            }
            
            .model-image {
               
			 
                height: 500px;
				text-align:center;
				 display: block;
  margin: auto;
 
				
				
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .social-button {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
        }
    </style>