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

/* ========================================
   基础样式与变量
   ======================================== */
:root {
    --bg-color: #661816;
    --bg-secondary: #a89670;
    --text-primary: #fff;
    --text-secondary: #1a1a1a;
    --text-muted: #2a2a2a;
    --accent-color: #b7a77b;
    --accent-hover: #c4b58a;
    --accent-light: #d4c49a;
    --border-color: #8a7a5a;
    --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;
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 60px 40px; */
    background: transparent;
    border-radius: var(--radius);
}

/* ========================================
   背景图层
   ======================================== */
.bg-overlay {
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100%;
    height: 100%;
    background-image: url('img/bg.png');
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

/* ========================================
   导航栏
   ======================================== */
.nav-wrapper {
    position: static;
    z-index: 100;
}

.mobile-nav {
    display: none;
}

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

.banner-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 0;
    border-radius: 0;
    transition: var(--transition);
    flex: 1;
}

.banner-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.banner-nav .nav-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   顶部 Banner
   ======================================== */
.hero-banner {
    margin-top: 0;
    overflow: hidden;
    position: relative;
    padding-top: 600px;
    background: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* ========================================
   标题图片
   ======================================== */
.section-title-img {
    text-align: left;
        margin-bottom: 10px;
}

.section-title-img .title-img {
    max-width: 60%;
    height: auto;
    display: inline-block;
}

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

section {
    padding: 25px 0;
}

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

.campaign-wrapper {
    width: 90%;
    position: relative;
    padding-top: 40px;
    margin: auto;
}

.flow-left {
    position: absolute;
    bottom: -15px;
    left: -45px;
    width: 150px;
    height: auto;
    z-index: 5;
}

.flow-bottom {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
    z-index: 5;
}

.title-line {
    position: absolute;
    top: -10px;
    left: 52%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.title-line-img {
    width: 100%;
    height: auto;
}

.campaign-banner {
    width: 90%;
    margin: 0 auto;
    padding: 2px;
    background: linear-gradient(135deg, #a15e5f, #d49a9b, #c47a7b, #e8b8b9, #85454c, #f0c8c9, #6b3536, #d49a9b, #4c2228);
    border-radius: 5px;
}

.campaign-inner {
    padding: 20px;
    background: #190101;
    border-radius: 5px;
}

.campaign-inner2 {
    padding: 15px;
    background: #4f0907;
}

.campaign-img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid white;
}

/* ========================================
   2. 轮播
   ======================================== */
.gallery-swiper {
    padding: 20px 0 60px;
}
.swiper-slide {
    padding: 5px;
     background: #4f0907;
}
    
.slide-card {
    border: 1px solid white;
   
}

.slide-img {
    width: 100%;
    object-fit: cover;
    display: block;
   
}

.slide-info {
   
    text-align: center;
    
}

.slide-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
      border-bottom: 1px solid white;
       border-top: 1px solid white;
}

.slide-age,
.slide-size {
    font-size: 0.75rem;
}

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


.news-item {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
}


.news-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    background: #4f0907;
    padding: 4px;
    text-align: center;
}

.news-date {
    font-size: 0.85rem;
    padding: 0 12px;
}

.news-text {
    line-height: 1.5;
    background: #4f0907;
    padding:4px;
}

/* ========================================
   4. 女孩列表
   ======================================== */
.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;
}

/* ========================================
   4. 店内风景
   ======================================== */
.room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.room-item {
    overflow: hidden;
    border-radius: var(--radius);
}

.room-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-item:hover .room-img {
    transform: scale(1.05);
}

/* ========================================
   5. 地址信息
   ======================================== */
.access-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-container {
    overflow: hidden;
    width: 90%;
    margin: auto;
}

.map-container iframe {
    display: block;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.access-table th,
.access-table td {
    border: 1px solid #fff;
    text-align: left;
}

.access-table th {
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.15em;
    font-weight: 500;
    min-width: 80px;
    border-right: none;
}

.access-table td {
    font-size: 0.9rem;
    border-left: none;
}



/* ========================================
   Footer
   ======================================== */
.footer {
    background: transparent;
    padding: 0;
    border-top: none;
    margin-top: 20px;
}

/* 第一部分：底部图片 */
.footer-images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-line-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-main-wrapper {
    position: relative;
    width: 100%;
}

.footer-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width:50%;
    height: auto;
}

/* 第二部分：底部导航 */
.footer-bottom {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
}

.footer-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
    text-decoration: none;
    padding: 5px;
    transition: var(--transition);
}

.footer-nav-item:hover {
    opacity: 0.8;
}

.footer-nav-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-contact {
    text-align: center;
    margin-bottom: 25px;
}

.footer-phone {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    transition: var(--transition);
}



.footer-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2em;
}

.footer-campaign {
    display: flex;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-campaign p {
    font-size: 0.75rem;
    margin-bottom: 5px;
}

.footer-campaign p a {
    color:#fff;
}

.footer-copyright p {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* ========================================
   入场动画
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
