
/* Reset i bazowy styl */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a120b;
    color: #f5deb3;
}
header {
    background-color: #2c1b10;
    text-align: center;
    padding: 20px;
}
nav {
    background-color: #3a2616;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #f5deb3;
    padding: 10px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #f5deb3;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover,
nav ul li a.active {
    color: #e7c77d;
    border-bottom: 2px solid #e7c77d;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }
    nav ul.active {
        display: flex;
    }
}

/* Galeria pozioma */
.gallery,
.gallery2 {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.gallery img,
.gallery2 img {
    flex: 0 0 auto;
    width: 240px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #bfa76f;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.2s ease;
}
.gallery img:hover,
.gallery2 img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    border: 3px solid #fff;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transform: translateY(-50%);
    z-index: 10000;
}
.lightbox-nav.prev {
    left: 20px;
}
.lightbox-nav.next {
    right: 20px;
}
