

body {
    margin: 0;
    background: #0e0e0e;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page {
    max-width: 720px;          /* kontrola szerokości */
    margin: 0 auto;
    padding: 16px;
}

.flyer {
    background: #000;
    border-radius: 16px;
    overflow: hidden;          /* zaokrąglenia dla obrazów */
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}

.flyer img {
    width: 100%;
    height: auto;
    display: block;
}

/* delikatny separator */
.divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    margin: 24px 0;
}

/* desktop – trochę powietrza */
@media (min-width: 1024px) {
    .page {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}



.menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #111;
    border-radius: 14px;
    padding: 12px 8px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.menu a {
    color: #f2b01e;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.menu {
position: sticky;
top: 12px;
z-index: 100;
}


.menu a:hover {
    background: #f2b01e;
    color: #000;
}