﻿body {
    margin: 0;
    padding: 0;
    font-family: "Georgia", serif;
    background: #2b1e16;
    color: #f2e7d8;
}

/* HERO */
.hero {
    height: 220px;
    background: url('img/header.jpg') center/cover no-repeat;
}
.hero-overlay {
    background: rgba(30, 20, 10, 0.55);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f8f1e7;
    font-size: 40px;
}

/* MENU */
.main-nav {
    text-align: center;
    background: #3a2a20;
    padding: 15px 0;
}
.main-nav a, .main-nav span {
    color: #f2e7d8;
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}
.main-nav .active {
    text-decoration: underline;
}

/* BLOK TREŚCI */
.container {
	max-width: 800px;
	width: 1000px;
	margin: 40px auto;
	background: #3a2a20;
	padding: 30px;
	border-radius: 12px;
}

/* LISTA ZABYTKÓW */
.monument-list {
    list-style: none;
    padding: 0;
}
.monument-item {
    display: flex;
    gap: 15px;
    background: #4a3527;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
}
.monument-title {
    font-size: 20px;
    font-weight: bold;
}
.monument-info {
    font-size: 14px;
    color: #d9c4a8;
}

/* MINIATURKI */
.mini {
    width: auto;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    cursor: pointer;
}

/* LINK DO GALERII */
.gallery-link {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 10px;
    background: #6d452c;
    color: #f2e7d8;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.gallery-link:hover {
    background: #8a5a3a;
}
/* powrót do ulic */
.back {
   
    bottom: 25px;
    right: 25px;
    background: #6d452c;
    color: #f2e7d8;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    opacity: 0.8;
    transition: 0.3s;
	}

/* POWRÓT DO GÓRY */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #6d452c;
    color: #f2e7d8;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    opacity: 0.8;
    transition: 0.3s;
    z-index: 999;
}
.back-to-top:hover {
    opacity: 1;
    background: #8a5a3a;
}

/* LIGHTBOX */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #bfa98a;
}
#lightbox-overlay span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #bfa98a;
    cursor: pointer;
}
h1, h2, h3 {
    font-family: "Georgia", "Times New Roman", serif;
}
.main-nav a:hover {
    color: #d9c4a8;
}