    :root {
      --primary: #B1394B;
      --secondary: #ec4899;
      --bg: #ffe6eb;
      --text: #1f2937;
      --light: #f9fafb;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Arial', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fea0b7;
      height: 80px;
      position: sticky;
      top: 0;
      z-index: 10;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
      height: 85%;
      width: fit-content;
      padding: 10px;
    }

    nav ul {
      padding: 20px 40px;
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li a {
      text-decoration: none;
      color: #B1394B;
      font-weight: 600;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: var(--secondary);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding-right: 30px;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: var(--text);
      margin: 4px 0;
      transition: 0.3s;
    }

    /* Hero sekce */
    .herosection {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: start;
      padding: 100px 40px;
      background-color: #fea0b7;
      color: white;
      min-height: 650px;
    }

    .hero-text {
      flex: 1 1 400px;
      max-width: 600px;
      text-align: left;
      padding-left: 5%;
      margin-top: 5%;
    }

    .hero-text h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      line-height: 1.1;
      color: #ffe6eb;
    }

    .hero-text p {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }

    .hero-text a {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffe6eb;
      color: #ff99af;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .hero-text a:hover {
      background-color: #f3f3f3;
    }

    .hero-animation {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .animation-wrapper video {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
    }

    /* Moderní sekce */
    section {
      padding: 100px 40px;
      text-align: center;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary);
    }

    section p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 40px;
      color: #4b5563;
    }

    /* O nás */
    #onas {
      background-color: var(--light);
      border-radius: 20px;
      margin: 60px 20px;
      padding: 80px 20px;
      width: fit-content;
    }
    #onas a{
              display: inline-block;
      padding: 10px 20px;
      background-color: var(--secondary);
      color: white;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s;
    }
    .onas{
        display: flex;
        justify-content: center;
    }

/* Upravený moderní ceník */
#cenik {
  background-color: #fea0b7;
  color: #ffe6eb;
}

#cenik .subtitle {
  font-size: 1.2rem;
  color: #ffe6eb;
  margin-bottom: 10px;
}

#cenik .info {
  color: #ffe6eb;
  font-size: 1rem;
  margin-bottom: 40px;
}

#cenik .info a {
  color: #B1394B;
  text-decoration: none;
  font-weight: 600;
}

#cenik .info a:hover {
  text-decoration: underline;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background-color: var(--light);
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 35px 25px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.price-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.price-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.price-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
}

.price-card .credit {
  display: inline-block;
  background: #fdf2f8;
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
}

#cenik .cta {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 50px;
    background-color: #ffe6eb;
    color: #ff99af;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#cenik .cta:hover {
  background-color: #f3f3f3;
}

@media (max-width: 768px) {
  .pricing {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Footer ===== */
#footer {
  background: #fea0b7; /* hlavní barva */
  padding: 60px 20px 30px;
  color: #ffffff; /* světlejší text pro kontrast */
  font-size: 1rem;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand h3 {
  color: #571C26;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffebf0; /* jemné světlejší zvýraznění */
}

.footer-contact p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.socials {
  margin-top: 10px;
}

.socials a {
  font-size: 1.3rem;
  margin-right: 12px;
  transition: transform 0.3s;
  color: #ffffff;
}

.socials a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
/* Footer logo */
.footer-logo {
  width: 180px; /* uprav dle potřeby */
}


/* Mobilní zobrazení */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .socials a {
    margin: 0 8px;
  }
}



    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 70px;
        right: 40px;
        width: 200px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 10px;
      }

      .onas{
        padding: 5px;
      }
      #onas{
        margin: 20px;
      }
      nav ul.active {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .herosection {
        padding: 0px 15px;
      }

      .hero-animation {
        margin: 30px 0;
      }

      .pricing {
        flex-direction: column;
        align-items: center;
      }
    }