/*
Theme Name: FFMW
Theme URI: https://example.com/ffmw
Author: GMI
Author URI: https://example.com
Description: FFMW is a basic, lightweight starter WordPress theme built from scratch. Use it as a foundation to build your own custom theme.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ffmw-gmi
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =========================================
   Basic Reset
========================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

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

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

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* =========================================
   Header
========================================= */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-branding .site-title {
    font-size: 28px;
    margin: 0;
}

.site-branding .site-title a {
    color: #222;
}

.site-branding .site-description {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Main Navigation */
.main-navigation ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #222;
    font-weight: 600;
}

/* =========================================
   Content
========================================= */
.site-content {
    padding: 40px 0;
    min-height: 60vh;
}

.entry-title {
    margin-top: 0;
}

.entry-meta {
    color: #777;
    font-size: 13px;
    margin-bottom: 15px;
}

/* =========================================
   Footer
========================================= */
.site-footer {
    background: #222;
    color: #ccc;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

.site-footer a {
    color: #fff;
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 600px) {
    .site-header .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

