/* stylesheet.css – Fresh clean version for EVERETT (Feb 2026) */

body {
    background: #e8e8e8;     /* subtle gray background */
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
    color: #333;
}

/* Header – deep navy blue */
header {
    text-align: center;
    padding: 4rem 0 3rem;
    background: #003366;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 4.5rem;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-weight: bold;
}

/* Article cards (including quote card) */
.content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.content + .content {
    margin-top: 6rem;   /* space between cards */
}

.content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: normal;
}

.content p {
    text-align: justify;
    line-height: 1.7;
    font-size: 1.1rem;
    text-indent: 2.5em;
    margin: 0 0 1rem 0;
}



/* Quote card – first special card */
.quote-card {
    text-align: center;
    padding: 4rem 2.5rem;
}

.quote-card .quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Force quote to match h2 size exactly (beats script overrides) */
.quote-card #bq-subtitle,
.quote-card #bq-subtitle * {
    font-size: 2rem !important;
    font-style: italic !important;
    font-weight: normal !important;
    line-height: 1.6 !important;
    color: #333 !important;
    padding: 0 1rem !important;
    margin: 0 !important;
}

/* Subtle line under quote */
.quote-card::after {
    content: '';
    display: block;
    width: 150px;
    margin: 3rem auto 0;
    border-top: 1px solid #ddd;
}

/* Footer image – forcefully centered */
.footer-image {
    max-width: 800px;
    margin: 6rem auto 3rem;
    text-align: center !important;   /* double insurance */
    padding: 0 !important;           /* no left/right push */
}

.footer-image img {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: block !important;
    margin: 0 auto !important;       /* centers it reliably */
}

/* Footer – medium blue */
footer {
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    background: #0066cc;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

/* Mobile tweaks – smoother on phones */
@media (max-width: 480px) {
    .content {
        margin: 3rem auto;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .quote-card {
        padding: 3rem 1.5rem;   /* keeps quote roomy but not huge */
    }
    
    .content h2 { 
        font-size: 1.8rem; 
    }
    
    #bq-subtitle,
    #bq-subtitle * {
        font-size: 1.8rem !important;   /* matches mobile headings */
    }
    
    .content p { 
        font-size: 1rem; 
    }
    
    .footer-image { 
        margin: 4rem auto 2rem; 
    }
    
    .footer-image img { 
        max-width: 100%; 
    }
    
    .quote-card::after {
        width: 100px;   /* shorter line on small screens */
    }
}