/*
Theme Name: My Custom Theme
Theme URI: https://your-site.com/my-custom-theme
Author: Jonny
Author URI: https://your-site.com
Description: A custom WordPress theme exported via Theme Exporter plugin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005177;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* === LAYOUT === */
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
}

.site-title a {
    color: #333;
}

.site-description {
    font-size: 14px;
    color: #666;
}

/* === NAVIGATION === */
.main-navigation {
    margin: 15px 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    font-weight: 500;
    padding: 5px 0;
}

/* === CONTENT === */
.site-content {
    padding: 40px 0;
}

.entry-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.entry-content {
    margin-bottom: 30px;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.entry-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
}

/* === SIDEBAR === */
.widget-area {
    padding: 20px 0;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0073aa;
}

/* === FOOTER === */
.site-footer {
    padding: 30px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }

    .entry-title {
        font-size: 24px;
    }
}
