/* RESET A ZÁKLADY */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: white;
  height: 100%;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}


main {
  flex-grow: 1; /* aby hlavní obsah zabral dostupnou výšku */
}

h1 {
    color: #187090;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HLAVIČKA */
header {
    background: linear-gradient(315deg, #187090, #05141b);
    color: white;
    padding: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  

  .header-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 70px;
    flex-shrink: 0;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 10px;
  }
  
  .logo {
    max-height: 70px; /* místo fixní výšky 90px */
    height: auto;
    width: auto;
    display: block;
    padding: 0;       /* odstraní vnitřní mezery */
    margin: 0;        /* odstraní vnější mezery */
    object-fit: contain;
  }

  .header-logo img,
.footer-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
  
  
  .logo-text .logo-subtext {
    font-size: 0.9rem;
    color: white;
    opacity: 0.85;
    font-weight: 400;
    white-space: nowrap;
  }
  
  /* zbytek hlavičky – nav + telefon */
  .header-content {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px; /* mezera mezi menu a telefonem */
    padding: 0 30px;
  }

  .cta-nav {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .cta-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #aad8f0;
    transform: translateY(-1px); /* přidáno */
  }
  
  
  #main-nav {
    display: flex;
  }
  
  #nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
  
  #nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.4px;
    padding: 8px 12px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
  }
  
  #nav-links a,
.cta-nav {
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
  
  #nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #aad8f0;
    transition: width 0.3s ease;
  }
  
  #nav-links a:hover::after {
    width: 100%;
  }
  
  
  #nav-links a:hover {
    color: #aad8f0;
    background-color: rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px); /* přidáno */
  }

  #nav-links a:first-child {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  #nav-links a:first-child:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #aad8f0;
    border-color: #aad8f0;
      transform: translateY(-1px); /* ← to chybělo */
  }
  
  
  
  
  .contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .contact-info a:hover {
    color: #aad8f0;
    transform: translateY(-1px);
  }
  
  
  

  
  .contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .contact-info a:hover {
    color: #aad8f0; /* nebo white, pokud chceš jemnější efekt */
    transform: translateY(-1px);
  }
  
  

/* ÚVOD */
.homepage_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
  background-color: white;
}

.homepage_text {
  flex: 1 1 55%;
  padding-left: 40px; /* <-- přidá levé odsazení */
}

