/* Main CSS */

.site-header {
    padding: 1rem 0;
    background: var(--bg-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Post/Page Styles */
.site-main {
    padding: 2rem 20px;
}

.entry-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.entry-content {
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #fff;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        padding: 1rem;
    }

    .main-navigation.toggled ul {
        display: flex;
    }
}
