/* /skin/css/css.css */
/* 新盛酒店集团 - 奢华响应式主样式 */
:root {
    --an1115-black: #0a0a0a;
    --an1115-dark-gray: #1e1e1e;
    --an1115-charcoal: #2c2c2c;
    --an1115-gold: #c7a252;
    --an1115-gold-light: #dbbc7c;
    --an1115-wine: #8b3c2c;
    --an1115-white: #ffffff;
    --an1115-off-white: #faf9f7;
    --an1115-gray: #6b6e6e;
    --an1115-transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --an1115-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--an1115-off-white);
    color: var(--an1115-dark-gray);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, .an1115-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--an1115-gold);
    margin-top: 0.8rem;
}

.an1115-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--an1115-gold);
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 500;
}

/* 容器 */
.an1115-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

/* 导航栏 */
.an1115-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    transition: var(--an1115-transition);
    border-bottom: 1px solid rgba(199, 162, 82, 0.2);
}

.an1115-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    flex-wrap: wrap;
}

.an1115-logo-img {
    height: 48px;
    width: auto;
    transition: var(--an1115-transition);
}

.an1115-nav-list {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.an1115-nav-link {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--an1115-off-white);
    letter-spacing: 0.5px;
    transition: var(--an1115-transition);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.an1115-nav-link:hover, .an1115-nav-link.an1115-active {
    color: var(--an1115-gold);
    border-bottom-color: var(--an1115-gold);
}

.an1115-header-actions {
    display: flex;
    gap: 1rem;
}

.an1115-btn-outline {
    border: 1px solid var(--an1115-gold);
    background: transparent;
    color: var(--an1115-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--an1115-transition);
}

.an1115-btn-outline:hover {
    background: var(--an1115-gold);
    color: var(--an1115-black);
}

.an1115-btn-primary {
    background: var(--an1115-gold);
    color: var(--an1115-black);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--an1115-transition);
}

.an1115-btn-primary:hover {
    background: var(--an1115-gold-light);
    transform: translateY(-2px);
}

/* 移动端菜单 */
.an1115-mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.an1115-mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--an1115-gold);
    transition: 0.2s;
}

/* hero 首屏 */
.an1115-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.an1115-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.an1115-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.an1115-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.an1115-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeUp 1s ease-out;
}

.an1115-logo-icon {
    margin-bottom: 2rem;
}

.an1115-logo-icon img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.an1115-hero-title {
    font-size: 4.2rem;
    color: var(--an1115-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.an1115-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,245,0.9);
    margin-bottom: 2.5rem;
}

.an1115-hero-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.an1115-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--an1115-transition);
}

.an1115-btn-gold {
    background: var(--an1115-gold);
    color: var(--an1115-black);
    border: none;
}

.an1115-btn-dark-outline {
    background: transparent;
    border: 1px solid var(--an1115-white);
    color: var(--an1115-white);
}

.an1115-btn-dark-outline:hover {
    background: var(--an1115-white);
    color: var(--an1115-black);
}

.an1115-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 2px;
    z-index: 2;
    animation: bounce 2s infinite;
}

/* 通用section样式 */
.an1115-section {
    padding: 100px 0;
}

.an1115-section:nth-child(even) {
    background-color: var(--an1115-white);
}

.an1115-section:nth-child(odd) {
    background-color: var(--an1115-off-white);
}

.an1115-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.an1115-section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* 网格布局 */
.an1115-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.an1115-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.an1115-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* 简介板块 */
.an1115-about-text p {
    margin-bottom: 1.5rem;
    color: var(--an1115-charcoal);
    font-size: 1rem;
}

.an1115-about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.an1115-about-stats div strong {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--an1115-gold);
    display: block;
}

.an1115-about-image img, .an1115-business-card img, .an1115-feature-card img, .an1115-resp-item img, .an1115-franchise-image img, .an1115-app-preview img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s;
    box-shadow: var(--an1115-shadow);
}

