/* ========================================
   字体声明
   ======================================== */
@font-face {
    font-family: 'Cinzel';
    src: url('fonts/Cinzel.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   基础样式与变量
   ======================================== */
:root {
    --bg-color: #b7a77b;
    --bg-secondary: #a89670;
    --bg-tertiary: #998565;
    --text-primary: #0a0a0a;
    --text-secondary: #1a1a1a;
    --text-muted: #2a2a2a;
    --accent-color: #b7a77b;
    --accent-hover: #c4b58a;
    --accent-light: #d4c49a;
    --border-color: #8a7a5a;
    --shadow: 0 4px 20px rgba(183, 167, 123, 0.25);
    --radius: 0;
    --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: 'Cinzel', 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: 60px 40px;
    background: transparent;
    border-radius: var(--radius);
}
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;
}

/* ========================================
   Banner 下导航
   ======================================== */
.nav-wrapper {
    background: linear-gradient(135deg, #b7a77b, #0a0a0a);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(183, 167, 123, 0.3);
}

/* 手机端导航 */
.mobile-nav {
    display: none;
}


.banner-nav {
    display: flex;
    justify-content: space-around;
    gap: 0;
    background: transparent;
    padding: 0px;
    border-radius: 0;
}

.banner-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    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: 0.9rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.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(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.95);
    min-width: 200px;
    padding: 10px;
    border-radius: 4px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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: white;
    padding: 12px 5px;
    font-size: 0.9rem;
}

.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.8;
}

/* ========================================
   通用 Section Header
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.section-header h2 {
    font-weight: 400;
    font-size: 2.5rem;
    color: #b7a77b;
    letter-spacing: 0.15em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.section-header h2::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 20px;
    background-image: url('../img/heading-left.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-header h2::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 20px;
    background-image: url('../img/heading-left.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scaleX(-1);
}

.section-header p {
    font-size: 1rem;
    color: #0a0a0a;
    letter-spacing: 0.15em;
    font-weight: 400;
}

/* ========================================
   主要内容区
   ======================================== */
.main-content {
    padding-bottom: 0;
}

section {
    padding: 25px 0;
}

section:last-of-type {
    border-bottom: none;
}

/* 交替背景色 */
.gallery-section,
.therapist-section {
    background: rgba(183, 167, 123, 0.15);
}

.news-section,
.campaign-section,
.access-section {
    background: rgba(10, 10, 10, 0.08);
}

/* ========================================
   1. 优惠图片
   ======================================== */
.campaign-section {
    padding: 0 !important;
}

.campaign-banner {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.campaign-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

.campaign-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

/* ========================================
   女孩轮播图 (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, 248, 231, 0.9) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    border: 2px solid var(--accent-light);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 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;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.news-item:hover {
    background: rgba(212, 175, 55, 0.08);
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-tag {
    font-size: 0.7rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 4px 10px;
    border-radius: 0;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

.news-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    margin: 0;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.news-content {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    padding-left: 72px;
}

/* ========================================
   5. 女孩列表
   ======================================== */
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.therapist-card {
    background: rgb(192 177 133 / 70%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08);
}

.therapist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 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: 12px;
}

.therapist-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.therapist-age,
.therapist-size {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

/* ========================================
   5.1 女孩详情页
   ======================================== */
.therapist-detail {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgb(192 177 133 / 70%);
    border: 2px solid var(--border-color);
    padding: 30px;
}

.detail-image {
    flex: 0 0 45%;
}

.detail-main-img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
    object-fit: cover;
    border: 2px solid var(--accent-light);
}

.detail-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.detail-thumb {
    width: 80px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.detail-thumb:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.detail-info {
    flex: 1;
    padding: 20px 0;
}

.detail-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.detail-age,
.detail-size {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.detail-desc {
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-height: 400px;
    overflow-y: auto;
}

.detail-desc::-webkit-scrollbar {
    width: 4px;
}

.detail-desc::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

/* ========================================
   6. 地址信息
   ======================================== */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--accent-light);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.map-container iframe {
    display: block;
    height: 400px;
}

.access-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.access-item {
    padding: 12px !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.75rem;
    color: var(--accent-color);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-weight: 500;
}

.access-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 45px 0;
    border-top: 2px solid var(--accent-light);
}

.footer-campaign {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-campaign p {
    text-align: center;
    font-size: 0.8rem;
    color: #b7a77b;
    margin-bottom: 8px;
}
.footer-campaign a{ color:#fff;}

.footer-copyright {
    margin-bottom: 18px;
}

.footer-copyright p {
    text-align: center;
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.footer-text p {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0.2em;
}

/* ========================================
   手机端底部导航（PC端隐藏）
   ======================================== */
.mobile-bottom-nav {
    display: none;
}

