
/* ===== BASE PAGE ===== */

body {
    margin: 60px;
    font-family: "Times New Roman", serif;
    font-size: 14px;
    color: #111;
    background-color: #f6f3ea; /* soft paper tone */
    line-height: 1.6;
}

/* Optional paper texture overlay */
body.paper {
    background-image: url("images/paper-texture.jpg");
    background-repeat: repeat;
}

/* ===== LINKS ===== */

a {
    color: #6b7a2b; /* olive green */
    text-decoration: none;
}

a:hover {
    color: #111;
}

/* ===== SIDE NAVIGATION ===== */

.nav {
    position: fixed;
    left: 40px;
    top: 80px;
    font-family: "Courier New", monospace;
    font-size: 13px;
    line-height: 1.8;
}

.nav a {
    display: block;
}

/* ===== MAIN CONTENT COLUMN ===== */

.content {
    max-width: 600px;
    margin-left: 220px; /* makes room for side nav */
}

/* ===== FLOATING / COLLAGE ITEMS ===== */

.floating {
    position: absolute;
    z-index: 1;
}

/* Text that sits on images */
.floating-note {
    position: absolute;
    z-index: 2;
    font-family: "Courier New", monospace;
    font-size: 13px;
    background-color: rgba(246,243,234,0.85);
    padding: 6px;
}

/* ===== IMAGES ===== */

img {
    max-width: 100%;
    height: auto;
}

/* ===== BACKGROUND OPTIONS YOU CAN ADD TO BODY ===== */

/* Full screen image that scrolls */
body.bg-scroll {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Full screen image that stays fixed */
body.bg-fixed {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* ===== MOBILE VERSION ===== */

.mobile-content {
    display: none;
}

@media only screen and (max-width: 768px) {

    body {
        margin: 20px;
        font-size: 16px;
        background-image: none;
    }

    .nav {
        position: static;
        margin-bottom: 30px;
    }

    .content {
        margin-left: 0;
        max-width: 100%;
    }

    .floating,
    .floating-note {
        display: none;
    }

    .mobile-content {
        display: block;
    }
}
