
/* === Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: #DCA763 url("../img/p-bg.jpg") repeat-x;
  color: #000;
  text-align: center;
}

/* Wrapper */
#wrapper {
  width: 900px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
}

/* Hlavička */
header {
  margin-top: 12px;
}
header img {
  display: block;
  width: 900px;
  height: auto;
}

/* Menu */
nav {
  background: url("../img/menu-horni.jpg") repeat-x;
  height: 31px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 31px;
}
nav li {
  margin: 0 20px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
}
nav a:hover {
  color: #FC0;
}

/* Obsah */
main {
  background: url("../img/pozadi-text.jpg") repeat;
  display: flex;
  padding: 10px;
  min-height: 580px;
}

/* Článek (pravý obsah) */
article {
  width: 665px;
  margin-right: 10px;
}
article h1 {
  text-align: center;
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin-bottom: 10px;
  border-bottom: 4px double #F60;
  padding-bottom: 5px;
}
article h2,
article h3 {
  font-size: 16px;
  color: #C30;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin: 10px 5px 5px;
}
article p {
  margin: 5px 10px;
  line-height: 130%;
  text-align: justify;
}
article img {
  margin: 5px;
  border-radius: 2px;
}

/* Boční panel (levý obsah) */
aside {
  width: 210px;
  margin-left: 10px;
}
aside section {
  margin-bottom: 15px;
}
aside h2 {
  font-size: 14px;
  font-weight: bold;
  color: #ff0;
  background: url("../img/BlockHeader.png") repeat-x;
  text-align: center;
  padding: 6px 0;
  font-family: Verdana, Geneva, sans-serif;
}
aside img {
  display: block;
  margin: 5px auto;
  max-width: 100%;
  height: auto;
}

/* Patička */
footer {
  background: url("../img/zapati.jpg") repeat-x;
  height: 153px;
  display: flex;
  align-items: flex-start;
  padding: 10px;
}
footer .stats {
  width: 150px;
  text-align: center;
}
footer .footer-info {
  flex: 1;
  color: #000;
}
footer h3 {
  text-align: center;
  margin: 10px 0 5px;
}
footer ul {
  list-style: none;
  margin: 5px auto;
  padding: 0;
  width: 320px;
  line-height: 180%;
}
footer li {
  text-align: center;
  font-weight: bold;
}
.gallery {
  display: flex;
  justify-content: center;   /* vycentruje obrázky */
  gap: 20px;                 /* mezera mezi nimi */
  margin: 15px 0;
}
.gallery img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
/* === Responzivní úpravy pro mobily === */
@media (max-width: 920px) {
  #wrapper {
    width: 100%;
  }

  header img {
    width: 100%;
    height: auto;
  }

  main {
    flex-direction: column;
    padding: 5px;
  }

  article, aside {
    width: 100%;
    margin: 0;
  }

  .gallery {
    flex-direction: column;
    gap: 10px;
  }
  .gallery img {
    width: 100%;
    height: auto;
  }

  nav ul {
    flex-wrap: wrap;
  }
  nav li {
    margin: 5px 10px;
  }

  footer {
    flex-direction: column;
    height: auto;
    align-items: center;
    text-align: center;
  }
  footer .stats, footer .footer-info, footer .footer-calc {
    width: 100%;
    margin-bottom: 15px;
  }
  .footer-calc input {
    width: 100px;
    margin: 5px;
  }
}
.footer-calc input {
  width: 120px;       /* max. cca 8 číslic */
  padding: 4px;
  font-size: 14px;
  text-align: right;
}
