body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #222;
}

/* === HERO sekce s logem === */
.hero {
  position: relative;
  text-align: center;
  height: 250px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-logo-top {
  position: absolute;
  top: 15px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  backdrop-filter: blur(3px);
}

.hero-logo-top img {
  max-height: 90px;
  height: auto;
  width: auto;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.2));
}

/* === MENU === */
.main-menu {
  background: #2e9c44;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center; /* zarovnání na střed */
}

.main-menu ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 5px;
}

.main-menu li {
  flex: 0 0 auto;
}

.main-menu a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.main-menu a:hover {
  background: #217a33;
}

/* === HLAVNÍ OBSAH === */
.main-content {
  max-width: 960px;
  margin: 60px auto 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

.main-content h1 {
  text-align: center;
  color: #2e9c44;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.main-content p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.main-content ul {
  list-style: disc inside;
  padding-left: 20px;
  font-size: 1em;
  line-height: 1.6;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  background: #2e9c44;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #217a33;
}

/* === KONTAKT FORMULÁŘ === */
.contact-section {
  padding: 50px 20px;
  background: #fff;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-wrapper h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8em;
  color: #2e9c44;
}

.contact-wrapper p {
  text-align: center;
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  background-color: #2e9c44;
  color: #fff;
  padding: 14px;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #217a33;
}

/* === PATIČKA === */
footer {
  text-align: center;
  color: #888;
  font-size: 0.9em;
  padding: 30px 0 10px 0;
}

.note {
  color: #888;
  font-size: 0.9em;
}

/* === RESPONSIVITA === */
@media (max-width: 768px) {
  .hero {
    height: 220px;
  }

  .hero-logo-top img {
    max-height: 70px;
  }

  .contact-wrapper {
    padding: 20px;
    margin: 20px;
  }
}
