/* ===== VLOŽ DO SVÉ CSS SEKCE ===== */

/* ZÁHLAVÍ */
.site-header {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-image: url('images/header.jpg'); /* ← změň název souboru */
  background-size: cover;
  background-position: top;
}
.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* POZADÍ STRÁNKY */
.site-body {
  position: relative;
}
.site-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/bg.jpg'); /* ← změň název souboru */
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}

/* OBRÁZEK VE STŘEDU */
.center-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 20px 0;
}

/* ZÁPATÍ */
.site-footer {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background-image: url('images/footer.jpg'); /* ← změň název souboru */
  background-size: cover;
  background-position: center;
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}
.site-footer > * {
  position: relative;
  z-index: 1;
}
