/* ========================================
   基础样式与变量
   ======================================== */
:root {
    --bg-color: #f0f7fb;
    --bg-secondary: #e8f4fa;
    --bg-tertiary: #dceef7;
    --text-primary: #1a3a4a;
    --text-secondary: #4a6a7a;
    --text-muted: #7a9aaa;
    --accent-color: #2196F3;
    --accent-hover: #42a5f5;
    --accent-light: #bbdefb;
    --border-color: #b3d9f2;
    --shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: var(--bg-color);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.08);
}

img {
    width: 100%;
    vertical-align: top;
}

a {
    text-decoration: none;
}

/* ========================================
   顶部 Banner
   ======================================== */
.hero-banner {
    margin-top: 0;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-img-mobile {
    display: none;
}

.hero-img-pc {
    display: block;
}

/* ========================================
   Banner 下导航
   ======================================== */
/* PC端汉堡导航隐藏 */
.mobile-nav {
    display: none;
}

/* ========================================
   汉堡菜单按钮
   ======================================== */
.menu-toggle {
    display: none;
    background: var(--bg-color);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   汉堡菜单面板
   ======================================== */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.98);
    min-width: 200px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    padding: 12px 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-nav-list li a:hover {
    background: var(--bg-secondary);
    color: var(--accent-color);
}

.mobile-nav-list li a span:first-child {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.mobile-nav-list li a span:last-child {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ========================================
   Banner 下导航样式
   ======================================== */
.banner-nav {
    display: flex;
    justify-content: space-around;
    gap: 0;
    background: linear-gradient(135deg, #2196f347, #0080ff);
    padding: 0px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
    border-radius: 0;
}

.banner-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
    flex: 1;
    max-width: 150px;
}

.banner-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.banner-nav .nav-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.banner-nav .nav-sub {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* ========================================
   通用 Section Header
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.section-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-top: 15px;
}

/* ========================================
   主要内容区
   ======================================== */
.main-content {
    padding-bottom: 0;
}

section {
    padding: 20px 0;
}

section:last-of-type {
    border-bottom: none;
}

/* ========================================
   1. 优惠图片
   ======================================== */


.campaign-banner {
    margin: 0;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.campaign-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.15);
    transition: var(--transition);
}

.campaign-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.25);
}

/* ========================================
   2. 轮播 + 新着情报 (并排布局)
   ======================================== */
.gallery-news-section {
    background: transparent;
}

.gallery-news-grid {
    display: flex;
    gap: 40px;
    align-items: start;
}

.gallery-left {
    width: 50%;
}

.news-right {
    width: 50%;
}

.news-right .section-header {
    margin-bottom: 20px;
}

.news-right .news-list {
    padding-right: 0;
}

/* ========================================
   女孩轮播图 (Swiper)
   ======================================== */
.gallery-swiper {
    padding: 20px 0 60px;
}

.slide-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    border: 2px solid var(--accent-light);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
}

.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    opacity: 1 !important;
}

/* ========================================
   3. 新着情報
   ======================================== */
.news-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.news-list::-webkit-scrollbar {
    width: 4px;
}

.news-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 2px;
}

.news-list::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px;
    opacity: 0.7;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
        flex-wrap: wrap;
}

.news-item:hover {
    background: rgba(33, 150, 243, 0.08);
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.news-tag {
    font-size: 0.7rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.25);
}

.news-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
}

.news-content {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 5px;
    flex-basis: 100%;
}

/* ========================================
   4. 料金表图片
   ======================================== */
.price-section {
    background: transparent;
}

.price-image {
    margin: 0 auto;
}

.price-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.15);
}

/* ========================================
   5. 女孩列表
   ======================================== */
.therapist-section {
    background: transparent;
}

.therapist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.therapist-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.08);
}

.therapist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.2);
    border-color: var(--accent-color);
}

.therapist-image {
    position: relative;
    overflow: hidden;
}

.therapist-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.therapist-card:hover .therapist-img {
    transform: scale(1.05);
}

.therapist-info {
    padding: 15px;
}

.therapist-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.therapist-age,
.therapist-size {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ========================================
   5. 女孩详情页
   ======================================== */
.therapist-detail {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.1);
}

.detail-image {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-main-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
    transition: var(--transition);
}

.detail-thumbnails {
    display: flex;
    gap: 10px;
}

.detail-thumb {
    width: 33%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.detail-thumb:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.detail-info {
    flex: 1;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.detail-age,
.detail-size {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 8px 15px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.detail-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-top: 10px;
}

/* ========================================
   6. 地址信息
   ======================================== */
.access-section {
    background: transparent;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--accent-light);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.15);
}

.map-container iframe {
    display: block;
}

.access-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.access-item {
    padding: 15px !important;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.access-item:hover {
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

.access-item h4 {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-weight: 400;
}

.access-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding:0;
}

.footer-campaign {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 15px;
}

.footer-campaign p {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-campaign a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-copyright {
    margin-bottom: 15px;
}

.footer-copyright p {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-text p {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-align: center;
    letter-spacing: 0.2em;
}

/* ========================================
   手机端底部导航（PC端隐藏）
   ======================================== */
.mobile-bottom-nav {
    display: none;
}