:root {
    --primary-color: #c41230; /* 中国红 */
    --secondary-color: #d4af37; /* 金色 */
    --accent-color: #1e88e5; /* 青花瓷蓝 */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #222222;
}

body {
    font-family: 'Poppins', 'Noto Serif SC', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    padding-top: 70px; /* 根据导航栏高度调整 */
    background: url('images/subtle-chinese-pattern.jpg') repeat;
    /* 对于重复的图案背景，使用更加微妙的设计 */
}

/* 导航栏样式优化 - 保留原结构 */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98); /* 稍微透明一点 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo样式优化 */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 42px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 100%;
}

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

/* 在小屏幕上调整Logo大小 */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 36px;
        margin-right: 8px;
    }
}

/* 在非常小的屏幕上只显示Logo图片 */
@media (max-width: 480px) {
    .logo span {
        display: none;
    }
    
    .logo img {
        height: 38px;
        margin-right: 0;
    }
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 18px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover:after {
    width: 100%;
}

/* 语言选择器样式 */
select {
    padding: 5px 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: white;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

select:hover {
    border-color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .main-nav li {
        margin: 0 10px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 35px;
    }
}

/* 英雄区域样式 */
.hero {
    height: 50vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/chinese-cuisine-table.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.hero-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 18, 48, 0.3);
}

.cta-button:hover {
    background-color: #a50d26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 18, 48, 0.4);
}

/* 通用容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 通用部分标题样式 */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* 中国八大菜系区块背景样式 */
.cuisine-navigation {
    background-color: rgba(255, 255, 255, 0.8); /* 半透明白色背景 */
    backdrop-filter: blur(5px); /* 背景模糊效果，增加层次感 */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

/* 添加装饰性边框 */
.cuisine-navigation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px 3px 0 0;
}

/* 为标题添加样式 */
.cuisine-navigation h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.cuisine-navigation h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
}

/* 为菜系导航项添加微妙的悬停效果 */
.cuisine-nav-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* 为菜系导航项添加卡片效果 */
.cuisine-nav-item {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 15px 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cuisine-nav-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 菜系导航样式优化 */
.cuisine-navigation {
    padding: 80px 0 40px;
    background-color: var(--background-light);
    margin-top: 70px; /* 根据导航栏高度调整 */
}

.cuisine-nav {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin: 30px 0;
    justify-items: center;
}

.cuisine-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease;
    width: 100px;
    position: relative;
    z-index: 1;
}

.cuisine-nav-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    border-radius: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cuisine-nav-item:hover::before {
    opacity: 0.3;
    transform: scale(1.05);
}

/* 为每个菜系设置不同的背景图片 */
.cuisine-nav li:nth-child(1) .cuisine-nav-item::before {
    background-image: url('images/cuisines/sichuan-bg.jpg');
}

.cuisine-nav li:nth-child(2) .cuisine-nav-item::before {
    background-image: url('images/cuisines/cantonese-bg.jpg');
}

.cuisine-nav li:nth-child(3) .cuisine-nav-item::before {
    background-image: url('images/cuisines/shandong-bg.jpg');
}

.cuisine-nav li:nth-child(4) .cuisine-nav-item::before {
    background-image: url('images/cuisines/jiangsu-bg.jpg');
}

.cuisine-nav li:nth-child(5) .cuisine-nav-item::before {
    background-image: url('images/cuisines/zhejiang-bg.jpg');
}

.cuisine-nav li:nth-child(6) .cuisine-nav-item::before {
    background-image: url('images/cuisines/fujian-bg.jpg');
}

.cuisine-nav li:nth-child(7) .cuisine-nav-item::before {
    background-image: url('images/cuisines/hunan-bg.jpg');
}

.cuisine-nav li:nth-child(8) .cuisine-nav-item::before {
    background-image: url('images/cuisines/anhui-bg.jpg');
}

