/* 此css文件仅用作Home */

body { padding-top: 56px;
background-color: rgb(246, 241, 234);  
}

.text1 {  font-family: 'Calistoga', serif;
            padding-top: 50px; 
            text-align: center;
            color: rgb(64, 81, 68);
        }

        .wave-container {
            position: relative;
            width: 100%;
            height: 280px;
            margin-top: -1px;
        }

        .wave-container svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

.dark-green-section {
            font-family: 'Calistoga', serif;
            background-color: rgb(64, 81, 68);
            color: white;
            padding: 70px 20px; /* 内容区域 */
            text-align: center;

        }
    
        .wave-top-layer {
            fill: #9DA39F;
        }

        h1, p {
            position: relative;
            z-index: 4;
        }

strong {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ------------------------------------------------ */

.dark-green-section {
    position: relative;
}

/* 所有交错色块的总容器 */
.shape-stack-container {
    position: relative;
    width: 100%;
    height: 650px;
    margin-top: 120px;
}

/* 所有色块的通用基础样式 */
.shape-block {
    position: absolute;
    padding: 30px;
    box-sizing: border-box; /* 确保内边距不会撑大盒子 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    text-indent: 2em;
    flex-direction: column;
}

/* 色块内文字的样式 */
.shape-block p {
    font-family: 'Calistoga', serif;
    font-size: 22pt;
    line-height: 1.6;
    color: rgb(64 81 68);
}

/* 定义每个色块的具体位置、大小和颜色 */

/* 左上角的白色文字块 */
.shape-block-top-left {
    width: 43%;
    height: 320px;
    background-color: rgb(246, 241, 234);
    top: 50px;
    left: 5%;
    z-index: 3;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* 右下角的白色文字块 */
.shape-block-bottom-right {
    width: 43%;
    height: 400px;
    background-color: rgb(246, 241, 234);
    top: 120px;
    right: 5%;
    z-index: 4;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* 中间的红色块 */
.shape-block-bg-2 {
    width: 45%;
    height: 320px;
    background-color: rgb(156, 60, 41);
    top: 80px;
    left: 32%;
    z-index: 2;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* 最底层的灰色块 */
.shape-block-bg-1 {
    height: 440px;
    background-color: #BCB3A0; /* 灰色 */
    top: 0px;
    left: 35%;
    right: 45%;
    z-index: 1;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.shape-block-3-1 p {
    font-family: 'Calistoga', serif;
    font-size: 22pt;
    line-height: 2;
    color: rgb(64 81 68);
}

.shape-block-4-2 p {
    font-family: 'Calistoga', serif;
    font-size: 22pt;
    line-height: 2;
    color: rgb(64 81 68);
}

.shape-block-3-1 {
    width: 65%;
    height: 260px;
    background-color: rgb(246, 241, 234);
    top: 620px;
    left: 50px;
    z-index: 4;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 80px;
}

.shape-block-3-2 {
    width: 25%;
    height: 260px;
    background-color: #BCB3A0;
    top: 620px;
    right: 50px;
    z-index: 4;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.shape-block-4-1 {
    width: 44.5%;
    height: 260px;
    background-color: #BCB3A0;
    top: 980px;
    left: 50px;
    z-index: 4;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.shape-block-4-2 {
    width: 44.5%;
    height: 260px;
    background-color: rgb(246, 241, 234);
    top: 980px;
    right: 50px;
    z-index: 4;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 60px;
}


/* --- 图片色块的特定样式 --- */
.shape-block-image {
    display: flex;
    justify-content: center;
    bottom: 40px;
    position: relative; 
}

/* --- 图片重叠和大小控制 --- */
.shape-block-image img {
    max-width: 420%;
    height: auto; /* 保持图片比例 */
    display: block;
}

.image-overlay {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}

/* --- U型摇晃动画的关键帧定义 --- */
@keyframes shakeU {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    25% { 
        transform: translate(-80%, -50%) rotate(15deg); 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    75% { 
        transform: translate(-80%, -50%) rotate(15deg); 
    }
    100% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
}

.shakeU-image {
    animation: shakeU 4s ease-in-out 1; 
    animation-play-state: paused;
    z-index: 2;
}
.shakeU-image.is-visible {
    animation-play-state: running;
}

/* ------------------------------------------------ */

.image-text-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-color:rgb(64, 81, 68) ;
}

/* 左边的图片块 */
.image-column {
    position: absolute;
    width: 42.5%;
    top: 70px;
    left: 6%;
    z-index: 1;
}

.image-column img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 右边的文本块 */
.text-column {
    position: absolute;
    width: 42.5%;
    top: 80px;
    right: 6%;
    z-index: 2;
}

.text-column p {
    font-family: 'Calistoga', serif;
    font-size: 24pt;
    line-height: 2;
    color: rgb(247 241 233);
    text-indent: 2em;
}

/* ------------------------------------------------ */
.curved-section {
    position: relative; 
    height: 650px;
    background-color: #f2f2f2;
    overflow: hidden;
}

.curved-section::before {
    content: '';
    position: absolute;

    width: 150%; /* 让伪元素比容器宽，这样弧度看起来更平缓 */
    height: 500px; /* 弧形的高度 */
    border-radius: 100% 0 0 0; /* 将上半部分变为圆形 */
    left: -5%; 
    bottom: 0;
    background-color: rgb(64, 81, 68);
    z-index: 1;
}

.curved-section-content {
    position: relative;
    z-index: 2;
    max-width: 28%;
    float: right; 
    margin-top: 260px;
    margin-right: 5%;
}

.curved-section-content p {
    font-family: 'Calistoga', serif;
    color: rgb(242 241 242);
    font-size: 24pt;
    line-height: 2.4;
    text-align: right;
}

.text2 {  font-family: 'Calistoga', serif;
            padding-top: 120px; 
            text-align: center;
            color: rgb(242, 242, 242);
            background-color:rgb(64, 81, 68) ;
            line-height: 2;
            height: 800px;
            font-weight: bold;
            letter-spacing: 0.09em;
        }

/* ------------------------------------------------ */
.mountain-divider-section1 {
    position: relative; 
    height: 350px;
    background-color: #405144; 
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.mountain-divider-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    display: block;
}

.mountain-divider-content1 {
    margin-top: 240px;
}

.mountain-divider-section1 h1 {
    font-family: 'Calistoga', serif;
    color: rgb(64, 81, 68);
    font-size: 100pt; 
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.text3 {   font-family: 'Calistoga', serif;
            padding-top: 40px; 
            text-align: center;
            color: rgb(64, 81, 68);
            line-height: 2;
            height: 820px;
            font-size: 34pt;
        }

.text4 {   font-family: 'Calistoga', serif;
            text-align: center;
            color: rgb(64, 81, 68);
            line-height: 2;
            height: 360px;
            font-size: 58pt;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

.image1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.image1 img {
    width: 600px;
}

.text5 {    font-family: 'Calistoga', serif;
            text-align: center;
            color: rgb(64, 81, 68);
            font-size: 36pt;
            font-weight: bold;
            margin-top: 180px;
            letter-spacing: 0.09em;
            height: 80px;
        }

.text6 {    font-family: 'Calistoga', serif;
            text-align: center;
            color: rgb(64, 81, 68);
            font-size: 64pt;
            height: 240px;
        }

/* ------------------------------------------------ */
.mountain-divider-section2 {
    position: relative; 
    height: 350px;
    background-color: rgb(247 241 233); 
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.mountain-divider-svg2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    display: block;
}

.mountain-divider-content2 {
    margin-top: 180px;
}

.mountain-divider-section2 p {
    font-family: 'Calistoga', serif;
    color: #f7f1e9;
    font-size: 24pt; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ------------------------------------------------ */
.two-column-section {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 顶部对齐 */
    gap: 60px; /* 两列之间的间隙 */
    padding: 140px 20px; /* 区块的上下和左右内边距 */
    background-color: #405144;
}

.content-column {
    flex: 1; /* 让每一列占据相等的空间 */
    max-width: 700px; /* 设置每一列的最大宽度 */
    text-align: center;
}

/* 图片的包装盒样式 */
.column-image-wrapper {
    height: 300px;
    margin-bottom: 20px; /* 图片和文字之间的间距 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-image-wrapper img {
    max-width: 120%;
    max-height: 120%;
    height: auto;
}

/* 文字样式 */
.column-text p {
    font-family: 'Calistoga', serif;
    color: #f7f1e9;
    font-size: 24pt;
    line-height: 3;
}

.column-text strong {
    font-weight: bold; 
}

@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
        align-items: center;
    }
}

.text7 {  font-family: 'Calistoga', serif;
            text-align: center;
            color: rgb(247,241,233);
            background-color:rgb(64, 81, 68) ;
            line-height: 2;
            height: 900px;
        }


/* 此css文件仅用作Home */
