/* STYLES.css
   Consolidated stylesheet for The Orchidarium
   Replaces styles.css + Rec_story_style.css
*/

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: "Palatino Linotype",Palatino,"Book Antiqua",Georgia,serif;
    background-image: url("../images/ricepaper.png");
}

*, *::before, *::after {
    box-sizing: border-box;
}

.page-shell {
    width: 100%;
    max-width: 1120px;
    margin: 22px auto;
    box-shadow: 0 4px 14px rgba(0,0,0,.55);
}
.topic-thin {
    max-width: 850px;
    margin: 10px auto;
    padding: 5px;
    border: 1px solid #3a0000;
    border-radius: 8px;
    background-color: #fcf3d1;
    box-shadow: 1px 1px 10px #000;
}

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

.record-photo {
    width: 100%;
    border: 2px solid #C79B00;
}

.gold-shadow {
    box-shadow: 0 0 0 3px #C79B00,0 4px 12px rgba(0,0,0,.45);
}

.soft-shadow {
    box-shadow: 0 3px 9px rgba(0,0,0,.45);
}

a {
    color: forestgreen;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

h1, h2, h3 {
    font-family: "Palatino Linotype",Palatino,"Book Antiqua",Georgia,serif;
}
/* =========================
   TYPOGRAPHY
========================= */
h1 {
    color: #8b5a3c;
    text-align: right;
    font-size: 2.55rem;
    margin: 20px 0 24px;
    line-height: 1.05;
    font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
    text-transform: uppercase;
}

h2 {
    font-size: 1.35rem;
    color: #5A2F1A;
    text-align: right;
    margin: 16px 0 8px;
    line-height: 1.05;
}

h3 {
    font-size: 1.15rem;
    color: #5A2F1A;
    text-align: center;
    margin: 12px 0;
}

p {
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    margin: 10px 0 0.8em;
    color: #000;
    line-height: 1.05;
    font-size: 14px;
}
.nav-cell {
    text-align: center;
}

table {
    border-collapse: collapse;
}

@media (max-width:760px) {

    .page-shell {
        width: 96%;
        margin: 8px auto;
    }

    .stack-table,
    .stack-table tbody,
    .stack-table tr,
    .stack-table td {
        display: block;
        width: 100% !important;
    }

        .stack-table td {
            padding: 10px 16px;
        }

    .nav-cell {
        text-align: left !important;
        padding-top: 4px !important;
        line-height: 2;
    }

    .record-photo {
        margin: 0 auto;
    }


}