.homepage_text h2 {
  color: #187090;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.homepage_text p {
  margin-top: 20px;  
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.homepage_logo {
  flex: 1 1 40%;
  border-radius: 8px;
}

/* PATIČKA */
.site-footer {
  background: linear-gradient(315deg, #187090, #05141b);
  color: white;
  padding: 50px 40px 10px;
  width: 100%;
  display: block;
}

footer.site-footer {
  margin-top: auto;
}

.site-footer h4 {
  color: #FFFFFF; 
}

.footer-column {
  flex: 1;
  min-width: 200px;
}



.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: -100px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column h4 {
  color: #187090;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #f0f0f0;
}

.footer-logo {
  width: auto;          
  max-width: 140px;     
  height: auto;
  display: block;
  margin: 0 0 20px 0;     
}

.footer-column:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;  
  padding-left: 16px;          
  margin-left: 0;
}

.contact-list {
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: left;
  margin-top: 30px;
  padding: 10px 0;
  font-size: 0.9rem;
  border-top: 1px solid white;
  color: white;
  width: 100vw;
  margin-left: calc(-1 * ((100vw - 100%) / 2)); /* vyrovná centrování obsahu */
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
}
/* SEKCE OBRÁZKŮ */
.image-section {
    margin: 60px auto;
    padding: 40px 30px;
    max-width: 1200px;
    background-color: white;
    border: 3px solid #187090;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .image-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .image-wrapper.left {
    align-items: flex-start;
  }
  
  .image-wrapper.right {
    align-items: flex-end;
  }
  
  .image-wrapper img {
    max-width: 600px;
    max-height: 360px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .image-wrapper img:hover {
    transform: scale(1.02);
  }
  
  .image-section-wrapper {
    background: linear-gradient(135deg, #187090, #05141b);
    padding: 60px 20px;
  }
  
  .image-section-grid {
    background: #ffffff;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.03);
  }
  
  .product-description.section-padding {
    position: relative;
    padding-bottom: 60px; /* přidá spodní prostor pro podtržení */
    padding-top: 40px;
  }


  .product-description.section-padding::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px; /* výška podtržení */
    width: 100%;
    background: linear-gradient(135deg, #187090, #05141b);
    border-radius: 3px;
  }
  
  .product-description h2 {
    font-size: 2rem;
    color: #187090;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
  }

  
  
  .product-description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .product-description p strong {
    color: #000;
  }
  
  .product-description ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  
  .product-description ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: #333;
  }
  
  .product-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #187090;
    font-weight: bold;
  }
  
  

  
  .image-card {
    gap: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .image-card img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .image-card img:hover {
    transform: scale(1.02);
  }
  
  .img-caption {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #333;
    padding: 10px 14px;
    border-left: 4px solid #187090;
    border-radius: 6px;
    max-width: 90%;

    transition: transform 0.3s ease, background-color 0.3s ease;
  }
    
  .image-card img:hover + .img-caption {
    transform: translateY(-4px);
    background-color: #e7f2fb;
  }

  .cta-box {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .cta-button.big-button {
    background-color: #187090;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 12px rgba(24, 112, 144, 0.25);
  }
  
  .cta-button.big-button:hover,
  .cta-button.big-button:focus {
    background-color: #12587a;
    transform: translateY(-2px);
  }
  
/* Ceník */

.pricing-background {
  background: linear-gradient(135deg, #187090, #05141b);
  padding: 60px 20px;
  margin: 60px 0;
}

.pricing-section {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-box {
  background-color: #ffffff;
  border: 2px solid #187090;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.pricing-box:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.pricing-box h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #187090;
  text-align: center;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.pricing-list li span {
  font-weight: 600;
  color: #333;
  margin-right: 12px;
}
  
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background-color: #187090;
  padding: 1rem;
  gap: 1rem;
}

.mobile-nav.nav-active {
  display: flex;
}  

/* RESPONSIVITA */
/* RESPONSIVITA */
@media (max-width: 1024px) {
    .image-wrapper img {
      max-width: 100%;
      max-height: 320px;
    }
  
    .img-caption {
      max-width: 100%;
    }
  
    .image-wrapper.left,
    .image-wrapper.right {
      align-items: center;
    }
  
    .img-caption {
      text-align: center;
      border-left: none;
      border-top: 3px solid #187090;
    }
  }

@media (max-width: 768px) {
  #nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #187090;
    padding: 10px 0;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger-button {
    display: block;
    margin-top: 10px;
  }



  #nav-links.show {
    display: flex;
  }

  .hamburger-button {
    display: block;
  }

  .homepage_top {
    flex-direction: column;
    text-align: center;
  }

  .homepage_text {
    padding: 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }

  .image-section {
    padding-inline: 20px;
  }

  .image-row {
    justify-content: center !important;
    margin-bottom: 40px;
  }

  .image-row img {
    max-height: 330px;  /* úměrně zmenšeno */
    max-width: 100%;
  }

  .image-row.right {
    transform: none;
  }
}



@media (max-width: 480px) {
  .branding h1 {
    font-size: 1.3rem;
  }

  .homepage_text h2 {
    font-size: 1.3rem;
  }

  .footer-column h4 {
    font-size: 1rem;
  }
  .image-row img {
    max-height: 270px;  /* mobilní rozměr */
  }
}


@media (max-width: 768px) {
  .pricing-box {
    padding: 30px 20px;
  }

  .pricing-box h2 {
    font-size: 1.5rem;
  }

  .pricing-list {
    font-size: 1rem;
  }

  .pricing-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-list li span {
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .pricing-box {
    padding: 25px 16px;
  }

  .pricing-box h2 {
    font-size: 1.3rem;
  }

  .pricing-list {
    font-size: 0.95rem;
  }
}

/* RESPONSIVITA */
@media (max-width: 992px) {
    .image-wrapper.right {
      transform: none;
      align-items: center;
    }
  
    .image-wrapper.left {
      align-items: center;
    }
  
    .img-caption {
      text-align: center;
      border-left: none;
      border-top: 3px solid #187090;
    }
  }
  

  @media (max-width: 600px) {
    .image-section {
      padding: 30px 20px;
      gap: 30px;
    }
  
    .image-wrapper img {
      max-height: 250px;
    }
  
    .img-caption {
      font-size: 0.9rem;
    }
  }


  /* ====================
   Formulář
==================== */

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.form-intro h2 {
  font-size: 1.6rem;
  color: #187090;
  margin-bottom: 10px;
}

.form-intro p {
  font-size: 1.05rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}



.form-wrapper-outside {
  width: 100%;
  background: #ffffff;
  padding: 3rem 0;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  color: black;
}

.form-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

form {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 40%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

label {
  color: black;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.1px;
  display: block;
}

label span {
  color: #187090;
  font-weight: bold;
  margin-left: 4px;
}

.input-wrapper {
  width: 100%;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid black;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  font-family: inherit;
  color: black;
  box-sizing: border-box;
  transition: border-color 250ms ease-in-out, box-shadow 250ms ease-in-out;
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #187090;
  box-shadow: 0 0 0 2px rgba(24, 112, 144, 0.2);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #666;
  opacity: 1;
}

#note {
  min-height: 150px;
  resize: vertical;
  line-height: 1.5;
}

button[type="submit"] {
  align-self: center;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background-color: #187090;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 250ms ease-in-out, transform 150ms ease;
  margin-top: 1rem;
  outline: none;
}

button[type="submit"]:hover,
button[type="submit"]:focus {
  background-color: #12587a;
  transform: translateY(-1px);
}

button[type="submit"]:active {
  background-color: #0d425c;
  transform: translateY(0px);
}

@media (max-width: 768px) {
  form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 1.8rem;
  }

  .form-group {
    flex-basis: 100%;
  }

  button[type="submit"] {
    width: 100%;
    padding: 1rem;
  }
}

#form-status {
  font-size: 1rem;
  text-align: center;
  margin-top: 1.5rem;
  color: black;
  padding: 0 1rem;
}


.thank-you-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; /* pro mobilní zobrazení */
}

/* Ikona: ✓ nebo <i class="fas fa-check"> nebo svg */
.icon_thank_you_page {
  background-color: #187090 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: pop-in 0.4s ease-out;
  flex-shrink: 0;
}

/* Explicitní styly pro případ Font Awesome ikony */
.icon_thank_you_page i.fas,
.icon_thank_you_page i.fa {
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

/* Pro SVG fallback */
.icon_thank_you_page svg {
  width: 60%;
  height: 60%;
  fill: currentColor;
}

@keyframes pop-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.message {
  font-size: 1.25rem;
  color: #000;
  flex: 1 1 auto;
}



@media (max-width: 768px) {
  header {
    padding: 20px 0;
  }
  .logo {
    max-height: 50px;
  }
}


@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}


/* ====================
   hamburger
==================== */

/* Výchozí stav: skryté na desktopu */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Mobilní zobrazení */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 1100;
  }

  .header-content {
    display: none;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(315deg, #187090, #05141b);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .header-content.active {
    display: flex;
  }

  #nav-links {
    all: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px; /* <<< přidáno odsazení dolů */
    padding: 0;
    list-style: none;
    width: 100%;
  }
  

  #nav-links li {
    width: auto;
  }

  #nav-links a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    background: none;
    border: none;
    transition: color 0.3s ease;
  }

  #nav-links a:hover {
    color: #aad8f0;
  }

  .contact-info {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .contact-info a {
    color: white !important;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .image-section-grid {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    gap: 30px;
  }

  .image-card {
    gap: 20px;
  }

  .image-card img {
    max-height: 240px;
    object-fit: cover;
  }

  .img-caption {
    font-size: 1rem;
    padding: 10px;
    border-left: none;
    border-top: 3px solid #187090;
    text-align: center;
    max-width: 100%;
  }

  .cta-box {
    justify-content: center;
    margin-top: 0;
  }

  .cta-button.big-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
}

@media (max-width: 850px) {
  .image-section-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px;
    gap: 40px;
  }

  .image-card {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-card img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }

  .img-caption {
    font-size: 1rem;
    padding: 12px 16px;
    text-align: center;
    border-left: none;
    border-top: 3px solid #187090;
    background-color: #f1f9fc;
    border-radius: 8px;
    width: 100%;
  }

  .cta-box {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-button.big-button {
    width: 90%;
    max-width: 320px;
    padding: 1rem;
    font-size: 1.1rem;
    justify-content: center;
    text-align: center;
  }
}



@media (max-width: 768px) {
  .footer-column:first-child {
    justify-content: flex-start;
    padding-left: 16px;
  }

  .footer-logo {
    max-width: 120px;
    margin: 0 0 20px 0;
  }
}



/* ====================
   dekujeme_za_odeslani_formulare
==================== */


.thank-you-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon_thank_you_page {
  background: #64ac39;
  color: white;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: pop-in 0.4s ease-out;
}

@keyframes pop-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.message {
  font-size: 1.25rem;
  color: #000;
}




/*
 * ===============================================
 * Styly pro stránku Obchodní podmínky
 * ===============================================
 */

/* Hlavní kontejner pro obsah stránky */
.main-content {
  background-color: #f8f9fa; /* Lehce šedé pozadí pro oddělení obsahu */
  padding: 60px 0;
  font-family: 'DM Sans', sans-serif;
  color: #333;
}

/* Kontejner s textem podmínek */
.terms-container {
  max-width: 800px; /* Ideální šířka pro čtení textu */
  margin: 0 auto;
  background-color: #ffffff; /* Bílý podklad pro text */
  padding: 40px;
  border-radius: 8px; /* Zaoblené rohy */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); /* Jemný stín */
}

