
body{
background:#0b0b0b;
color:white;
font-family:Georgia,serif;
margin:0;
}

.menu{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:black;
border-bottom:2px solid gold;
}

.menu a{
color:gold;
margin-right:20px;
text-decoration:none;
font-size:18px;
}

.logo{
width:100px;
}

.hero{
height:500px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(45deg,#000,#1a1a1a);
}

.hero h2{
font-size:48px;
color:gold;
animation:goldGlow 3s infinite alternate;
}

@keyframes goldGlow{
0%{text-shadow:0 0 10px gold;}
100%{text-shadow:0 0 40px gold;}
}

#catalog{
display:grid;
grid-template-columns:repeat(auto-fit,250px);
gap:20px;
padding:20px;
}

.card{
background:#111;
border:1px solid gold;
padding:10px;
}

.card img{
width:100%;
}

#map{
height:600px;
}

footer{
text-align:center;
padding:20px;
border-top:2px solid gold;
}
.artifact-card:hover img {
    transform: scale(1.05); /* Lekkie powiększenie po najechaniu */
}

.artifact-card h3 {
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.artifact-card p {
    font-size: 0.9em;
    line-height: 1.4;
}
