
:root{
  --primary:#8b0000;
  --dark:#222;
  --light:#f7f7f7;
}

body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  color:#333;
  line-height:1.7;
  background:#fff;
}

.navbar{
  position:fixed;
  top:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 24px;
}

.logo-nav{
  height:44px;
  border-radius:50%;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:22px;
  margin:0;
  padding:0;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:600;
}

.hero{
  background:linear-gradient(180deg, var(--primary), #650000);
  color:#fff;
  padding:150px 20px 90px;
  margin-top:60px;
  text-align:center;
}

.hero-top{
  max-width:1100px;
  margin:0 auto 30px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
}

.logo-hero-left{
  height:170px;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.stop-logo{
  height:170px;
}

.hero-text h1{
  margin:0;
  font-size:38px;
  letter-spacing:.5px;
}

.hero-text p{
  margin-top:12px;
  font-size:18px;
  opacity:.9;
}

section{
  max-width:1000px;
  margin:auto;
  padding:70px 24px;
}

section h2{
  margin-bottom:20px;
  font-size:28px;
  text-align:center;
}

section p, section ul{
  max-width:800px;
  margin:auto;
}

ul{
  padding-left:18px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-top:40px;
}

.gallery img{
  width:100%;
  border-radius:10px;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}

footer{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:30px 20px;
  font-size:14px;
}


/* === GALERIA: wyrównanie + zoom === */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  cursor:zoom-in;
  transition:transform .25s ease, box-shadow .25s ease;
}

.gallery img:hover{
  transform:scale(1.03);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* === LIGHTBOX === */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  cursor:zoom-out;
}
