/* Warm, vintage recipe book styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5e6d3;
    color: #5a4a3a;
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.8;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #8b4513;
    font-size: 2.8em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h3 {
    color: #a0522d;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #d2a679;
    padding-bottom: 8px;
    font-weight: normal;
}

h4 {
    color: #8b6914;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    color: #6b5a4a;
}

/* Links */
a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b4513;
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin: 20px 0 20px 40px;
}

ul li, ol li {
    margin-bottom: 10px;
    color: #6b5a4a;
}

ul li::marker {
    color: #b8860b;
}

ol li::marker {
    color: #b8860b;
    font-weight: bold;
}

/* Images */
img {
    display: block;
    margin: 25px auto;
    border: 8px solid #e8d4b8;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

/* Index page specific */
body > ul {
    list-style: none;
    margin: 40px 0;
}

body > ul li {
    background-color: #efe0cc;
    margin: 15px 0;
    padding: 18px 25px;
    border-left: 5px solid #b8860b;
    border-radius: 3px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body > ul li:hover {
    transform: translateX(5px);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
    background-color: #e8d4b8;
}

body > ul li a {
    font-size: 1.3em;
    display: block;
}