/* 全局样式 */
:root {
    --primary-color: #E8D3C7;
    --secondary-color: #F8F4F1;
    --text-color: #4A4A4A;
    --accent-color: #D4B08C;
    --background-color: #FFFFFF;
    --light-bg-color: #F8F4F1;
    --lighter-bg-color: #FAF7F5;
    --section-spacing: 3rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

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

/* 头部导航 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* 英雄区域 */
.hero {
    height: 75vh;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://img.myshopline.com/image/store/1714038418251/1040g2sg314bm0tdnm8705of4rsfk0n4qlv45udo!nd-dft-wlteh-webp-3.png');
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://img.myshopline.com/image/store/1714038418251/lQLPJwOtLNhQjH-NBlTNBDiwAMBE-w2zqHUHv5bdHefbAA-1080-1620.png');
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://img.myshopline.com/image/store/1714038418251/lQLPKHHQyiwunX-NBlTNBDiwABH64h3E8EEHv5bdGoTOAA-1080-1620.png');
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
    animation: fadeIn 1.5s ease-out;
    max-width: 500px;
    margin-bottom: 3rem;
    margin-left: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
}

.hero .location {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
    color: white;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: white;
}

/* 故事部分 */
.story-section {
    padding: 3rem 0 3rem;
    position: relative;
    counter-increment: section;
}

.story-section.bg-light {
    background-color: #F2EAE3;
}

.story-section .section-title {
    position: relative;
}

.story-section .section-title::after {
    content: "0" counter(section);
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 4rem;
    opacity: 0.1;
    font-weight: 500;
    color: var(--text-color);
    z-index: 0;
}

.story-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
}

.story-block {
    margin: 1rem 0;
    width: 100%;
    padding: 0;
}


.story-block p {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    line-height: 1.8;
    opacity: 0.9;
}

.story-image {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

.section-title {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    padding-left: 1rem;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1em;
    background-color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

.section-description {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

/* 用户评价轮播 */
.testimonials {
    padding: 2rem 0 4rem;
    background-color: #f7f7f9;
    overflow: hidden;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

.testimonial-title {
    font-size: 1.2rem;
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.testimonial-slider {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.8);
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.testimonial-image {
    width: 100%;
    padding: 0;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}

.quote {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.author {
    color: var(--accent-color);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    opacity: 0.7;
}

.dot.active {
    opacity: 1;
    transform: scale(1.2);
}

.slider-button {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--accent-color);
    font-size: 1.5rem;
    padding: 0;
}

.slider-button:hover {
    transform: scale(1.1);
}

.slider-button.prev::before {
    content: "←";
}

.slider-button.next::before {
    content: "→";
}

/* 团队成员部分 */
.team-section {
    padding: 3rem 0 3rem;
    background-color: var(--light-bg-color);
    position: relative;
    counter-increment: section;
}

.team-section .section-title {
    position: relative;
}

.team-section .section-title::after {
    content: "0" counter(section);
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 4rem;
    opacity: 0.1;
    font-weight: 500;
    color: var(--text-color);
    z-index: 0;
}

.team-grid {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.team-member {
    text-align: left;
    padding: 1.2rem;
    background-color: rgba(255, 255, 255, 0.7);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.2rem;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    align-items: start;
}

.member-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-info {
    padding: 0;
    position: relative;
}

.member-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.member-title {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.member-pet {
    color: var(--text-color);
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.member-description {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 按钮区域 */
.cta-section {
    width: 100%;
    max-width: 100%;
    padding: 3rem 1rem;
    text-align: center;
    background-color: var(--background-color);
    position: relative;
}

.cta-title {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
}

.cta-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    text-align: center;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.cta-button.secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: white;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .hero {
        height: 100vh;
    }
    
    .hero-slide:nth-child(1) {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://img.myshopline.com/image/store/1714038418251/1000g0082pjlbgrcjs0004a3vu49o42grkq1gbq8!nd-dft-wgth-webp-2-(1)-0.png');
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
        padding-left: 2rem;
        padding-bottom: 1.2rem;
    }

    .section-subtitle:after {
        left: 2rem;
        width: 50px;
    }

    .story-content {
        font-size: 1rem;
        position: relative;
    }

    .story-block p {
        font-size: 1rem;
        /* padding: 2rem; */
    }

    .member-description {
        font-size: 1rem;
    }

    .team-grid {
        padding: 0 2rem;
        /* gap: 2rem; */
    }

    .member-image {
        width: 120px;
        height: 120px;
        border-radius: 10px;
    }

    .member-name {
        font-size: 1.3rem;
    }

    .member-title {
        font-size: 1rem;
    }

    .member-pet {
        font-size: 0.9rem;
    }

    .member-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .story-section .section-title::after,
    .team-section .section-title::after {
        right: 4rem;
        top: 2rem;
        font-size: 5rem;
    }

    .section-title {
        padding-left: 2rem;
    }

    .team-member {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .member-info {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .member-header {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 0.8rem;
        align-items: center;
    }

    .member-image {
        width: 120px;
        height: 120px;
        margin: 0;
        border-radius: 8px;
    }

    .member-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .member-name {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .member-title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .member-description {
        padding-top: 1rem;
    }

    .member-pet {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    .section-description {
        font-size: 1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1000px;
    }

    .team-grid {
        padding: 0 3rem;
        gap: 2.5rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .team-member {
        padding: 1.8rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .member-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .member-header {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 1.5rem;
        align-items: center;
    }

    .member-image {
        width: 140px;
        height: 140px;
        margin: 0;
        border-radius: 8px;
    }

    .member-text {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .member-name {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .member-title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .member-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .member-pet {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .story-image {
        margin: 2rem 0;
    }

    .story-content,
    .team-grid {
        padding: 0 3rem;
    }

    .section-title {
        padding-left: 3rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
        padding-left: 3rem;
        padding-bottom: 1.5rem;
    }

    .section-subtitle:after {
        left: 3rem;
        width: 60px;
    }

    .story-section .section-title::after,
    .team-section .section-title::after {
        right: 4rem;
        top: 2rem;
        font-size: 6rem;
    }
    .section-description {
        font-size: 1rem;
        padding-left: 3rem;
    }
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-member {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .member-info {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .member-header {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 0.8rem;
        align-items: center;
    }

    .member-image {
        width: 120px;
        height: 120px;
        margin: 0;
        border-radius: 8px;
    }

    .member-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .member-name {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .member-title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .member-description {
        padding-top: 1rem;
    }

    .member-pet {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
} 