/* ============================================================
   PAGES.CSS — Premium Layouts for About, Contact, & Policies
   Vietnam Unlock Theme
   ============================================================ */

/* ── GLOBAL PAGE WRAP ───────────────────────────────────────── */
.page-standard-wrap {
    background-color: var(--card-bg); /* Creamy/Light */
    padding: 60px 0 80px;
    min-height: 80vh;
}

.page-narrow-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px;
}

.page-content {
    color: var(--olive);
    font-size: 19px;
    line-height: 1.75;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
    color: var(--olive);
    text-align: center;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-top: 48px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(61, 74, 45, 0.1);
    padding-bottom: 16px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content hr {
    border: none;
    border-top: 1px solid rgba(61, 74, 45, 0.1);
    margin: 48px 0;
}

/* ── ABOUT PAGE SPECIFIC ────────────────────────────────────── */
.about-lead {
    font-size: 26px;
    font-style: italic;
    color: rgba(61, 74, 45, 0.85);
    margin-bottom: 32px;
    text-align: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.cred-item {
    background: #fff;
    padding: 24px;
    border-left: 3px solid var(--amber);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    font-size: 16px;
    line-height: 1.5;
}

.cred-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--amber);
}

.affiliate-note {
    background: #f4eee2;
    padding: 40px;
    border-radius: 8px;
    margin-top: 48px;
}

/* ── CONTACT PAGE SPECIFIC ──────────────────────────────────── */
.contact-hero-box {
    background: var(--light-amber); /* pale amber */
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid rgba(220, 165, 0, 0.2);
}

.contact-hero-box h4 {
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    color: var(--amber);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--olive);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 12px;
}

.contact-link:hover {
    background: var(--amber);
    color: var(--olive);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .page-content h1 { font-size: 48px; }
    .contact-grid, .credentials-grid { grid-template-columns: 1fr; }
}
