/* === ZÁKLADNÍ NASTAVENÍ === */
body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

/* === INFO BAR === */
.info-bar {
  background-color: #004080;
  color: #fff;
  font-size: 0.9rem;
}
.info-bar {
  background-color: #f5f5f5; /* světle šedá */
  color: #333;
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
}
.info-bar a {
  color: #333;
  text-decoration: none;
}
.info-bar a:hover {
  text-decoration: underline;
}


/* === STICKY NAVIGACE === */
.navbar.scrolled {
  background-color: #f8f9fa !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.navbar .nav-link {
  font-weight: 500;
}
.navbar .nav-link:hover {
  color: #007bff;
}

/* === SEKCE === */
section {
  padding: 60px 0;
}
section h2 {
  font-weight: 600;
}
section p {
  font-size: 1rem;
}

/* === TLAČÍTKA === */
.btn-warning {
  background-color: #ffc107;
  border: none;
  color: #000;
}
.btn-warning:hover {
  background-color: #e0a800;
}
.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}
.btn-outline-warning:hover {
  background-color: #ffc107;
  color: #000;
}
.btn-outline-success:hover {
  background-color: #28a745;
  color: #fff;

/* === KARTY / BOXY === */
.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.rounded {
  border-radius: 0.5rem;
}
.card-img-top {
  object-fit: cover;
  height: 250px;
}

/* === SCROLL BUTTON === */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #004080;
  color: #fff;
  border-radius: 50%;
  padding: 12px;
  font-size: 20px;
  z-index: 999;
  display: none;
  border: none;
}
#scrollTopBtn:hover {
  background-color: #003060;
}

/* === RECENZE === */
.card-body .fst-italic {
  font-style: italic;
  font-size: 0.95rem;
}

/* === STATISTIKY === */
#statistiky h3 {
  font-size: 2rem;
  margin-top: 0.5rem;
}
#statistiky p {
  font-size: 0.9rem;
}

/* === FOOTER === */
footer {
  font-size: 0.9rem;
}
footer h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
footer ul li a:hover {
  text-decoration: underline;
}

/* === RESPONSIVITA === */
@media (max-width: 768px) {
  .info-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  section h2 {
    font-size: 1.75rem;
  }

  .card-img-top {
    height: auto;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }
}