* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* ZÁKLAD */
body {
  line-height: 1.6;
  color: #222;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
}

/* KONTAJNER */
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* =========================
   HORNÝ PÁS S FOTOGRAFIOU
   ========================= */
.hero {
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
}


.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hero p {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* TLAČIDLO */
.btn {
  display: inline-block;
  background: #f59e0b;
  color: #000;
  padding: 6px 14px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* SEKCIE */
.section {
  padding: 50px 0;
}

.section.light {
  background: #f4f4f4;
}

h2 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 15px;
}

/* ZOZNAM */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 10px;
}

/* PÄTA */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
}
