/* ============================================================
   Privacy Policy Page — 纵向滚动图画廊
   ============================================================ */

body {
    background-color: #faf7f4;
}

.container {
    margin: 100px auto 0px;
    max-width: 900px;
    min-width: 320px;
    padding: 0 20px;
}

/* 页面标题 */
.privacy-title {
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    color: #eb6100;
    padding: 40px 0 20px;
    letter-spacing: 2px;
    font-weight: 700;
}

.privacy-subtitle {
    text-align: center;
    font-size: 15px;
    color: #642f2d;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 纵向画廊容器 */
.privacy-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 60px;
}

/* 单张图片 */
.gallery-item {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    background: #fff;
}

.gallery-item:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 滚动揭示动画 — 使用 interactions.js 中已有的 reveal-element */
.gallery-item.reveal-element[data-reveal="fade-up"] {
    transform: translateY(50px);
}

.gallery-item.reveal-element.revealed[data-reveal="fade-up"] {
    transform: translateY(0);
}

/* 页脚 */
.privacy-footer {
    text-align: center;
    padding: 30px 20px 50px;
    color: #642f2d;
    font-size: 14px;
    line-height: 2;
}

.privacy-footer h3 {
    font-size: 20px;
    color: #eb6100;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .container {
        margin-top: 80px;
        padding: 0 12px;
    }

    .privacy-title {
        font-size: 24px;
        padding: 30px 0 10px;
    }

    .privacy-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .privacy-gallery {
        gap: 16px;
        padding-bottom: 40px;
    }

    .gallery-item {
        border-radius: 8px;
    }
}