
/* Webono - Vlastní styly */

:root {
      --orange: #FF6A00;
      --orange-hover: #E65A00;
      --text-dark: #1C1C1C;
      --bg-light: #F5F5F5;
      --bg-dark: #2E2E2E;
      --white: #FFFFFF;
    }
    .bg-orange {
    background-color: #FF6A00 !important;
  }

  .hero-bg {
  background-image: url('../img/back_webono.webp'); /* nebo vlož tvůj obrázek */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
    }

    h1, h2, h3, h4, h5 {
      font-weight: bold;
    }

    .hero-title {
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--text-dark);
    }
    .hero-sub {
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--text-dark);
    }

    .btn-orange {
      background-color: var(--orange);
      color: var(--white);
      border-radius: 8px;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
    }
    .btn-orange:hover {
      background-color: var(--orange-hover);
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 3rem;
    }

    .feature-box {
      border-radius: 20px;
      padding: 2rem;
      background-color: var(--white);
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      text-align: center;
    }

    .feature-box i {
      font-size: 2.5rem;
      color: var(--orange);
      margin-bottom: 1rem;
    }

    .availability-banner {
      background-color: #d4edda;
      color: #155724;
      font-weight: 500;
      padding: 0.75rem;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1050;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .contact-box {
      background-color: var(--white);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      border: 1px solid #eee;
    }

    .contact-box i {
      font-size: 1.5rem;
      color: var(--orange);
      margin-right: 10px;
    }

    .carousel-inner .container {
      padding: 100px 0;
      text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }

    .price-card {
      background-color: var(--white);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.07);
      border: 1px solid #eee;
    }

    .price-card h4 {
      color: var(--orange);
      font-size: 1.6rem;
      margin-bottom: 1rem;
    }

    .price-card ul {
      list-style: none;
      padding-left: 0;
      text-align: left;
    }

    .price-card ul li::before {
      content: '✔';
      color: var(--orange);
      margin-right: 8px;
    }

    .price-card .price {
      font-size: 2rem;
      font-weight: bold;
      color: var(--text-dark);
      margin-top: 1rem;
    }

    .tech-icon {
      font-size: 2rem;
      color: var(--orange);
      margin: 0.5rem;
    }

    .tech-desc {
      font-size: 1rem;
      color: #444;
      margin-top: 0.5rem;
    }

    footer {
      background-color: #f1f1f1;
      padding: 2rem 0;
      text-align: center;
      font-size: 0.9rem;
      color: #777;
    }
    .text-orange {
    color: #FF6A00 !important;
  }

  .btn-light:hover {
    background-color: #f0f0f0;
  }
  #faq .accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  #faq .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1C1C1C;
    background-color: #F5F5F5;
    border-radius: 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  #faq .accordion-button:focus {
    box-shadow: none;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: #FF6A00;
    color: #fff;
  }

  #faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1); /* šipka bílá */
  }

  #faq .accordion-collapse {
    background-color: #fff;
  }

  #faq .accordion-body {
    padding: 1rem 1.25rem;
    color: #2E2E2E;
  }
  .bi-list {
  cursor: pointer;
  color: #FF6A00;
}
.alert {
  padding: 15px;
  border-radius: 8px;
}
.alert-success {
  background-color: #dff0d8;
  color: #3c763d;
}
.alert-danger {
  background-color: #f2dede;
  color: #a94442;
}
@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: 80px !important;
  }
}
  @media (max-width: 991.98px) {
  #mainNavbar {
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #mainNavbar .btn {
    width: 100%;
  }
}
section[id] {
  scroll-margin-top: 100px !important; /* uprav podle výšky tvého headeru */
}

