/*
Theme Name: Wizytówka Remonty Łazienek Blue
Author: Firma Remontowa
Description: Header na górze, footer na dole, SEO lokalne
Version: 2.0
*/

* { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: system-ui, Arial, sans-serif;
    background: #e9f2fb;
    color: #1a1a1a;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.containerhf {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

main.container {
    flex: 1;
}

/* HEADER */
.site-header {
    background: #1e88e5;
    color: #fff;
    padding: 30px;
}

.site-header h1 {
    margin: 0 0 15px 0;
    font-size: 32px;
}

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

.site-logo img{
    max-height:60px;
    width:auto;
}

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

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* CONTENT */
.content {
    padding: 40px;
    line-height: 1.8;
}

/* FOOTER */
.site-footer {
    background: #1e88e5;
    color: #fff;
    padding: 30px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .menu { flex-direction: column; }
    .content { padding: 25px; }
}
