body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      color: #333;
    }
    header {
      background: #f8f8f8;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.left-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
}

/* sociální ikony vedle loga */
.social-icons {
  display: flex;
  gap: 12px;
  margin-left: 15px;
}

.social-icons a {
  color: #fff;             /* bílé ikony */
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
   text-shadow: 0px 1px 3px rgba(0,0,0,0.8);
}

.social-icons a:hover {
  color: #5170ff;          /* zvýraznění na hover */
}
    nav a {
      text-decoration: none;
      color: white;
      font-weight: bold;
      transition: color 0.2s;
    }
    nav a:hover { color: #e91e63; }

    #hero {
  height: 100vh; /* plná výška obrazovky */
  background-image: url('hero.jpg'); /* nahraď názvem tvého obrázku */
  background-size: cover;   /* přizpůsobí obrázek celé ploše */
  background-position: center; /* vystředění */
  background-attachment: fixed; /* parallax efekt (nepovinné) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; /* text bude čitelný */
  position: relative;
}
    #hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* tmavý overlay pro čitelnost textu */
}

.hero-content {
  position: relative;
  z-index: 1; /* aby byl text nad overlayem */
}

.hero-content h1 {
  font-size: 15rem;
  margin-bottom: 10px;
  color: white;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.hero-content h2 {
  text-shadow: 0 0 16px #ff7bcc, 0 0 8px #fff;
  color: #fff;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
    .hero .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      border-radius: 30px;
      background: #ff7bcc;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }
    .hero .btn:hover { background: #ff7bcc; }
    section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
    }
    h1, h2, h3 {
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    color: #5170ff;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    }
    .services, .team {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap: 20px;
    }
    .service, .member {
      background: #fff;
      border: 1px solid #eee;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
    }
    footer {
      background: #f8f8f8;
      padding: 20px;
      text-align: center;
    }
    footer p {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin: 12px 0;
    }
    form input, form textarea, form button {
      width: 100%;
      margin: 8px 0;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    form button {
      background: #ff7bcc;
      color: #fff;
      border: none;
      cursor: pointer;
    }
    form button:hover { background: #ff7bcc; }

    .logo img {
    width: 60px;         /* velikost loga, uprav podle potřeby */
    height: 60px;
    border-radius: 50%;  /* udělá z něj kruh */
    object-fit: cover;   /* zachová poměr stran */
    margin-top: 20px;
    margin-left: 20px;
    }
    nav {
  display: flex;
  justify-content: space-between; /* logo vlevo, menu vpravo */
  align-items: center;            /* zarovnání na střed svisle */
  padding: 10px 20px;
}
.menu {
  list-style: none;
  display: flex;              /* položky vedle sebe */
  gap: 20px;                  /* mezery mezi nimi */
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #ff7bcc; /* pink for visibility */
  cursor: pointer;
  background: none;
  border: none;
  margin-left: 10px;
}

.menu li a:hover {
  color: #ff7bcc; /* zvýraznění po přejetí myší */
}
.team .member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

#pricing-list {
  max-width: 700px;
  margin: auto;
  padding: 40px 20px;
}

#pricing-list h2 {
  text-align: center;
  margin-bottom: 30px;
}

#pricing-list h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #5170ff;
  font-size: 1.3rem;
  border-left: 4px solid #5170ff;
  padding-left: 8px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 6px 0;
}

.price-item span:first-child {
  font-weight: 500;
}

.price-item span:last-child {
  color: #5170ff;
  font-weight: bold;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .left-group {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: auto;
  }
  .menu {
    display: none;
  }
  .menu.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    background: rgba(0,0,0,0.97);
    border-radius: 0 0 12px 12px;
    padding: 24px 0 24px 0;
    z-index: 2000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    align-items: center;
  }
  .menu li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  .menu li a {
    color: #fff;
    font-size: 1.2rem;
    padding: 12px 0;
    display: block;
    width: 100%;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .menu li a:hover {
    background: #ff7bcc;
    color: #fff;
  }
  .menu-toggle {
    display: block;
    font-size: 2rem;
    color: #ff7bcc;
    cursor: pointer;
    background: none;
    border: none;
    margin-left: 10px;
    z-index: 2100;
    position: relative;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

#hours p {
  text-align: center;
}

.btn .pricing-list {
  justify-content: center;
  align-items: center;
  margin: 30px auto;
   display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      border-radius: 30px;
      background: #5170ff;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
}

#pricing-list .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  padding: 12px 24px;
  border-radius: 30px;
  background: #5170ff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(81,112,255,0.07);
}

.pricing-table th, .pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.pricing-table th {
  background: #5170ff;
  color: #fff;
  font-size: 1.1rem;
}

.pricing-table h3 {
  margin: 18px 0 8px 0;
  font-size: 1rem;
  color: #e91e63;
  text-align: left;
}

#team img[alt="teamvlasy"] {
  display: block;
  width: 80vw;
  max-width: 100%;
  min-width: 120px;
  margin: 0 auto 24px auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(81,112,255,0.10);
  height: auto;
  object-fit: cover;
}

#pricing-list img[alt="paymethods"] {
  display: block;
  width: 80vw;
  max-width: 400px;
  min-width: 120px;
  margin: 24px auto 12px auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(81,112,255,0.10);
  height: auto;
}

@media (max-width: 600px) {
  #team img[alt="teamvlasy"] {
    width: 80vw;
    max-width: 98vw;
    min-width: 120px;
  }
  #pricing-list img[alt="paymethods"] {
    width: 90vw;
    max-width: 98vw;
    min-width: 80px;
  }
}

#platba {
  text-align: center;
}