
/* Základní styl pro web – style.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #000;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.sekce-popis {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #666;
}

.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.galerie img {
  width: 100%;
  border: 5px solid white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.galerie img:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background-color: #f2f2f2;
  color: #888;
  border-top: 1px solid #ddd;
}

.kontakt a {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}
