/* === BODY === */
body {
  margin: 0;
  font-family: Arial, sans-serif;

  background-image: url("wood.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* jemné zesvětlení */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.6);
  z-index: -1;
}

/* === HERO === */
.hero {
  background-image: url("5.jpg");
  background-size: cover;
  background-position: center;
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 40px;
  text-shadow:
    -2px -2px 0 black,
     2px -2px 0 black,
    -2px  2px 0 black,
     2px  2px 0 black;
}

/* === HEADER (BEZ BOXU!) === */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

/* logo */
.logo {
  width: 120px;
}

/* === NADPIS === */
.nadpis {
  font-size: 32px;
  text-align: center;
  margin: 20px 0;
}

/* === OBECNÝ BOX (BEZ POZADÍ!) === */
.box {
  padding: 20px;
  margin: 20px auto;
  max-width: 900px;
}

/* === TEXTOVÝ BOX (JEN KDE CHCEŠ!) === */
.text-box {
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
}

/* obrázky na střed */
.box img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 10px;
}

/* === FACEBOOK === */
.fb-box {
  text-align: center;
  margin: 40px 0;
}

.fb-icon {
  width: 100px;
}

.fb-box p {
  margin-top: 10px;
}

/* === GALERIE === */
.galerie {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 300px;
  background: rgba(255,255,255,0.9);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

/* === KONTAKT === */
.kontakt-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.kontakt {
  width: 300px;
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 10px;
}

.footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}