/* ===== ShotChina Brand Styles =====
   Montserrat font, Hero film title, Brand subtitle,
   Breadcrumbs, Stamp logo, Divider
   ============================================ */

/* --- Montserrat for all headings, brand, hero --- */
h1, h2, h3, h4, h5, h6,
.msg-brand,
.msg-brand-sub,
.msg-hero-title,
.msg-section-title,
.msg-footer-slogan,
.msg-footer-copy,
.msg-nav-menu > li > a,
.shotchina-stamp-logo .stamp-en {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* --- Brand block in side nav --- */
.msg-brand-block {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.msg-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f8f4ec;
    letter-spacing: -0.02em;
}
.msg-brand-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-top: 2px;
}

/* --- Hero film title: SHOTCHINA all caps --- */
.shotchina-hero-title {
    font-size: clamp(3rem, 10vw, 7rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: #fff !important;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    margin: 0 0 0 0 !important;
    line-height: 1 !important;
}

/* --- Hero divider line --- */
.shotchina-hero-divider {
    width: clamp(80px, 20vw, 180px);
    height: 2px;
    background: var(--msg-accent);
    margin: 20px auto;
    border: none;
}

/* --- Hero subtitle --- */
.shotchina-hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.3rem) !important;
    color: #e0e0e0 !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 0 8px 0 !important;
}

/* --- Hero Chinese subtitle --- */
.shotchina-hero-cn {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.15em;
    margin: 0 0 24px 0;
}

/* --- Breadcrumbs --- */
.shotchina-breadcrumbs-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
}
.shotchina-breadcrumbs {
    font-size: 0.85rem;
    color: var(--msg-fg-dim);
}
.shotchina-breadcrumbs a {
    color: var(--msg-accent);
    text-decoration: none;
}
.shotchina-breadcrumbs a:hover {
    color: var(--msg-accent-hover);
}
.shotchina-breadcrumbs .sep {
    margin: 0 8px;
    color: #555;
}
.shotchina-breadcrumbs .current {
    color: #ccc;
}

/* --- Stamp Logo (方形头像竖版印章) --- */
.shotchina-stamp-logo {
    width: 200px;
    height: 200px;
    background: #0a0a0a;
    border: 3px solid #f8f4ec;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    margin: 0 auto;
}
.shotchina-stamp-logo::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(248,244,236,0.3);
    border-radius: 4px;
    pointer-events: none;
}
.shotchina-stamp-logo .stamp-en {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f8f4ec;
    letter-spacing: 0.05em;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.1;
    margin-bottom: 8px;
}
.shotchina-stamp-logo .stamp-cn {
    font-size: 0.8rem;
    color: #ccc;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: 8px;
}
.shotchina-stamp-logo .stamp-bottom {
    font-size: 0.6rem;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid rgba(248,244,236,0.2);
    padding-top: 6px;
    width: 100%;
}

/* --- Footer slogan --- */
.msg-footer-slogan {
    font-size: 0.85rem;
    color: var(--msg-fg-dim);
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.6;
    font-weight: 400;
}

/* --- Donation button 44px touch target (mobile) --- */
.shotchina-donate-btn {
    min-height: 48px;
    min-width: 44px;
}
@media (max-width: 768px) {
    .shotchina-donate-btn,
    .give-form input[type="submit"],
    .give-form button[type="submit"] {
        min-height: 44px !important;
        min-width: 44px !important;
        font-size: 1rem !important;
        padding: 12px 28px !important;
    }
}

/* --- Mobile: hero title slightly smaller --- */
@media (max-width: 768px) {
    .shotchina-hero-title {
        font-size: clamp(2.5rem, 14vw, 4rem) !important;
    }
    .shotchina-hero-divider {
        width: 100px;
        margin: 14px auto;
    }
    .shotchina-stamp-logo {
        width: 150px;
        height: 150px;
        padding: 12px;
    }
    .shotchina-stamp-logo .stamp-en {
        font-size: 1.1rem;
    }
    .shotchina-stamp-logo .stamp-cn {
        font-size: 0.65rem;
    }
    .shotchina-stamp-logo .stamp-bottom {
        font-size: 0.5rem;
    }
}

/* ===== Hero video fix: ensure no transform on wrap/iframe ===== */
.msg-hero-video-wrap {
    transform: none !important;
    will-change: auto;
}
.msg-hero-iframe {
    transform: translate(-50%, -50%) !important;
}