/* Hlavní nadpis H1 */
.terms-container h1 {
  font-size: 2.5rem; /* Větší velikost písma */
  font-weight: 700;
  color: #2c3e50; /* Tmavě modro-šedá */
  margin-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
}

/* Podnadpis s informacemi o provozovateli */
.operator-info {
  font-size: 1rem;
  font-style: italic;
  color: #7f8c8d; /* Šedá barva */
  margin-bottom: 40px;
}

/* Jednotlivé sekce */
.terms-container section {
  margin-bottom: 30px;
}

/* Nadpisy sekcí H2 */
.terms-container h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #34495e; /* Mírně světlejší než H1 */
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eaeaea;
}

/* Odstavce textu */
.terms-container p {
  font-size: 1rem;
  line-height: 1.7; /* Zvětšené řádkování pro lepší čitelnost */
  color: #555;
  margin-bottom: 15px;
}

/* Stylovaný seznam s odrážkami */
.styled-list {
  list-style: none; /* Odstranění výchozích odrážek */
  padding-left: 0;
}

.styled-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  padding-left: 25px; /* Odsazení pro vlastní odrážku */
  position: relative;
  margin-bottom: 10px;
}

/* Vlastní odrážka ve tvaru šipky/fajfky */
.styled-list li::before {
  content: '\f058'; /* Font Awesome ikona "check-circle" (solid) */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: #27ae60; /* Zelená barva */
  font-size: 16px;
}

