
/* ZÁKLADNÍ STYLY */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

header {
  background: #0066cc;
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
  flex-shrink: 1;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.phone-number {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.phone-number a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-number a:hover {
  text-decoration: underline;
}

.email-contact {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin-left: 20px;
}

.email-contact a {
  color: #fff;
  text-decoration: none;
}

.email-contact a:hover {
  text-decoration: underline;
}

.intro {
  text-align: center;
  padding: 60px 20px 30px;
  background: #0066cc;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin: 30px 0 15px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 30px;
}

.btn-cta {
  display: inline-block;
  background: #1e7c31; /* tmavší zelená pro lepší kontrast */
  color: #ffffff;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 17px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  box-shadow: none;
}

.btn-cta:hover {
  background: #186a29; /* tmavší odstín při hoveru */
  transform: scale(1.04);
}


.services {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 24px;
  width: 280px;
  text-decoration: none;
  color: #000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.service-card img {
  width: 180px;
  height: 180px;
  margin-bottom: 15px;
}

.partners-section {
  text-align: center;
  padding: 40px 20px 30px;
  background: #f0f4f8;
}

.partners-section h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 25px;
}

.logo-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.logo-slider {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: slideLogos 30s linear infinite;
  width: max-content;
}

.logo-slider img {
  height: 60px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.logo-slider img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes slideLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.info-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background: #004c99;
  padding: 10px 20px;
}

.info-nav a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.info-nav a:hover {
  color: #ffcc00;
}

.burger-container {
  display: none;
  text-align: center;
  margin: 20px 0;
}

.burger-toggle {
  font-size: 20px;
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.burger-menu a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  background: #f0f4f8;
  border-radius: 6px;
  transition: background 0.3s;
}

.burger-menu a:hover {
  background: #d0e2f5;
}

/* RESPONSIVITA */
@media (max-width: 1024px) {
  .burger-container { display: flex; flex-direction: column; align-items: center; }
  .info-nav { display: none; }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .logo-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: 100%;
  }

  .email-contact {
    margin-left: 0;
    order: 2;
  }

  .phone-number {
    order: 1;
  }

  .intro {
    padding: 50px 15px 30px;
  }

  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .btn-cta { width: 100%; max-width: 280px; }
  .logo-slider-wrapper { overflow-x: auto; }
  .logo-slider { animation: none; flex-wrap: nowrap; }
  .logo-slider img { flex: 0 0 auto; }
}

@media (min-width: 1600px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.5rem; }
  .btn-cta { font-size: 18px; padding: 16px 36px; }
}





fieldset {
  border: none;
  margin-bottom: 20px;
}

legend {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

label {
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="file"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 15px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
}

.info-text {
  margin-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  background: #f0f4f8;
  padding: 10px;
  border-left: 4px solid #0074d9;
  border-radius: 4px;
}

.submit-btn {
  background-color: #2274A5;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

.submit-btn:hover {
  background-color: #1b5d85;
}

.row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.row-2 .half {
  flex: 0 0 47.5%;
}

@media (max-width: 768px) {
  .row-2 {
    flex-direction: column;
    gap: 10px;
  }

  .row-2 .half {
    flex: 1 1 100%;
  }
}



.benefit ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  text-align: left;
}

.benefit ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}
  .vyhody h2 {
  text-align: center;
}
.reference h2 {
  text-align: center;
}
.cta-centered {
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial {
  background: white;
  padding: 20px;
  border-left: 5px solid #28a745;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 6px;
}
#cookieConsent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 2px solid #0074d9;
  padding: 25px 30px;
  z-index: 99999;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 8px;
  max-width: 90%;
  width: 380px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

#cookieConsent button {
  margin-top: 15px;
  background-color: #28a745;
  border: none;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#cookieConsent button:hover {
  background-color: #218838;
}
/* ↓ SEM vlož nový focus styl */
:focus-visible {
  outline: 3px solid #28a745;
  outline-offset: 3px;
  border-radius: 4px;
}

