/*
Theme Name: Simple Blog Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A simple WordPress blog theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-blog
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header, footer {
    background: #333;
    color: white;
    padding: 20px;
}

main {
    padding: 20px;
}


.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    display: none;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.nav-menu li {
    display: inline;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #444;
        padding: 10px;
    }
    .nav-menu.active {
        display: flex;
    }
}