/* Zvýraznění textu, např. data */
.highlight {
  font-weight: 700;
  color: #e74c3c; /* Výrazná červená barva */
}

/*
 * ===============================================
 * Responzivita pro Obchodní podmínky
 * ===============================================
 */

@media (max-width: 768px) {
  .main-content {
    padding: 40px 0;
  }

  .terms-container {
    padding: 30px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .terms-container h1 {
    font-size: 2rem; /* Zmenšení nadpisu na mobilu */
  }

  .terms-container h2 {
    font-size: 1.5rem; /* Zmenšení nadpisu sekce */
  }

  .terms-container p, .styled-list li {
    font-size: 0.95rem; /* Mírné zmenšení textu */
  }
}

@media (max-width: 480px) {
  .terms-container {
    padding: 20px;
  }

  .terms-container h1 {
    font-size: 1.8rem;
  }

  .terms-container h2 {
    font-size: 1.3rem;
  }
}



/*
 * ===============================================
 * Styl pro text souhlasu ve formuláři (GDPR)
 * ===============================================
 */

 .gdpr-consent {
  font-size: 0.85em;      /* Mírně menší písmo */
  color: #666;             /* Šedá barva pro menší důraz */
  text-align: center;     /* Zarovnání na střed */
  margin: 15px 0 20px 0;  /* Odsazení od posledního pole a tlačítka */
  line-height: 1.5;       /* Lepší čitelnost */
}

.gdpr-consent a {
  color: #333;             /* Barva odkazu, aby ladila se zbytkem */
  text-decoration: underline; /* Podtržení pro jasné označení odkazu */
}

.gdpr-consent a:hover {
  text-decoration: none; /* Odstranění podtržení při najetí myší */
}