/* Blog List Stylesheet (blogstyle.css) */

/* Base styles */
body {
    font-family: sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    line-height: 1.5;
    color: #4a4a4a;
    background-color: #faf5f0;
}

/* Header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    max-width: 300px;
    border-bottom: 1px solid #d7ccc8;
    padding-bottom: 1rem;
}

header img {
    height: 300px;
    margin-bottom: 1rem;
    width: auto;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    text-align: center;
}

/* Responsive logo scaling */
@media (max-width: 500px) {
    header img {
        height: 150px;
    }

    header h1 {
        font-size: 1.8rem;
    }
}

/* Navigation */
nav a {
    margin-right: 1rem;
    text-decoration: none;
    color: #b45a33;
    font-weight: 600;
}

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

/* Entry list */
ul#entry-list {
    list-style: none;
    padding: 0;
}

ul#entry-list li {
    background: white;
    border: 1px solid #d7ccc8;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: background-color 0.2s;
}

ul#entry-list li:hover {
    background-color: #f1eae4;
}

ul#entry-list a {
    color: #b45a33;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

ul#entry-list a:hover {
    color: #8a9a5b;
    text-decoration: underline;
}

.entry-date {
    font-size: 0.85rem;
    color: #8a9a5b;
    margin-top: 0.25rem;
}
