/*
Theme Name: OnePage Theme
Theme URI: https://example.com/onepage-theme/
Author: Cline
Author URI: https://example.com/
Description: A simple one-page WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, custom-menu, featured-images, theme-options
Text Domain: onepagetheme
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f1f1f1;
    margin: 0;
    padding: 0;
}

.site {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.site-content {
    padding: 2em;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    padding: 2em;
    border-bottom: 1px solid #eee;
}

.site-title {
    margin: 0;
    font-size: 2em;
}

.site-description {
    margin: 0;
    color: #777;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1em;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.entry-header {
    margin-bottom: 2em;
}

.entry-title {
    margin: 0;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2em;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    padding: 2em;
    border-top: 1px solid #eee;
    text-align: center;
    color: #777;
}
