/*
 * Poppy theme: header nav, page content, blog index
 */

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

body {
    background: #0d0d0d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    margin: 0;
}

.poppy-header {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #0d0d0d;
    text-align: center;
}

.poppy-nav-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poppy-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.poppy-nav a {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.6;
}

.poppy-nav a:hover,
.poppy-nav .current-menu-item a {
    color: #1ed760;
}

.poppy-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.poppy-main a {
    color: #1ed760;
}

.poppy-main a:hover {
    text-decoration: underline;
}

.poppy-title {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

/* Blog index (home.php) */
.poppy-posts {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.poppy-posts__item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.poppy-posts__item:last-of-type {
    border-bottom: none;
}

.poppy-posts__link {
    font-weight: 500;
}

.poppy-posts__date {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #888;
}

.poppy-main .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.poppy-main .nav-links a {
    padding: 0.5rem 0.75rem;
    background: #1a1a1a;
    border-radius: 4px;
}

.poppy-main .nav-links a:hover {
    background: #252525;
}
