/* ==========================================================================
   COMPACT PRIVACY POLICY PAGE STYLES (privacy.css)
   ========================================================================== */

:root {
    --brand-red: #c8102e;
    --brand-pill: #c8102e;
    --accent-gold: #c8a362;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.78);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --bg-main: #080808;
    --card-bg: #141414;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    -webkit-font-smoothing: antialiased;
}

/* Compact Container Setup */
.privacy-wrapper {
    width: 100%;
    max-width: 800px; /* Constrains page width for focused reading */
    margin: 0 auto;
}

.privacy-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Header Elements */
.privacy-header {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.privacy-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.privacy-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.2;
}

/* Content Body */
.privacy-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.body-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.subtle-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Featured Rule Box */
.rule-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--brand-red);
    padding: 1.5rem;
    border-radius: 6px;
}

.card-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
    display: block;
}

.rule-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer & Back Button */
.privacy-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-pill);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
    filter: brightness(1.05);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    body {
        padding: 1.5rem 1rem;
    }
    .privacy-card {
        padding: 1.75rem;
    }
    .privacy-title {
        font-size: 1.75rem;
    }
}