/* 业务卡片 */
.an1115-business-card, .an1115-feature-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--an1115-transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.an1115-business-card:hover, .an1115-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.an1115-business-card img, .an1115-feature-card img {
    height: 240px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.an1115-business-card h3, .an1115-feature-card h3 {
    padding: 1.5rem 1rem 0.5rem;
    font-size: 1.4rem;
}

.an1115-business-card p, .an1115-feature-card p {
    padding: 0 1rem 1.8rem;
    color: var(--an1115-gray);
}

/* 商旅/休闲 左右布局 */
.an1115-flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.an1115-flex-row > div {
    flex: 1;
}

.an1115-reverse {
    flex-direction: row-reverse;
}

.an1115-travel-list {
    margin: 1.5rem 0;
    list-style: none;
}

.an1115-travel-list li {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.an1115-travel-image img, .an1115-leisure-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--an1115-shadow);
}

/* 评价卡片 */
.an1115-review-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    font-style: italic;
    border-left: 5px solid var(--an1115-gold);
}

.an1115-reviewer {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--an1115-gold);
}

/* 社会责任 */
.an1115-responsibility-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.an1115-resp-item {
    text-align: center;
}

.an1115-resp-item img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1rem;
}

/* 加盟板块 */
.an1115-franchise-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--an1115-white);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: var(--an1115-shadow);
}

.an1115-franchise-text {
    flex: 1.2;
}

.an1115-contact-info {
    background: var(--an1115-off-white);
    padding: 1.5rem;
    border-radius: 24px;
    margin: 1.8rem 0;
}

.an1115-contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* APP下载 */
.an1115-app-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0c0c0c 100%);
    border-radius: 48px;
    padding: 3rem;
    color: white;
}

.an1115-app-preview {
    flex: 1;
}

.an1115-app-preview img {
    border-radius: 32px;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

.an1115-app-content {
    flex: 1;
}

.an1115-app-content h2 {
    color: var(--an1115-gold);
}

.an1115-app-content h2:after {
    background: var(--an1115-gold);
}

.an1115-app-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.8rem 0;
}

.an1115-btn-app {
    background: rgba(255,255,245,0.1);
    border: 1px solid var(--an1115-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    color: white;
    text-decoration: none;
}

/* 页脚 */
.an1115-footer {
    background: var(--an1115-black);
    color: #aaa;
    padding: 60px 0 30px;
}

.an1115-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.an1115-footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.an1115-footer-col h4 {
    color: var(--an1115-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.an1115-footer-col ul {
    list-style: none;
}

.an1115-footer-col li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.an1115-social a {
    color: #aaa;
    text-decoration: none;
    margin-right: 1rem;
}

.an1115-copyright {
    text-align: center;
    border-top: 1px solid #2c2c2c;
    padding-top: 2rem;
    font-size: 0.75rem;
}

/* 响应式 */
@media (max-width: 1100px) {
    .an1115-grid-4 { grid-template-columns: repeat(2,1fr); }
    .an1115-grid-3 { grid-template-columns: repeat(2,1fr); }
    .an1115-responsibility-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
    .an1115-nav-list { display: none; }
    .an1115-mobile-toggle { display: flex; }
    .an1115-nav-menu.active .an1115-nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.2rem;
        text-align: center;
    }
    .an1115-header-actions { display: none; }
    .an1115-grid-2, .an1115-flex-row, .an1115-franchise-wrapper, .an1115-app-container {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .an1115-hero-title { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .an1115-section { padding: 60px 0; }
    .an1115-grid-3, .an1115-grid-4, .an1115-responsibility-grid { grid-template-columns: 1fr; }
    .an1115-franchise-wrapper { padding: 2rem; }
}

@media (max-width: 600px) {
    .an1115-hero-buttons { flex-direction: column; align-items: center; }
    .an1115-btn-large { width: 80%; text-align: center; }
    .an1115-about-stats { flex-direction: column; align-items: center; text-align: center; }
    .an1115-app-container { text-align: center; }
    .an1115-app-buttons { flex-wrap: wrap; justify-content: center; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

@keyframes bounce {
    0%,100%{ transform: translateY(0);}
    50%{ transform: translateY(8px);}
}