 body {
      font-family: Arial, sans-serif;
      background: #f0f0f0;
      margin: 0;
      padding: 20px;
    }

    .balicky {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      max-width: 900px;
      margin: auto;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .balicky h2 {
      color: #2e7d32;
      text-align: center;
      margin-bottom: 15px;
    }

    .balicky p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
      text-align: justify;
    }

    .gallery {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .gallery img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 6px;
      border: 1px solid #ccc;
    }

    .balicky ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .balicky li {
      background: #e8f5e9;
      padding: 10px;
      border-left: 5px solid #2e7d32;
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .btn-vice {
      display: inline-block;
      padding: 12px 24px;
      background-color: #2e7d32;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
    }

    .btn-vice:hover {
      background-color: #1b5e20;
    }

    .button-wrapper {
      text-align: center;
      margin-top: 25px;
    }

    @media (max-width: 600px) {
      .gallery img {
        width: 50px;
        height: 50px;
      }

      .balicky {
        padding: 15px;
      }
    }
.sluzby {
  background-color: #f2f2f2;
  padding: 4em 2em;
  text-align: center;
}

.sluzby-obsah {
  max-width: 1200px;
  margin: auto;
}

.karty {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}

.karta {
  background: white;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 250px;
}

.karta img {
  max-width: 64px;
  margin-bottom: 1em;
}

.karta h3 {
  margin-top: 0;
  color: #1E3A5F;
}
/* === UNIVERZÁLNÍ RESET A FIX SCROLLU === */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

/* === HLAVIČKA === */
.hlavicka {
  width: 100%;
 /* background-color: #1E3A5F;*/
  color: white;
  position: flex-end;
  z-index: 1000;
/*background: linear-gradient(to right, #dcecf6, #f6f6f6);*/
background: linear-gradient(135deg, #fceabb, #f8b500);
}

.hlavicka-obsah {
  max-width: 1200px;
  margin: auto;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu {
  display: flex;
  gap: 1em;
}

.menu a {
  color: #FF9800;
  text-decoration: none;
  font-weight: bold;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: #FF9800;
}

/* === PATIČKA === */
.paticka {
  width: 100%;
  background-color: #1E3A5F;
  color: white;
  text-align: center;
}

.paticka-obsah {
  max-width: 1200px;
  margin: auto;
  padding: 1.5em 2em;
}

/* === RESPONZIVITA === */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #1E3A5F;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1em;
  }

  .menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hlavicka-obsah {
    flex-direction: row;
  }
}














/*/*.paticka {*/
/*    background-color: #1E3A5F;*/
/*    color: white;*/
/*    padding: 2em 1em;*/
/*    text-align: center;*/
/*    font-size: 0.9em;*/
/*}*/
/**/
/*.footer-container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 1em;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/
/**/
/*.footer-links a {*/
/*    color: #FF9800;*/
/*    margin: 0 0.5em;*/
/*    text-decoration: none;*/
/*}*/
/**/
/*@media (min-width: 768px) {*/
/*    .footer-container {*/
/*        flex-direction: row;*/
/*        justify-content: space-between;*/
/*        max-width: 960px;*/
/*        margin: auto;*/
/*    }*/
/*}*/