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

:root {
    --primary-color: #968319;
    --secondary-color: #99C9FF;
    --accent-color: #4A90E2;
    --text-dark: #383838;
    --text-light: rgba(56, 56, 56, 0.8);
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --button-color: #FF6B6B;
    --button-hover: #FF5252;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1.6;
    color: var(--text-dark);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    min-width: 50px;
}

.lang-btn:hover {
    background: rgba(150, 131, 25, 0.1);
    color: var(--primary-color);
}

.lang-btn[data-lang].active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 2px 8px rgba(150, 131, 25, 0.3);
}

/* 页面加载动画 */
body.loaded {
    animation: fadeInBody 0.8s ease-out;
}

@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 滚动淡入动画 */
.fade-in {
    opacity: 0;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* 确保 store-block 不受 fade-in-up 影响 */
.store-block.fade-in-up,
.store-block {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

/* 确保 store-block 内的所有内容都可见 */
.store-block * {
    opacity: 1 !important;
    visibility: visible !important;
}

.fade-in {
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Hero内容动画增强 */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out, floatAnimation 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.store-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Logo动画增强 */
.logo {
    animation: logoFadeIn 1.2s ease-out;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Chip动画增强 */
.chip {
    animation: chipSlideIn 1s ease-out 0.3s both;
}

@keyframes chipSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 标题动画增强 */
h1 {
    animation: titleFadeIn 1s ease-out 0.5s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 副标题动画增强 */
.subtitle {
    animation: subtitleFadeIn 1s ease-out 0.7s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Background */
.parallax-bg {
    position: relative;
    background-size: cover;
    /*background-position: center;*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    transition: background-image 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

.parallax-bg[data-bg="1"] {
    background-image: url('assets/images/cat2.jpg');
}

.parallax-bg[data-bg="2"] {
    background-image: url('assets/images/exhibition/2.png');
}

.parallax-bg[data-bg="3"] {
    background-image: url('assets/images/exhibition/1.png');
}

.parallax-bg[data-bg="4"] {
    background-image: url('assets/images/exhibition/3.png');
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.15) 100%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Hero Section */
.hero-section {
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    /*padding: 140px 20px 120px;*/
    padding: 40px 20px 40px;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
}

.logo {
    width: clamp(120px, 15vw, 220px);
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.chip-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
}

.chip {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.9);
    border-radius: 20px;
    color: #9a2525;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0,0,0,0.15);
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-align: center;
}

/* Section Split Layout */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding: 40px 0;
}

.section-split.reverse {
    direction: rtl;
}

.section-split.reverse > * {
    direction: ltr;
}

.section-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    flex: 1;
    min-width: 0;
}

.section-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.image-display {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    padding: 8px;
}

.image-display:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* 添加平滑滚动和页面效果 */
html {
    scroll-behavior: smooth;
}

/* 增强所有 section 的过渡效果 */
section {
    transition: background-color 0.3s ease;
}

/* 添加内容区域的微动画 */
.content-text p {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.content-text p:hover {
    transform: translateX(5px);
}

/* 增强按钮和链接的交互效果 */
a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 添加页面加载时的淡入效果 */
@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: pageFadeIn 0.6s ease-out;
}

.display-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.section-title-left {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title-center {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0;
}

/* Cute Cat Decorations */
.cat-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: floatCat 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.cat-decoration:hover {
    opacity: 0.25;
    transform: scale(1.2);
}

.cat-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.cat-2 {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.cat-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.cat-4 {
    top: 20%;
    right: 5%;
    animation-delay: 0.5s;
}

.cat-5 {
    bottom: 20%;
    left: 8%;
    animation-delay: 1.5s;
}

.cat-6 {
    top: 50%;
    right: 12%;
    animation-delay: 2.5s;
}

.cat-7 {
    top: 15%;
    left: 3%;
    animation-delay: 0.3s;
}

.cat-8 {
    bottom: 10%;
    right: 5%;
    animation-delay: 1.8s;
}

@keyframes floatCat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Cat Cards */
.cat-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(255, 192, 203, 0.8) 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
    animation: floatCard 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cat-card-1 {
    top: 25%;
    right: 8%;
    animation-delay: 0s;
}

.cat-card-2 {
    bottom: 30%;
    left: 6%;
    animation-delay: 2s;
}

.cat-card-emoji {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 8px;
    animation: bounceCat 2s ease-in-out infinite;
}

.cat-card-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes bounceCat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* About Section */
.about-section {
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Exhibition Section */
.exhibition-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.exhibition-section .cat-decoration {
    opacity: 0.12;
}




/* Store Info Section */
.store-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.store-section .cat-decoration {
    opacity: 0.1;
}

.store-section .cat-card {
    opacity: 0.9;
}

.store-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.store-block {
    margin-bottom: 80px;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    visibility: visible !important;
}

.store-block.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.store-block:last-child {
    margin-bottom: 0;
}

.store-block-1.visible {
    transition-delay: 0.1s;
}

.store-block-2.visible {
    transition-delay: 0.3s;
}

.store-section .section-split {
    align-items: flex-start;
    min-height: auto;
}

.store-section .section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
}

.store-section .section-image {
    position: relative;
    z-index: 2;
}

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



.store-info {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 3;
    opacity: 1 !important;
    visibility: visible !important;
}

.info-item {
    padding: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.info-item:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(150, 131, 25, 0.15);
    transform: translateY(-4px) translateX(4px);
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.info-icon {
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(150, 131, 25, 0.1), rgba(150, 131, 25, 0.05));
    border-radius: 12px;
}

.info-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.info-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.info-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 4px;
}

.info-content a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.map-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.map-button {
    padding: 16px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    text-align: center;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    background: #fafafa;
}

.map-button.google {
    border-color: #4285f4;
    color: #4285f4;
}

.map-button.google:hover {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
}

.map-button.apple {
    border-color: #000000;
    color: #000000;
}

.map-button.apple:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.map-button.waze {
    border-color: #1C81E6;
    color: #1C81E6;
}

.map-button.waze:hover {
    background: #1C81E6;
    color: white;
    border-color: #1C81E6;
}

/* Contact Button */
.contact-button {
    position: fixed !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FF6B6B 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 80px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4),
                0 0 0 0 rgba(255, 107, 107, 0),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    letter-spacing: 1px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    will-change: padding, box-shadow;
    min-width: 200px;
    width: auto;
    opacity: 1 !important;
    visibility: visible !important;
    animation: buttonSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               buttonPulsePadding 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 首页按钮动态伸缩动画 - 优化美化版 */
@keyframes buttonPulsePadding {
    0%, 100% {
        padding-left: 80px;
        padding-right: 80px;
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4),
                    0 0 0 0 rgba(255, 107, 107, 0),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    25% {
        padding-left: 60px;
        padding-right: 60px;
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.45),
                    0 0 0 2px rgba(255, 107, 107, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
    50% {
        padding-left: 48px;
        padding-right: 48px;
        box-shadow: 0 14px 40px rgba(255, 107, 107, 0.5),
                    0 0 0 3px rgba(255, 107, 107, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    75% {
        padding-left: 60px;
        padding-right: 60px;
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.45),
                    0 0 0 2px rgba(255, 107, 107, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
}

/* 按钮滑入动画 */
@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* 滚动时缩短按钮，停止首页的伸缩动画 */
.contact-button.scrolled {
    padding: 16px 32px;
    font-size: 0.95rem;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.35),
                0 0 0 0 rgba(255, 107, 107, 0),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    /* 停止首页的伸缩动画，保持可见 */
    animation: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-button::after {
    content: '💬';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-button:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5),
                0 0 0 4px rgba(255, 107, 107, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-button.scrolled:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.03);
    padding: 16px 36px;
}

.contact-button:hover::after {
    transform: translateY(-50%) scale(1.2);
}

.contact-button:active {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.contact-button span {
    position: relative;
    z-index: 1;
    margin-left: 8px;
}

/* Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.contact-modal.active {
    display: flex;
}

.contact-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 32px;
    padding: 45px 55px;
    max-width: 950px;
    width: 92%;
    position: relative;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: slideUpScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-button {
    position: absolute;
    top: 28px;
    right: 28px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    border: 2px solid rgba(0, 0, 0, 0.08);
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.close-button:hover {
    color: #fff;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-color: transparent;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.close-button:active {
    transform: rotate(90deg) scale(1.05);
}

.contact-title {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    animation: titleLineExpand 0.8s ease-out 0.3s both;
}

@keyframes titleLineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.contact-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: nowrap;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    flex: 1 1 0;
    min-width: 180px;
    padding: 28px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(250, 250, 250, 0.8));
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: contactItemFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-item:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes contactItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(150, 131, 25, 0.1);
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-color: rgba(150, 131, 25, 0.2);
}

.contact-icon {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-color: rgba(150, 131, 25, 0.2);
}

.contact-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-name {
    color: var(--primary-color);
}

.contact-qr {
    width: 240px;
    height: 240px;
    border: none;
    border-radius: 20px;
    padding: 18px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    object-fit: contain;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.contact-qr::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-item:hover .contact-qr {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 16px 40px rgba(153, 201, 255, 0.3),
                0 0 0 3px rgba(153, 201, 255, 0.2);
}

.contact-item:hover .contact-qr::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-split {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding: 30px 0;
    }

    .section-split.reverse {
        direction: ltr;
    }

    .section-image {
        order: -1;
    }

    .about-section,
    .exhibition-section,
    .store-section {
        padding: 30px 20px;
        min-height: auto;
    }

    .image-display {
        max-width: 100%;
    }

    .contact-items {
        flex-direction: row;
        gap: 25px;
        justify-content: space-between;
    }

    .contact-content {
        max-width: 95%;
        padding: 40px 35px;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contact-item {
        min-width: 150px;
        padding: 24px 16px;
        gap: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

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

    .contact-qr {
        width: 200px;
        height: 200px;
    }

    .map-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 6px;
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 45px;
    }

    .hero-section {
        /*min-height: 100vh;*/
        /*padding: 100px 20px 80px;*/
    }

    .parallax-bg[data-bg="1"] {
        background-image: url('assets/images/cat3.jpg');
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0;
    }

    .section-content {
        padding: 10px;
        position: relative;
        z-index: 2;
    }

    .section-image {
        position: relative;
        z-index: 2;
    }

    .section-title-left {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .section-title-left::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title-center {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .store-block {
        margin-bottom: 50px;
    }

    .cat-decoration {
        font-size: 2rem;
        opacity: 0.08;
    }

    .cat-card {
        display: none;
    }

    .content-text p {
        font-size: 1rem;
        text-align: center;
    }

    .about-section,
    .exhibition-section,
    .store-section {
        min-height: auto;
        padding: 15px 15px;
    }

    .logo {
        width: 140px;
    }


    .info-item {
        padding: 24px;
    }

    .info-header {
        margin-bottom: 16px;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .info-content h3 {
        font-size: 1.2rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .contact-content {
        padding: 40px 25px;
        max-width: 95%;
        border-radius: 24px;
    }

    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .contact-items {
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
    }

    .contact-item {
        min-width: 100px;
        gap: 14px;
        padding: 20px 12px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        padding: 6px;
    }

    .contact-name {
        font-size: 1rem;
    }

    .contact-qr {
        width: 140px;
        height: 140px;
        padding: 12px;
    }

    .contact-button {
        padding: 14px 32px;
        font-size: 0.95rem;
        bottom: 20px;
    }
}


@media (max-width: 480px) {
    .hero-section {
        padding: 30px 15px 70px;
        /*min-height: 100vh;*/
    }

    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 4px;
        gap: 4px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 40px;
    }

    .section-split {
        gap: 25px;
        padding: 15px 0;
    }

    .section-title-left {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .content-text {
        gap: 20px;
    }

    .content-text p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-section,
    .exhibition-section,
    .store-section {
        padding: 15px 15px;
    }

    .image-display {
        padding: 6px;
    }

    .info-item {
        padding: 20px;
    }

    .store-section {
        padding: 15px 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .info-item {
        padding: 20px;
    }

    .info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .contact-content {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .contact-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .contact-title::after {
        width: 60px;
        height: 3px;
    }

    .close-button {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-items {
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
    }

    .contact-item {
        min-width: 80px;
        gap: 10px;
        padding: 16px 8px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        padding: 4px;
    }

    .contact-name {
        font-size: 0.85rem;
    }

    .contact-qr {
        width: 100px;
        height: 100px;
        padding: 8px;
    }

    .contact-button {
        padding: 12px 28px;
        font-size: 0.9rem;
        bottom: 15px;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 20px 30px;
    margin-top: 80px;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-official-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(150, 131, 25, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.footer-official-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(150, 131, 25, 0.3);
}

.footer-official-link span:first-child {
    font-size: 1.3rem;
}

.footer-social {
    margin-top: 10px;
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 5px;
    }

    .footer-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-official-link {
        font-size: 1rem;
        padding: 10px 16px;
    }
}
