/* * static.css
 * Styles for static pages: Privacy, Manifesto, and Maintenance.
 * Depends on: common.css
 */

/* --- Layout Containers --- */
.static-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
    width: 100%;
}

.static-centered-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.maintenance-card {
    background: white;
    padding: 3rem;
    border-radius: 18px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
}

/* --- Typography & Navigation --- */
/* Fix for bullet lists in static pages */
.static-container ul {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem; /* Ensures bullets aren't too close to the edge */
}

.static-container li {
    margin-bottom: 0.75rem; /* Adds breathing room between items */
    line-height: 1.5;
    padding-left: 0.25rem;  /* Adds slight space between the dot and text */
}

/* Optional: Colors the bullet points blue to match your brand */
.static-container li::marker {
    color: var(--primary);
}

.back-link {
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.back-link:hover { text-decoration: underline; }

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.manifesto-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
}

/* --- Cards & Content --- */
.content-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid transparent;
    transition: transform 0.2s;
}
.content-card:hover { transform: translateY(-2px); }

.highlight-box {
    background: #EEF2FF;
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.highlight-box h2 { color: #1E3A8A; margin-top: 0; }
.manifesto-highlight { padding: 25px; border-radius: 12px; }

/* --- Manifesto Specifics --- */
.manifesto-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.manifesto-section { margin-bottom: 40px; }

/* Text Blocks */
.emphasis-block {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 20px;
}
.manifesto-philosophy {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-main);
}
.highlight-text {
    margin: 0;
    font-size: 1.1rem;
}
.pillars-intro {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}
.pillar-desc {
    font-size: 0.95rem;
    color: #555;
}

.lead-word {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1em;
}
.lead-reject { color: #D32F2F; }

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 600px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Pledges */
.pledge-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.pledge-list { list-style: none; padding: 0; }
.pledge-item {
    display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start;
}
.pledge-num {
    background: var(--text-main); color: white;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}
.pledge-heading {
    display: block;
    margin-bottom: 5px;
}
.pledge-desc { color: #666; }

.inline-dice {
    height: 1.4em; width: auto; vertical-align: middle;
    margin-top: -3px; border-radius: 3px; display: inline-block;
}

/* CTA Box */
.cta-box {
    text-align: center; padding: 40px;
    background: linear-gradient(135deg, #1D1D1F 0%, #3a3a3c 100%);
    color: white; border-radius: 20px; margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.cta-pre { margin-bottom: 10px; opacity: 0.8; }
.cta-text {
    font-size: 1.5rem; font-weight: 700;
    letter-spacing: -0.5px; margin: 0;
}

/* --- Maintenance Specifics --- */
.maintenance-h1 {
    font-size: 2.5rem; margin-bottom: 1rem;
    color: var(--text-main); letter-spacing: -1px;
}
.maintenance-badge {
    display: inline-block; padding: 6px 12px;
    background: #E8E8ED; border-radius: 20px;
    font-size: 0.8rem; color: #555; font-weight: 600;
    margin-top: 20px;
}
.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1; /* Removes font leading whitespace causing vertical drift */
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
}

.instagram-link svg {
    width: 1.1em;  /* Scales proportionally with the text font size */
    height: 1.1em;
    flex-shrink: 0;
    display: block; /* Prevents inline whitespace rendering */
}