/* ---------------------------------------------------------
   Global Typography & Layout
--------------------------------------------------------- */

body {
    margin: 0;
    padding: 0;
    font-family: "Georgia", "Times New Roman", serif;
    background: black;
    color: #dddddd;
    line-height: 1.65;
    background-size: cover;
}

/* Smooth, book-like text rendering */
body, h1, h2, h3, p {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ---------------------------------------------------------
   Unified Page Header
--------------------------------------------------------- */

.header {
    max-width: 820px;
    margin: 80px auto 50px;
    text-align: center;
    padding: 0 20px;
}

.header h1 {
    font-size: calc(0.2rem + 3.5vmin);
    font-weight: 400;
    color: #dddddd;
    margin-bottom: 12px;
    letter-spacing: 0.6px;
}


.intro {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem; /* universal breathing room */
    text-align: left;
    color: #dddddd;
}


/* ---------------------------------------------------------
   Content Wrapper
--------------------------------------------------------- */

.content {
    max-width: 820px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

/* Section titles inside content */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e0e0e0 ;
    margin: 40px 0 20px;
    letter-spacing: 0.5px;
}

/* Citations */
.citation {
    font-size: 1.1rem;
    color: #e0e0e0 ;
    margin-bottom: 24px;
}

/* QR images */
.qr {
    display: block;
    margin: 40px auto;
    max-width: 12rem;
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

#footer {
    text-align: center;
    padding: 4em 0;
    font-size: calc(1rem + .5vmin);
}

#footer p {
    color: #e0e0e0;
    font-weight: 600;
}

/* ---------------------------------------------------------
   Mobile Refinements
--------------------------------------------------------- */

@media screen and (max-width: 1024px) {

    .header {
        margin-top: 140px; /* clears nav */
    }

    .header h1 {
        font-size: 1.5rem;
    }

    ..intro {
        font-size: 1.1rem;
        padding: 0 24px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    #footer {
        padding: 2em 1.5em;   /* vertical | horizontal */
    }
}

a {
    color: inherit;
    text-decoration: none;
}