/* 增强文字可读性 */
.cuisine-name {
    background-color: rgba(255,255,255,0.7);
    padding: 3px 6px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cuisine-nav-item:hover .cuisine-name {
    background-color: rgba(255,255,255,0.9);
}

.view-all-button {
    text-align: center;
    margin-top: 30px;
}

/* 特色菜系卡片样式 */
.featured-cuisines {
    padding: 60px 0;
    background-color: white;
}

.cuisine-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cuisine-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cuisine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cuisine-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cuisine-card h3 {
    padding: 15px 20px 5px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.cuisine-card p {
    padding: 0 20px 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* 特色菜系卡片链接样式 - 简约按钮风格 */
.cuisine-card a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 0.9rem;
}

.cuisine-card a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(196, 18, 48, 0.3);
}

/* 文化连接部分样式 */
.cultural-connection {
    padding: 60px 0;
    background-color: var(--background-light);
}

.cultural-connection .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.culture-content {
    flex: 1;
}

.culture-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.culture-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 会员部分样式 */
.membership-preview {
    padding: 60px 0;
    background-color: white;
}

.membership-tiers {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.membership-tier {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.membership-tier.featured {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.membership-tier:hover {
    transform: translateY(-10px);
}

.membership-tier h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.membership-tier .price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.benefits li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.membership-tier.featured .benefits li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .cultural-connection .container {
        flex-direction: column;
    }
    
    .membership-tiers {
        flex-direction: column;
        align-items: center;
    }
    
    .membership-tier.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .cuisine-nav {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cuisine-nav-item {
        width: 80px;
    }
    .cuisine-cards {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .cuisine-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 其他部分样式... */ 
/* 其他部分样式... */ 

/* 页脚样式 */
footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 0 0 25%;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    flex: 0 0 50%;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 0 0 30%;
}

.footer-column h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-media {
    flex: 0 0 20%;
}

.social-media h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .social-media {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-links {
        order: 2;
    }
    
    .social-media {
        order: 1;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: 0 0 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 0 0 100%;
    }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .cuisine-cards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .cuisine-cards {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .cuisine-cards {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .cuisine-card h3 {
        font-size: 1.1rem;
    }
    
    .cuisine-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .cuisine-cards {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.back-to-home {
    margin-bottom: 20px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(196, 18, 48, 0.1);
}

.back-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.back-button i {
    font-size: 0.9rem;
}

.breadcrumbs {
    background-color: var(--background-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #999;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-dark);
}

.home-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.home-link:after {
    background-color: var(--primary-color);
    height: 3px;
}

.dish-card img {
    width: 100%;         /* 图片宽度占满容器 */
    height: 200px;       /* 固定高度 */
    object-fit: cover;   /* 保持图片比例，裁剪多余部分 */
    border-radius: 8px 8px 0 0; /* 上方圆角 */
}

.dish-card {
    width: 100%;
    max-width: 300px;    /* 限制卡片最大宽度 */
    margin: 0 auto;      /* 居中显示 */
}

/* 菜品卡片样式优化 */
.dish-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dish-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-card h4 {
    padding: 12px 15px 5px;
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.dish-card p {
    padding: 0 15px 15px;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .dish-cards {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .dish-card img {
        height: 150px;
    }
}

/* 中国菜系地图样式 */
.cuisine-map {
    position: relative;
    overflow: visible;
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.map-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-image:hover {
    transform: scale(1.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 100;
    position: relative;
}

.cuisine-map h4 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
}

.cuisine-map p {
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .map-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .map-image {
        max-width: 200px;
    }
}

.cuisine-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.cuisine-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.cuisine-list ul {
    margin-top: 0;
    padding-top: 10px;
}

.cuisine-list li {
    margin-bottom: 8px;
    position: relative;
}

.cuisine-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -15px;
}

html {
    scroll-behavior: smooth;
}

.cuisine-link.active {
    color: var(--accent-color);
    font-weight: bold;
    transform: translateX(5px);
}

.cuisine-list {
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cuisine-list h4 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
}

.cuisine-list ul {
    list-style-type: none;
    padding-left: 10px;
    margin: 0;
}

.cuisine-list li {
    margin-bottom: 8px;
    position: relative;
}

.cuisine-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -15px;
}

.cuisine-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    padding: 2px 0;
}

.cuisine-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.cuisine-link.active {
    color: var(--accent-color);
    font-weight: bold;
    transform: translateX(5px);
}

/* 确保菜系部分有足够的间距和正确的定位 */
.cuisine-section {
    padding-top: 100px;
    margin-top: -80px;
    scroll-margin-top: 80px;
}

.cuisine-detail {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 40px;
}

/* 特色菜系卡片链接样式 - 不依赖于特定class */
.cuisine-card a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 3px 0;
    margin-top: 12px;
    position: relative;
}

.cuisine-card a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.cuisine-card a:hover {
    color: var(--primary-color);
}

.cuisine-card a:hover::after {
    width: 100%;
}

/* 中国八大菜系背景样式 */
.cuisine-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600' style='background:%23f5f3ef'%3E%3Cg fill='none' stroke-width='2'%3E%3Cpath stroke='%23e0ddd8' d='M0 0l50 50' stroke-width='1' opacity='0.3' transform='translate(-50)'/%3E%3Cg stroke='%23c69b7b' stroke-linecap='round'%3E%3Cpath d='M80 80l25 280' stroke-width='4'/%3E%3Cpath d='M110 90l25 270' stroke-width='3.5'/%3E%3C/g%3E%3Cg transform='translate(200 150)'%3E%3Cellipse cx='0' cy='0' rx='45' ry='25' fill='%23fff' stroke='%231a3158'/%3E%3Cpath d='M-45 0c0 30 90 30 90 0' stroke='%231a3158' fill='%23f0f8ff'/%3E%3Cpath d='M-30-5l5 10-5 10' stroke='%23375a8c' stroke-width='1.5'/%3E%3C/g%3E%3Cg transform='translate(350 200)' stroke='%236b4226'%3E%3Cpath d='M0 0c0-20 30-20 30 0v30c0 20-30 20-30 0z' fill='%238b5e3c' stroke-width='3'/%3E%3Cpath d='M30 10c20 0 20 10 0 10' stroke-linecap='round'/%3E%3Cpath d='M0 10L-20 20 0 30' stroke-width='3'/%3E%3C/g%3E%3Cg transform='translate(450 100)' stroke='%237d9c4a'%3E%3Cpath d='M0 0c0 50 20 50 20 0' stroke-width='3'/%3E%3Cpath d='M10 0v-50' stroke-width='2'/%3E%3Cpath d='M5-30l5-10 5 10' stroke-width='1.5'/%3E%3C/g%3E%3Cpath d='M500 400c20-20 40 0 20 20s-40 0-20-20z' fill='%23ffd700' stroke='%23cc9900' transform='rotate(15 500 400)'/%3E%3Cg stroke='%239b72af' fill='%23e6d4f0' transform='translate(150 400)'%3E%3Ccircle cx='0' cy='0' r='22' stroke-width='3'/%3E%3Ccircle cx='20' cy='-10' r='17'/%3E%3Ccircle cx='10' cy='20' r='17'/%3E%3C/g%3E%3Cg stroke='%23c0392b' transform='translate(300 350)'%3E%3Cpath d='M0 0c0 50 20 50 20 0l-10-30' fill='%23e74c3c'/%3E%3Cpath d='M10-30v-20' stroke-linecap='round'/%3E%3C/g%3E%3Cg stroke='%238b4513' transform='translate(400 500)'%3E%3Cpath d='M0 0l20-20 20 20-20 20z' fill='%23a0522d'/%3E%3Cpath d='M20-20v40M0 0h40' stroke='%23632c0e'/%3E%3C/g%3E%3Cg transform='translate(250 500)' stroke='%232c7873'%3E%3Ccircle r='40' fill='%23e8f8f5' stroke-width='3'/%3E%3Ccircle r='30' stroke-dasharray='3 1' stroke-width='1.5'/%3E%3Cpath d='M-25-25l50 50M25-25l-50 50' stroke-opacity='0.3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.15;
  pointer-events: none;
}