
/*
Theme Name: Matematyka
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: Motyw WordPress z Oswald dla nagłówków i Times New Roman dla treści. Z responsywnym menu.
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: matematyka
*/

body {
    font-family: "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding-left: 1%;
    padding-right: 1%;
}

h1, h2, h3, h4, h5, h6, .site-title {
    font-family: 'Oswald', sans-serif;
}

a {
    color: #000000;
    text-decoration: none;
}

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

/* Kontener nagłówka */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Menu poziome */
.menu-horizontal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu-horizontal li {
    display: inline;
}

.menu-horizontal li a {
    text-decoration: none;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.menu-horizontal li a:hover {
    color: #8c794e;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsywność */
@media (max-width: 768px) {
    .menu-horizontal {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #f5f5f5;
        padding: 10px;
        position: absolute;
        top: 60px;
        right: 1%;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .menu-horizontal.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
