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

/* ========================================
   基础样式与变量
   ======================================== */
:root {
    --bg-color: #e6d5c2;
    --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;
}



body {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
     box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    width: 100%;
    vertical-align: top;
}
iframe {
   border: none;
}




/* ========================================
   Header 顶部区域
   ======================================== */
.header {
    width: 100%;
    position: relative;
}

/* 顶部图片 */
.top-image {
    width: 100%;
    overflow: hidden;
}

.top-image > img:first-child {
    width: 100%;
    height: auto;
    display: block;
}

.header-logo {
    position: absolute;
    bottom: 230px;
    right: 20px;
    z-index: 100;
    width: 350px;
    height: auto;
}

/* PC导航 */
.pc-nav {
    background-image: url('../img/navbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 0 0;
}

.nav-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 125px 20px;
}

.nav-row {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.nav-row:last-child {
    margin-bottom: 0;
}

.nav-row a {
    display: block;
    flex: 1;
    max-width: calc(33.33% - 7px);
}



.nav-row a img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-row a:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

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

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

.menu-toggle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* 手机菜单 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #883815d1;
    padding: 70px 15px 15px;
    z-index: 1000;
    overflow-y: auto;
    box-sizing: border-box;
}

.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-around;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 12px 5px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.mobile-nav-list li a span:first-child {
    font-weight: bold;
    font-size: 14px;
    color: var(--accent-color);
}

.mobile-nav-list li a span:last-child {
    font-size: 16px;
}

.mobile-nav-list li a:hover {
    color: var(--accent-color);
}

/* ========================================
   优惠板块
   ======================================== */
.campaign-section {
    padding: 20px;
    box-sizing: border-box;
}

.section-title-img {
    text-align: center;
    margin-bottom: 20px;
}

.title-img {
    max-width: 300px;
    height: auto;
}

.campaign-content {
    text-align: center;
}

.campaign-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.section-line {
    text-align: center;
    margin-top: 20px;
}

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

/* ========================================
   料金板块
   ======================================== */
.price-section {
    padding: 20px;
    box-sizing: border-box;
}

.price-content {
    text-align: center;
}

.price-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* ========================================
   店内风景板块
   ======================================== */
.interior-section {
    padding: 20px;
    box-sizing: border-box;
}

.interior-content {
    text-align: center;
}

.interior-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* ========================================
   新着情報板块
   ======================================== */
.news-section {
    padding: 40px 20px;
    box-sizing: border-box;
}

.news-content {
    margin-top: 40px;
}

.news-bar {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    background-color: #873912;
    height: 35px;
    border-radius: 10px;
}

.news-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}



.news-top {
    margin: 5px;
    border: 4px solid #aa8c71;
    background-color: #883a13;
}

.news-title {
    background-color: #dac495;
    font-size: 20px;
    padding: 5px;
    color: #000;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
}

.news-date {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.news-body {
     background-color: #dac495;
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    padding: 5px;
}

/* ========================================
   地址信息板块
   ======================================== */
.address-section {
    padding: 40px 20px;
    box-sizing: border-box;
}

.address-bar {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    background-color: #873912;
    height: 35px;
    border-radius: 10px;
}

.map-wrapper {
    position: relative;
    margin-top: 40px;
}

.map-content {
    margin: 5px 5px 0 5px;
    overflow: hidden;
    font-size: 0;
}

.map-content iframe {
    display: block;
    margin: 0;
}

.address-content {
   margin: 0px 5px 5px 5px;
    background-color: #853419;
    padding: 5px;
    border: 13px solid #ddc79a;
}

.recruit-section {
        padding: 40px 20px;
        box-sizing: border-box;
}

.recruit-content {
    margin: 0px 5px 5px 5px;
    background-color: #fbede0;
    padding: 13px;
    border: 13px solid #be9f7a;
}

.access-table {
        width: 100%;
    border-collapse: collapse;
    border:none;
}

.access-table th,
.access-table td {
   border-bottom: 1px dotted #000000;
    text-align: left;
    padding: 5px;
    background-color: #c3a37d;
}

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

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

.address-item {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

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

.address-label {
    width: 120px;
    font-weight: bold;
    color: #883a13;
    font-size: 16px;
}

.address-value {
    flex: 1;
    color: #333;
    font-size: 16px;
}

/* ========================================
   女孩板块
   ======================================== */
.girls-section {
    padding: 40px 20px;
    box-sizing: border-box;
}

.girls-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.girl-item {
    display: flex;
    text-decoration: none;
    transition: transform 0.3s ease;
    gap: 10px;
}

.girl-item:hover {
    transform: translateY(-5px);
}

.girl-img-wrapper {
    width: 50%;
    overflow: hidden;
    border: 2px solid #8B4513;
    border-radius: 5px;
    box-sizing: border-box;
}

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

.girl-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}

.girl-name {
        text-align: center;
    font-size: 14px;
   color: #ffffff;
    margin: 0 0 5px 0;
    background-color: #230401;
    padding: 5px;
    border-radius: 5px;
}

.girl-age,.girl-size {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 5px 0;
    background-color: #883a13;
    padding:5px;
    border-radius: 5px;
}



.girl-desc {
    font-size: 13px;
    color: #000;
    margin: 0;
    line-height: 1.5;
    padding: 8px;
    border: 1px solid #8B4513;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
}

.girl-detail {
    cursor: default;
    flex-direction: column;
}

.girl-detail .girl-img-wrapper {
    width: 100%;
}

.girl-detail .girl-info {
    width: 100%;
}

.girl-thumbnails {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.thumbnail {
    width: 32%;
    cursor: pointer;
    transition: opacity 0.3s;
}

.thumbnail:hover {
    opacity: 0.8;
}

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

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

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

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

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

.footer-phone {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    -webkit-text-stroke: 1px #8B4513;
}

.footer-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2em;
    -webkit-text-stroke: 0.5px #8B4513;
}

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

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

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: white;
    -webkit-text-stroke: 0.5px #8B4513;
}

