/* =====================================================
   Working Hands Books
   Main Stylesheet
   ===================================================== */

body {
    margin: 0;
    padding: 0;
    background: #f5efe3;
    color: #2f2a24;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.7;
}

/* =====================================================
   Layout
   ===================================================== */

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
}

/* =====================================================
   Header
   ===================================================== */

.site-header {
    background: #fffdf8;
    border-bottom: 1px solid #ddd0b9;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title a {
    text-decoration: none;
    color: #3b3025;
    font-size: 2rem;
    font-weight: bold;
}

.site-nav a {
    text-decoration: none;
    color: #7a6248;
    margin-left: 20px;
}

.site-nav a:hover {
    color: #3b3025;
}

/* =====================================================
   Headings
   ===================================================== */

h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    color: #3b3025;
}

h2 {
    font-weight: normal;
    color: #7a6248;
    margin-top: 5px;
}

h3 {
    color: #3b3025;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: #7a6248; /* Matches the h2 color for a seamless look */
    margin-top: -10px;
    margin-bottom: 20px;
}

/* =====================================================
   Content
   ===================================================== */

.tagline {
    font-style: italic;
    font-size: 1.2rem;
    color: #6a5947;
    margin: 30px 0;
}

.box {
    background: #fffdf8;
    border: 1px solid #ddd0b9;
    border-radius: 10px;
    padding: 30px;
}

.quote {
    font-style: italic;
    color: #4c5d3d;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #ddd0b9;
}

/* =====================================================
   Footer
   ===================================================== */

.site-footer {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid #ddd0b9;
    text-align: center;
    color: #7a6248;
    background: #fffdf8;
}

/* =====================================================
   Links
   ===================================================== */

a {
    color: #7a6248;
}

a:hover {
    color: #3b3025;
}

/* =====================================================
   Mobile
   ===================================================== */

@media (max-width: 768px) {

    h1 {
        font-size: 2.5rem;
    }

    .site-header .container {
        flex-direction: column;
        text-align: center;
    }

    .site-nav {
        margin-top: 15px;
    }

    .site-nav a {
        display: inline-block;
        margin: 5px 10px;
    }

}