:root {
  --gold: #d4af37;
  --bg: #000;
  --bg-soft: #111;
  --text: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }
body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Container */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Top nav */
.site-nav {
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand { color: var(--gold); text-decoration: none; font-weight: 700; }
.links a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 18px;
}
.links a:hover { text-decoration: underline; }

/* HERO — tło tylko tutaj */
.hero {
  position: relative;
  background-image: url('images/hero.jpg'); /* wgraj obraz do /images/hero.jpg */
  background-size: cover;
  background-position: center;
  min-height: 70vh;     /* <— nie pełny ekran, żeby nic nie znikało */
  display: flex;
  align-items: center;
  color: var(--text);
}
.hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.55));
}
.hero__content {
  position: relative; /* żeby tekst był nad overlay */
  padding: 48px 0;
  text-align: left;
}
.hero h1 { font-size: clamp(1.6rem, 3.5vw, 3rem); color: var(--gold); }
.hero h2 { margin-top: 8px; font-size: clamp(1rem, 2.2vw, 1.5rem); }
.tagline { margin: 16px 0 8px; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gold); }
.gold-line {
  border: none;
  border-top: 2px solid var(--gold);
  width: 200px;
  margin: 12px 0 0;
}
.cta-row { margin-top: 18px; }
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--gold);
  color: #000;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}
.btn:hover { filter: brightness(1.05); }

/* Sekcje */
.pad { padding: 28px 0 40px; }

.socials { padding: 28px 0; }
.socials h3 { color: var(--gold); margin-bottom: 10px; }
.socials ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 18px; }
.socials a { color: var(--gold); text-decoration: none; }
.socials a:hover { text-decoration: underline; }

/* Galeria */
.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--gold);
  border-radius: 10px;
  transition: transform .25s ease;
}
.gallery img:hover { transform: scale(1.03); }
.pager { margin-top: 22px; }

/* Stopka */
.site-footer {
  background: var(--bg-soft);
  margin-top: 40px;
  padding: 18px 0;
  color: var(--gold);
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.25);
}

/* Telefon */
@media (max-width: 768px) {
  .hero { min-height: 55vh; }
  .nav-inner { flex-direction: column; gap: 8px; }
  .links a { margin: 0 10px; }
}
