/**
 * Aethraify Core - Main Stylesheet
 *
 * Core styles for Aethraify theme.
 *
 * @package Aethraify
 * @since 1.0.0
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

.aethraify-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.aethraify-site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.aethraify-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.aethraify-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aethraify-header__branding {
    flex-shrink: 0;
}

.aethraify-header__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.aethraify-header__title a {
    color: #333;
    text-decoration: none;
}

.aethraify-header__title a:hover {
    color: #000;
}

.aethraify-header__nav {
    flex-shrink: 0;
}

.aethraify-header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.aethraify-header__menu a {
    color: #333;
    text-decoration: none;
}

.aethraify-header__menu a:hover {
    color: #000;
}

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

.aethraify-main {
    flex: 1;
}

.aethraify-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ==========================================================================
   Posts
   ========================================================================== */

.aethraify-posts {
    display: grid;
    gap: 2rem;
}

.aethraify-post {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.aethraify-post:last-child {
    border-bottom: none;
}

.aethraify-post__title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.aethraify-post__title a {
    color: #333;
    text-decoration: none;
}

.aethraify-post__title a:hover {
    color: #000;
}

.aethraify-post__meta {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.aethraify-post__thumbnail {
    margin-bottom: 1.5rem;
}

.aethraify-post__image {
    width: 100%;
    height: auto;
    display: block;
}

.aethraify-post__content {
    margin-bottom: 1rem;
}

.aethraify-post__more-link {
    color: #333;
    text-decoration: underline;
}

.aethraify-post__more-link:hover {
    color: #000;
}

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

.aethraify-footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

.aethraify-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.aethraify-footer__menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    gap: 1.5rem;
}

.aethraify-footer__menu a {
    color: #666;
    text-decoration: none;
}

.aethraify-footer__menu a:hover {
    color: #333;
}

.aethraify-footer__copyright {
    font-size: 0.875rem;
    color: #666;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.aethraify-no-posts {
    padding: 2rem;
    text-align: center;
}

